.baltrak-slot-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.baltrak-slot-modal.active {
    opacity: 1;
    visibility: visible;
}

.baltrak-modal-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
}

.baltrak-modal-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.baltrak-modal-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #212529;
    font-size: 1.5rem;
}

.baltrak-modal-image {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
}

.baltrak-modal-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
}

.baltrak-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #730404;
    text-decoration: none;
    line-height: 1;
    z-index: 10;
    cursor: pointer;
    transition: color 0.3s ease;
}

.baltrak-modal-close:hover {
    color: #8b0505;
}

/* Baltrak Modal Navigation Buttons */
.baltrak-modal-nav-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: space-between;
}

.baltrak-nav-btn {
    flex: 1;
    padding: 12px 20px;
    background: #730404;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.baltrak-nav-btn:hover {
    background: #8b0505;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(115, 4, 4, 0.3);
}

.baltrak-nav-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.baltrak-nav-btn i {
    font-size: 0.9rem;
}


/* Route Info İyileştirmeleri */
.route-info {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.route-points {
    position: relative;
    padding: 20px 0;
}

.route-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 30px;
}

.route-point:last-child {
    padding-bottom: 0;
}

.point-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #730404;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(115, 4, 4, 0.3);
    position: relative;
    z-index: 2;
}

.route-point.start .point-marker {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.route-point.end .point-marker {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.point-details {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.point-details h5 {
    margin: 0 0 8px 0;
    color: #730404;
    font-size: 1.1rem;
    font-weight: 600;
}

.point-details p {
    margin: 0 0 8px 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.point-details .time {
    display: inline-block;
    padding: 4px 12px;
    background: #730404;
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
}


/* Event Highlights İyileştirmeleri */
.event-highlights {
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #730404;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    font-size: 2rem;
    color: #730404;
    margin-top: 5px;
}

.highlight-item h5 {
    margin: 0 0 5px 0;
    color: #730404;
    font-size: 1.3rem;
    font-weight: 700;
}

.highlight-item p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Event Rules İyileştirmeleri */
.event-rules {
    margin: 40px 0;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #730404;
}

.rules-list {
    margin-top: 20px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #730404;
    transition: all 0.2s ease;
}

.rule-item:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.rule-item i {
    color: #730404;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.rule-item span {
    color: #495057;
    line-height: 1.6;
}

/* Event Summary Card İyileştirmeleri */
.event-summary-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    border-top: 4px solid #730404;
}

.event-summary-card h4 {
    color: #730404;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
    color: #730404;
    font-size: 1.2rem;
}

.summary-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.summary-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 3px;
}

.summary-value {
    font-size: 1rem;
    color: #212529;
    font-weight: 600;
}

.progress-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #495057;
    font-weight: 600;
}

.progress-bar {
    height: 10px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #730404 0%, #8b0505 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Organizer Card İyileştirmeleri */
.organizer-card-new {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #730404;
}

.organizer-card-new h4 {
    color: #730404;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.organizer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.organizer-profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #730404;
}

.organizer-details h5 {
    margin: 0 0 5px 0;
    color: #212529;
    font-size: 1.1rem;
    font-weight: 600;
}

.organizer-details p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.discord-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #5865F2;
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

/* Event Galeri Slider Stilleri */
.event-gallery {
    margin: 40px 0;
}

.galeri-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    aspect-ratio: 1920/1080;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    background: #ffffff;
}

.galeri-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.galeri-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.galeri-slide.active {
    opacity: 1;
    z-index: 2;
}

.galeri-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.galeri-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(115, 4, 4, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
}

.galeri-nav:hover {
    background: rgba(115, 4, 4, 1);
    transform: translateY(-50%) scale(1.1);
}

.galeri-prev {
    left: 20px;
}

.galeri-next {
    right: 20px;
}

.galeri-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.galeri-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.galeri-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.galeri-dot.active {
    background: #730404;
    border-color: #730404;
    width: 16px;
    height: 16px;
}