/* schedule.css - Generated from schedule.html */

:root {
    --bg-primary: #030305;
    --bg-secondary: #0a0a0f;
    --bg-glass: rgba(10, 10, 15, 0.8);
    --bg-card: rgba(20, 20, 35, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #8888aa;
    --text-muted: #555577;
    --accent-purple: #b46bff;
    --accent-cyan: #00d4ff;
    --accent-pink: #ff2d92;
    --accent-lime: #ccff00;
    --gradient-primary: linear-gradient(135deg, #b46bff, #00d4ff);
    --gradient-accent: linear-gradient(135deg, #b46bff, #00d4ff, #ff2d92);
    --glass-border: rgba(255, 255, 255, 0.06);
    --font-primary: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-purple) var(--bg-secondary);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animated Background */
.bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-lime));
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.05);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-video {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-normal);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

/* Page Header */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
}

.page-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Schedule Section */
.schedule-section {
    padding: 2rem 0 6rem;
}

/* Live Now Banner */
.live-banner {
    background: linear-gradient(135deg, rgba(255, 45, 146, 0.2), rgba(180, 107, 255, 0.2));
    border: 1px solid rgba(255, 45, 146, 0.3);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    animation: pulseBorder 2s ease-in-out infinite;
}

@keyframes pulseBorder {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 45, 146, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 45, 146, 0.4);
    }
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #ff2d92;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.live-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.live-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.live-btn {
    padding: 0.75rem 1.5rem;
    background: var(--accent-pink);
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

.live-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 45, 146, 0.4);
}

/* Schedule Grid - Modern Card Design with Thumbnail */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.schedule-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.schedule-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.schedule-card.upcoming {
    border-color: rgba(0, 212, 255, 0.3);
}

.schedule-card.live {
    border-color: var(--accent-pink);
}

.schedule-card.live::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-pink);
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.schedule-thumbnail {
    position: relative;
    width: 100%;
    height: 140px;
    background: var(--bg-card);
    overflow: hidden;
}

.schedule-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.schedule-card:hover .schedule-thumbnail img {
    transform: scale(1.05);
}

.schedule-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-glass));
}

.schedule-thumbnail-placeholder i {
    font-size: 2.5rem;
    color: var(--accent-purple);
    opacity: 0.4;
}

.schedule-date-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    text-align: center;
    min-width: 50px;
}

.schedule-date-badge .day-num {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-cyan);
}

.schedule-date-badge .day-name {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--accent-pink);
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.live-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.schedule-body {
    padding: 1rem 1.25rem 1.25rem;
}

.schedule-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.6rem 0;
}

.schedule-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.schedule-time {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.schedule-time i {
    color: var(--accent-cyan);
    font-size: 0.7rem;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

.platform-badge.twitch {
    background: rgba(145, 70, 255, 0.2);
    color: #9146ff;
}

.platform-badge.youtube {
    background: rgba(255, 0, 0, 0.15);
    color: #ff4444;
}

.platform-badge.kick {
    background: rgba(83, 252, 24, 0.15);
    color: #53fc18;
}

.platform-badge.tiktok {
    background: rgba(255, 0, 80, 0.15);
    color: #ff0050;
}

.platform-badge.other {
    background: rgba(180, 107, 255, 0.15);
    color: var(--accent-purple);
}

.schedule-actions {
    display: flex;
    gap: 0.5rem;
}

.schedule-btn {
    flex: 1;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
    border: none;
}

.schedule-btn.primary {
    background: var(--accent-purple);
    color: white;
}

.schedule-btn.primary:hover {
    background: var(--accent-cyan);
    transform: translateY(-2px);
}

.schedule-btn.live-btn {
    background: var(--accent-pink);
    color: white;
}

.schedule-btn.live-btn:hover {
    box-shadow: 0 5px 20px rgba(255, 45, 146, 0.4);
}

.schedule-btn.secondary {
    flex: 0;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.6rem;
}

.schedule-btn.secondary:hover {
    border-color: var(--accent-purple);
    color: var(--text-primary);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.empty-state i {
    font-size: 4rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer p {
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 15, 30, 0.98);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.4s ease;
        padding: 2rem 0;
        backdrop-filter: blur(20px);
        gap: 1.5rem;
        display: flex;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-thumbnail {
        height: 120px;
    }

    .live-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .schedule-thumbnail {
        height: 160px;
    }

    .schedule-body {
        padding: 1rem;
    }

    .schedule-title {
        font-size: 0.95rem;
    }

    .schedule-time {
        font-size: 0.75rem;
    }

    .platform-badge {
        font-size: 0.65rem;
    }

    .schedule-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .live-banner {
        padding: 1rem;
        border-radius: 12px;
    }
}

/* === Extracted from schedule.html === */

:root {
    --bg-primary: #030305;
    --bg-secondary: #0a0a0f;
    --bg-glass: rgba(10, 10, 15, 0.8);
    --bg-card: rgba(20, 20, 35, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #8888aa;
    --text-muted: #555577;
    --accent-purple: #b46bff;
    --accent-cyan: #00d4ff;
    --accent-pink: #ff2d92;
    --accent-lime: #ccff00;
    --gradient-primary: linear-gradient(135deg, #b46bff, #00d4ff);
    --gradient-accent: linear-gradient(135deg, #b46bff, #00d4ff, #ff2d92);
    --glass-border: rgba(255, 255, 255, 0.06);
    --font-primary: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-purple) var(--bg-secondary);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animated Background */
.bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-lime));
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.05);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-video {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-normal);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

/* Page Header */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
}

.page-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Schedule Section */
.schedule-section {
    padding: 2rem 0 6rem;
}

/* Live Now Banner */
.live-banner {
    background: linear-gradient(135deg, rgba(255, 45, 146, 0.2), rgba(180, 107, 255, 0.2));
    border: 1px solid rgba(255, 45, 146, 0.3);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    animation: pulseBorder 2s ease-in-out infinite;
}

@keyframes pulseBorder {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 45, 146, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 45, 146, 0.4);
    }
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #ff2d92;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.live-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.live-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.live-btn {
    padding: 0.75rem 1.5rem;
    background: var(--accent-pink);
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

.live-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 45, 146, 0.4);
}

