/* Event Schedules Page - Dragon Ball Online Zero - PREMIUM DESIGN */

/* Hero Section - Enhanced */
.schedules-hero {
    position: relative;
    padding: 200px 0 150px;
    background: 
        linear-gradient(135deg, #000000 0%, #0a0e1a 30%, #1a1a2e 70%, #2d1b69 100%),
        radial-gradient(ellipse at top, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    overflow: hidden;
    text-align: center;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.schedules-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 40% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(138, 43, 226, 0.08) 0%, transparent 40%);
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

.schedules-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(255, 215, 0, 0.03) 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(255, 215, 0, 0.03) 100px
        );
    opacity: 0.5;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    animation: heroEntrance 1.5s ease-out;
}

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: 
        linear-gradient(45deg, #ff8c00, #ffd700, #ff8c00),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 100%, 100% 100%;
    color: #000;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 30px;
    text-transform: uppercase;
    box-shadow: 
        0 8px 25px rgba(255, 140, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: badgeGlow 3s ease-in-out infinite alternate, badgeFloat 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShine 2s infinite;
}

@keyframes badgeGlow {
    0% { box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
    100% { box-shadow: 0 12px 35px rgba(255, 140, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes badgeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin: 30px 0;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3),
        2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: titleGlow 4s ease-in-out infinite alternate;
    position: relative;
}

@keyframes titleGlow {
    0% { 
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 0.5),
            0 0 40px rgba(255, 215, 0, 0.3),
            2px 2px 8px rgba(0, 0, 0, 0.8);
    }
    100% { 
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 60px rgba(255, 215, 0, 0.5),
            2px 2px 8px rgba(0, 0, 0, 0.8);
    }
}

.title-part {
    display: inline-block;
    animation: titleFloat 6s ease-in-out infinite;
}

.title-part:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.title-part.highlight {
    background: linear-gradient(45deg, #ffd700, #ff8c00, #ffd700);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleFloat 6s ease-in-out infinite, gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: subtitleFade 2s ease-out 0.5s both;
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.current-time {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.1)),
        rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffd700;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: timeGlow 2s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

.current-time::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: timeShine 3s infinite;
}

@keyframes timeGlow {
    0% { 
        box-shadow: 
            0 8px 25px rgba(255, 215, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    100% { 
        box-shadow: 
            0 12px 35px rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

@keyframes timeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.current-time i {
    font-size: 1.1rem;
}

/* Schedules Section - Enhanced */
.schedules-section {
    padding: 100px 0;
    background: 
        linear-gradient(180deg, #0a0e1a 0%, #000000 50%, #0a0a0a 100%),
        radial-gradient(ellipse at center bottom, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.schedules-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 140, 0, 0.03) 0%, transparent 50%);
    animation: sectionGlow 8s ease-in-out infinite alternate;
}

@keyframes sectionGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Schedules Header - New */
.schedules-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.schedules-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: 
        linear-gradient(45deg, #ff8c00, #ffd700, #ff8c00),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 100%, 100% 100%;
    color: #000;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 25px;
    text-transform: uppercase;
    box-shadow: 
        0 8px 25px rgba(255, 140, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: badgeGlow 3s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

.schedules-header .section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShine 2s infinite;
}

.schedules-header .section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 20px 0;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3),
        2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: titleGlow 4s ease-in-out infinite alternate;
}

.schedules-header .section-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Schedule Grid - Compact Layout */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.schedule-column {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, rgba(255, 215, 0, 0.03), transparent);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.schedule-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), transparent, rgba(255, 140, 0, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.schedule-column:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.6);
}

.schedule-column:hover::before {
    opacity: 1;
}

.column-header {
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1)),
        linear-gradient(45deg, rgba(255, 255, 255, 0.05), transparent);
    padding: 25px 20px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.column-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: headerShine 3s infinite;
}

@keyframes headerShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.column-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: 
        linear-gradient(45deg, #ffd700, #ff8c00, #ffd700),
        linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    background-size: 200% 100%, 100% 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.5);
    animation: iconGlow 3s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

.column-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    animation: iconShine 2s infinite;
}

@keyframes iconGlow {
    0% { 
        box-shadow: 
            0 6px 20px rgba(255, 215, 0, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
    }
    100% { 
        box-shadow: 
            0 8px 25px rgba(255, 215, 0, 0.6),
            inset 0 2px 0 rgba(255, 255, 255, 0.4);
    }
}

@keyframes iconShine {
    0% { opacity: 0; transform: rotate(0deg); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(180deg); }
}

.column-icon i {
    font-size: 1.8rem;
    color: #000;
    z-index: 1;
    position: relative;
    animation: iconPulse 2s ease-in-out infinite;
}

.column-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

/* Events List - Enhanced */
.events-list {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.events-list::-webkit-scrollbar {
    width: 8px;
}

.events-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.events-list::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
}

.events-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff8c00, #ffd700);
}

.event-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    margin-bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        linear-gradient(45deg, rgba(255, 215, 0, 0.03), transparent);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s ease-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Active Event Styling with Animation */
.event-card:has(.event-status.active) {
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.1)),
        linear-gradient(45deg, rgba(255, 255, 255, 0.08), transparent);
    border: 2px solid rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 0 30px rgba(255, 215, 0, 0.05);
    animation: activeEventPulse 2s ease-in-out infinite;
}

@keyframes activeEventPulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(255, 215, 0, 0.3),
            0 0 20px rgba(255, 215, 0, 0.2),
            inset 0 0 30px rgba(255, 215, 0, 0.05);
    }
    50% {
        box-shadow: 
            0 8px 30px rgba(255, 215, 0, 0.4),
            0 0 30px rgba(255, 215, 0, 0.3),
            inset 0 0 40px rgba(255, 215, 0, 0.08);
    }
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.event-card:hover {
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 140, 0, 0.08)),
        linear-gradient(45deg, rgba(255, 255, 255, 0.05), transparent);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(5px) translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.2),
        0 0 15px rgba(255, 215, 0, 0.1);
}

.event-card:hover::before {
    left: 100%;
}

.event-card:last-child {
    margin-bottom: 0;
}

/* PVP/PVE Tags */
.pvp-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff4757, #c44569);
    color: white;
    font-size: 0.75em;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
    animation: pvpGlow 2s ease-in-out infinite alternate;
}

.pve-tag {
    display: inline-block;
    background: linear-gradient(135deg, #3742fa, #2f3542);
    color: white;
    font-size: 0.75em;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(55, 66, 250, 0.4);
    animation: pveGlow 2s ease-in-out infinite alternate;
}

@keyframes pvpGlow {
    0% {
        box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 4px 16px rgba(255, 71, 87, 0.6);
        transform: scale(1.05);
    }
}

@keyframes pveGlow {
    0% {
        box-shadow: 0 2px 8px rgba(55, 66, 250, 0.4);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 4px 16px rgba(55, 66, 250, 0.6);
        transform: scale(1.05);
    }
}

.event-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 215, 0, 0.4);
    position: relative;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Allow LIVE badge to overflow when event is active */
.event-card:has(.event-status.active) .event-icon {
    overflow: visible;
}

.event-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover .event-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 215, 0, 0.7);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Keep LIVE badge stable during hover */
.event-card:hover .event-icon::after {
    transform: scale(0.91) rotate(-5deg);
}

.event-card:hover .event-icon::before {
    opacity: 1;
}

.event-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.event-card:hover .event-icon img {
    transform: scale(1.1);
}

.event-info {
    flex: 1;
    min-width: 0;
}

.event-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.event-card:hover .event-info h4 {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.event-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 8px;
}

.event-time i {
    color: #ffd700;
    font-size: 1rem;
    animation: clockTick 2s ease-in-out infinite;
}

@keyframes clockTick {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.next-time {
    font-weight: 600;
}

.time-value {
    color: #ffffff;
    font-weight: 600;
}

.event-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.event-status.active {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.event-status.active .status-dot {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

/* LIVE Badge for Active Events - positioned on event icon */
.event-card:has(.event-status.active) .event-icon::after {
    content: 'LIVE';
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    font-weight: 800;
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    box-shadow: 
        0 0 15px rgba(0, 255, 136, 0.7),
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(0, 0, 0, 0.3);
    animation: livePulse 1.5s ease-in-out infinite;
    z-index: 20;
    pointer-events: none;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 
            0 0 15px rgba(0, 255, 136, 0.7),
            0 2px 8px rgba(0, 0, 0, 0.4),
            0 0 0 2px rgba(0, 0, 0, 0.3);
    }
    50% {
        opacity: 0.9;
        box-shadow: 
            0 0 25px rgba(0, 255, 136, 1),
            0 2px 12px rgba(0, 0, 0, 0.5),
            0 0 0 2px rgba(0, 255, 136, 0.3);
    }
}

.event-status.upcoming {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.event-status.upcoming .status-dot {
    background: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.2);
    }
}

.status-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.status-time {
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    opacity: 0.9;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Event Modal */
.event-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    backdrop-filter: blur(0px);
    opacity: 0;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}

.event-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease forwards;
}

.event-modal.hide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    animation: modalFadeOut 0.25s ease forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        background: rgba(0, 0, 0, 0);
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
    }
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
    }
    to {
        opacity: 0;
        background: rgba(0, 0, 0, 0);
        backdrop-filter: blur(0px);
    }
}

.modal-content {
    position: relative;
    background: linear-gradient(145deg, rgba(10, 14, 26, 0.95), rgba(0, 0, 0, 0.95));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.1);
    transform: scale(0.7);
    opacity: 0;
}

.event-modal.show .modal-content {
    animation: modalContentZoomIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
}

.event-modal.hide .modal-content {
    animation: modalContentZoomOut 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes modalContentZoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes modalContentZoomOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.7);
        opacity: 0;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.modal-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #cccccc;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ffd700;
}

.modal-body {
    padding: 25px;
}

.modal-event-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.modal-event-info img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.modal-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.modal-details p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-time-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.time-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
}

.time-item i {
    color: #ffd700;
    width: 16px;
}

/* Responsive Design - Updated for New Layout */
@media (max-width: 1200px) {
    .events-horizontal-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .schedules-header .section-title {
        font-size: 2.5rem;
    }
    
    .schedule-grid {
        gap: 40px;
    }
    
    .category-title-bar {
        padding: 20px 25px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .category-title-info h2 {
        font-size: 1.8rem;
    }
    
    .events-horizontal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event-card {
        padding: 25px 20px;
        min-height: 250px;
    }
    
    .event-icon {
        width: 70px;
        height: 70px;
    }
    
    .modal-event-info {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-event-info img {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .schedules-hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .schedules-header .section-title {
        font-size: 2rem;
    }
    
    .schedules-header {
        margin-bottom: 50px;
    }
    
    .schedule-column {
        margin-bottom: 20px;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }
    
    .event-info h4 {
        white-space: normal;
        font-size: 1.1rem;
    }
    
    .column-icon {
        width: 70px;
        height: 70px;
    }
    
    .column-header h3 {
        font-size: 1.5rem;
    }
}

/* Column Animation - Simplified */
.schedule-column {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    border-top-color: #ffd700;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