/* Schedule Grid - Modern Card Design with Thumbnail */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.schedule-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.schedule-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.schedule-card.upcoming {
    border-color: rgba(0, 212, 255, 0.3);
}

.schedule-card.live {
    border-color: var(--accent-pink);
}

.schedule-card.live::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-pink);
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.schedule-thumbnail {
    position: relative;
    width: 100%;
    height: 140px;
    background: var(--bg-card);
    overflow: hidden;
}

.schedule-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.schedule-card:hover .schedule-thumbnail img {
    transform: scale(1.05);
}

.schedule-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-glass));
}

.schedule-thumbnail-placeholder i {
    font-size: 2.5rem;
    color: var(--accent-purple);
    opacity: 0.4;
}

.schedule-date-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    text-align: center;
    min-width: 50px;
}

.schedule-date-badge .day-num {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-cyan);
}

.schedule-date-badge .day-name {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--accent-pink);
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.live-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.schedule-body {
    padding: 1rem 1.25rem 1.25rem;
}

.schedule-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.6rem 0;
}

.schedule-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.schedule-time {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.schedule-time i {
    color: var(--accent-cyan);
    font-size: 0.7rem;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

.platform-badge.twitch {
    background: rgba(145, 70, 255, 0.2);
    color: #9146ff;
}

.platform-badge.youtube {
    background: rgba(255, 0, 0, 0.15);
    color: #ff4444;
}

.platform-badge.kick {
    background: rgba(83, 252, 24, 0.15);
    color: #53fc18;
}

.platform-badge.tiktok {
    background: rgba(255, 0, 80, 0.15);
    color: #ff0050;
}

.platform-badge.other {
    background: rgba(180, 107, 255, 0.15);
    color: var(--accent-purple);
}

.schedule-actions {
    display: flex;
    gap: 0.5rem;
}

.schedule-btn {
    flex: 1;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
    border: none;
}

.schedule-btn.primary {
    background: var(--accent-purple);
    color: white;
}

.schedule-btn.primary:hover {
    background: var(--accent-cyan);
    transform: translateY(-2px);
}

.schedule-btn.live-btn {
    background: var(--accent-pink);
    color: white;
}

.schedule-btn.live-btn:hover {
    box-shadow: 0 5px 20px rgba(255, 45, 146, 0.4);
}

.schedule-btn.secondary {
    flex: 0;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.6rem;
}

.schedule-btn.secondary:hover {
    border-color: var(--accent-purple);
    color: var(--text-primary);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.empty-state i {
    font-size: 4rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer p {
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 15, 30, 0.98);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.4s ease;
        padding: 2rem 0;
        backdrop-filter: blur(20px);
        gap: 1.5rem;
        display: flex;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-thumbnail {
        height: 120px;
    }

    .live-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .schedule-thumbnail {
        height: 160px;
    }

    .schedule-body {
        padding: 1rem;
    }

    .schedule-title {
        font-size: 0.95rem;
    }

    .schedule-time {
        font-size: 0.75rem;
    }

    .platform-badge {
        font-size: 0.65rem;
    }

    .schedule-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .live-banner {
        padding: 1rem;
        border-radius: 12px;
    }
}

/* 8. NAVBAR CTA BUTTON */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    margin-left: 1rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    color: white;
}

.nav-cta i {
    transition: transform 0.3s ease;
}

.nav-cta:hover i {
    transform: translateX(3px);
}

@media (max-width: 968px) {
    .nav-cta {
        display: none;
    }
}