:root {
    --electric-pink: #FF00C8;
    --aqua-cyan: #00FFF0;
    --bright-yellow: #FFEA00;
    --vivid-orange: #FF6F00;
    --royal-blue: #2E2EFF;
    --deep-purple: #6A0DAD;
    --neon-green: #39FF14;
    --dark-bg: #0f0f1a;
    --darker-bg: #080810;
    --card-bg: rgba(30, 30, 46, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --text-light: #ffffff;
    --text-glow: 0 0 10px currentColor;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--electric-pink), var(--royal-blue));
    border-radius: 10px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Mobile First */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(8, 8, 16, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--electric-pink), var(--royal-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: logoFloat 4s ease-in-out infinite;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: logoShine 3s ease-in-out infinite;
}

.logo-icon i {
    font-size: 1.2rem;
    color: white;
    z-index: 1;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--electric-pink), var(--aqua-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--text-glow);
}

/* Navigation - Mobile First */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(8, 8, 16, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    z-index: 999;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}

.nav-list.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--electric-pink), var(--aqua-cyan));
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--aqua-cyan);
    text-shadow: var(--text-glow);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: none;
}

.mobile-support {
    display: flex;
    margin-top: 40px;
}

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--electric-pink), var(--royal-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 200, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 200, 0.6);
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Animations */
@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes logoShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .header {
        padding: 20px 0;
    }

    .header.scrolled {
        padding: 15px 0;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .logo-icon i {
        font-size: 1.3rem;
    }

    .logo-text {
        font-size: 1.6rem;
    }

    .nav-list {
        position: static;
        display: flex;
        flex-direction: row;
        height: auto;
        width: auto;
        background: transparent;
        opacity: 1;
        pointer-events: all;
        gap: 20px;
    }

    .nav-link {
        font-size: 1rem;
    }

    .mobile-support {
        display: none;
    }

    .nav-actions {
        display: flex;
        gap: 15px;
    }

    .hamburger {
        display: none;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .logo-icon i {
        font-size: 1.5rem;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .nav-list {
        gap: 25px;
    }

    .btn {
        padding: 10px 25px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-slides {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-1 {
    background: linear-gradient(rgba(15, 15, 26, 0.3), rgba(8, 8, 16, 0.9)), url('./images/gallery/1.jpeg') center/cover;
}

.slide-2 {
    background: linear-gradient(rgba(15, 15, 26, 0.3), rgba(8, 8, 16, 0.5)), url('./images/gallery/2.jpeg') center/cover;
}

.slide-3 {
    background: linear-gradient(rgba(15, 15, 26, 0.3), rgba(8, 8, 16, 0.5)), url('./images/gallery/3.jpeg') center/cover;
}

.slide-4 {
    background: linear-gradient(rgba(15, 15, 26, 0.3), rgba(8, 8, 16, 0.5)), url('./images/gallery/4.jpeg') center/cover;
}

.slide-5 {
    background: linear-gradient(rgba(15, 15, 26, 0.3), rgba(8, 8, 16, 0.5)), url('./images/gallery/5.jpeg') center/cover;
}

.slide-6 {
    background: linear-gradient(rgba(15, 15, 26, 0.3), rgba(8, 8, 16, 0.5)), url('./images/gallery/6.jpeg') center/cover;
}

.slide-7 {
    background: linear-gradient(rgba(15, 15, 26, 0.3), rgba(8, 8, 16, 0.5)), url('./images/gallery/7.jpeg') center/cover;
}

.slide-8 {
    background: linear-gradient(rgba(15, 15, 26, 0.3), rgba(8, 8, 16, 0.5)), url('./images/gallery/8.jpeg') center/cover;
}

.slide-9 {
    background: linear-gradient(rgba(15, 15, 26, 0.3), rgba(8, 8, 16, 0.5)), url('./images/gallery/9.jpeg') center/cover;
}

.slide-10 {
    background: linear-gradient(rgba(15, 15, 26, 0.3), rgba(8, 8, 16, 0.5)), url('./images/gallery/10.jpeg') center/cover;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 0, 200, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 240, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 234, 0, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.hero-text {
    width: 100%;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 200, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 0, 200, 0.3);
    animation: pulse 2s infinite;
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: var(--electric-pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--electric-pink);
}

.badge-text {
    font-weight: 600;
    color: var(--electric-pink);
    text-shadow: var(--text-glow);
    font-size: 0.9rem;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--electric-pink), var(--aqua-cyan), var(--bright-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textShine 3s ease-in-out infinite alternate;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--electric-pink), var(--aqua-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-secondary {
    background: transparent;
    color: var(--aqua-cyan);
    border: 2px solid var(--aqua-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 240, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 255, 240, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 240, 0.5);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.mobile-social-links .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-links .social-link:hover {
    background: var(--electric-pink);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 200, 0.4);
}

.hero-visual {
    display: none;
}

.floating-card {
    width: 280px;
    height: 380px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.card-content {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, var(--electric-pink), var(--royal-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 200, 0.5);
}

.avatar i {
    font-size: 2.5rem;
    color: white;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--electric-pink), var(--aqua-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-links .social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links .social-link:hover {
    background: var(--electric-pink);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 200, 0.4);
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background: radial-gradient(circle at 20% 80%, rgba(255, 0, 200, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(0, 255, 240, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(255, 234, 0, 0.15) 0%, transparent 50%);
    }

    33% {
        background: radial-gradient(circle at 80% 20%, rgba(255, 0, 200, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(0, 255, 240, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(255, 234, 0, 0.15) 0%, transparent 50%);
    }

    66% {
        background: radial-gradient(circle at 40% 40%, rgba(255, 0, 200, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(0, 255, 240, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 234, 0, 0.15) 0%, transparent 50%);
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero {
        height: 85vh;
        min-height: 650px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .btn {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat {
        min-width: 100px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero {
        height: 85vh;
        min-height: 700px;
        padding-top: 0;
    }

    .hero-main {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 60px;
    }

    .hero-text {
        text-align: left;
        max-width: none;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .mobile-social-links {
        display: none;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
        position: relative;
    }

    .floating-card {
        width: 300px;
        height: 400px;
    }

    .card-content {
        padding: 30px;
    }

    .avatar {
        width: 120px;
        height: 120px;
    }

    .avatar i {
        font-size: 3rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .social-links .social-link {
        width: 40px;
        height: 40px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Schedule Section */
.schedule {
    padding: 40px 0;
    background: var(--card-bg);
}

.schedule-compact {
    max-width: 600px;
    margin: 0 auto;
}

.next-stream-card {
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.stream-status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 200, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 200, 0.3);
    width: fit-content;
    margin: 0 auto;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--electric-pink);
}

.stream-main-info {
    text-align: center;
}

.stream-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.stream-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.stream-time i {
    color: var(--aqua-cyan);
}

.stream-timezone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timezone-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 6px 10px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.timezone-select:focus {
    outline: none;
    border-color: var(--electric-pink);
    box-shadow: 0 0 10px rgba(255, 0, 200, 0.3);
}

.timezone-select option {
    background: var(--card-bg);
    color: white;
}

.countdown-compact {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    text-align: center;
    min-width: 55px;
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--electric-pink), var(--aqua-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    text-shadow: var(--text-glow);
}

.countdown-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stream-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.btn-reminder {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(45deg, var(--electric-pink), var(--royal-blue));
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-reminder:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 200, 0.4);
}

.btn-calendar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-calendar:hover {
    background: var(--aqua-cyan);
    transform: translateY(-2px);
}

.current-time-compact {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.current-time-compact i {
    color: var(--aqua-cyan);
}

@media (min-width: 768px) {
    .schedule {
        padding: 50px 0;
    }

    .next-stream-card {
        padding: 30px;
    }

    .countdown-number {
        font-size: 2.3rem;
    }

    .countdown-item {
        min-width: 65px;
    }
}

@media (min-width: 1024px) {
    .schedule-compact {
        max-width: 700px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--electric-pink);
    transform: scale(1.1);
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shine 3s ease-in-out infinite;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    transition: var(--transition);
}

.play-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Stream Tags */
.stream-tags {
    display: flex;
    gap: 20px;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.tag-label {
    color: rgba(255, 255, 255, 0.7);
}

.tag-value {
    color: var(--bright-yellow);
    font-weight: 600;
}

/* Stream Sidebar */
.stream-sidebar {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-module {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.module-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--aqua-cyan);
    display: flex;
    align-items: center;
    gap: 10px;
}

.module-title i {
    font-size: 1.1rem;
}

/* Site Links Grid */
.site-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.site-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--electric-pink);
}

.site-link i {
    width: 20px;
    text-align: center;
    color: var(--aqua-cyan);
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.support-card {
    background: linear-gradient(135deg, var(--electric-pink), var(--royal-blue));
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.support-card:hover::before {
    animation: cardShine 1.5s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 200, 0.4);
}

.support-card i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.support-card h4 {
    margin-bottom: 5px;
}

.support-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* --- NEW HIGHLIGHTS CAROUSEL STYLES --- */
.highlights-container {
    position: relative;
    overflow: hidden;
    /* Height is now auto */
}

/* This is the slide. We change from 'opacity' to 'display' */
.highlight-video {
    display: none;
    /* Hide non-active slides */
    width: 100%;
    height: auto;
    /* Let content (video + description) define height */
    animation: fadeIn 0.5s ease;
    /* Add a fade-in effect */
}

.highlight-video.active {
    display: block;
    /* Show the active slide */
}

/* * This selector targets the video placeholder *inside* the highlight-video slide.
 * We make it responsive (16:9 aspect ratio) instead of a fixed height.
 */
.highlight-video .video-placeholder {
    position: relative;
    width: 100%;
    height: 0;
    /* Height is set by padding */
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    /* Optional: round top corners */
}

/* This makes the wrapper and video fill the new placeholder */
.highlight-video .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.highlight-video .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the 16:9 space */
}

/* * This rule was fine, but ensure the border-radius 
 * matches the placeholder if you added it.
 */
.video-description {
    padding: 25px 30px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video-description h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--aqua-cyan);
}

.video-description p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.5;
}

.video-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.highlights-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--electric-pink);
    transform: scale(1.1);
}

.nav-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--electric-pink);
    transform: scale(1.2);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--electric-pink), var(--aqua-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--electric-pink), var(--aqua-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-description {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--electric-pink), var(--royal-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.highlight-text h4 {
    margin-bottom: 5px;
}

.highlight-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.visual-container {
    width: 100%;
    max-width: 400px;
    height: 500px;
    position: relative;
}

.floating-element {
    position: absolute;
    border-radius: 20px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.element-1 {
    width: 200px;
    height: 250px;
    top: 0;
    left: 0;
    animation: float 8s ease-in-out infinite;
    background: linear-gradient(45deg, var(--electric-pink), var(--royal-blue));
}

.element-2 {
    width: 180px;
    height: 220px;
    bottom: 0;
    right: 0;
    animation: float 8s ease-in-out infinite reverse;
    background: linear-gradient(45deg, var(--aqua-cyan), var(--bright-yellow));
}

.element-3 {
    width: 150px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    background: var(--card-bg);
}

.element-content {
    padding: 20px;
    text-align: center;
    color: white;
}

.element-content i {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Premium Section */
.premium {
    background: var(--darker-bg);
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.premium-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--electric-pink), var(--aqua-cyan));
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.premium-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, var(--electric-pink), var(--royal-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.premium-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.premium-card p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
}

.premium-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.premium-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-features li:last-child {
    border-bottom: none;
}

.premium-features i {
    color: var(--neon-green);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--electric-pink), var(--aqua-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Gallery Section */
.gallery-container {
    position: relative;
}

.gallery-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
}

.gallery-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 5px;
}

.gallery-tab {
    padding: 10px 25px;
    border: none;
    background: transparent;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.gallery-tab.active {
    background: linear-gradient(45deg, var(--electric-pink), var(--royal-blue));
}

.gallery-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 8px 20px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.gallery-filter.active {
    background: linear-gradient(45deg, var(--aqua-cyan), var(--bright-yellow));
    color: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    background: var(--card-bg);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.item-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .item-overlay {
    transform: translateY(0);
}

.item-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.item-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, var(--electric-pink), var(--royal-blue));
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.load-more-container {
    text-align: center;
    margin-top: 30px;
}

.loading-spinner {
    margin-top: 15px;
    color: var(--aqua-cyan);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pre-footer {
    padding: 80px 0;
    background: linear-gradient(rgba(8, 8, 16, 0.9), rgba(8, 8, 16, 0.9));
}

.newsletter {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--electric-pink), var(--aqua-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.newsletter-text {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.main-footer {
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--electric-pink), var(--aqua-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--electric-pink);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--aqua-cyan);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--aqua-cyan);
    padding-left: 5px;
}

.sub-footer {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.sub-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--aqua-cyan);
}

/* Additional Animations */
@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    50%,
    100% {
        transform: translateX(100%);
    }
}

@keyframes cardShine {
    0% {
        transform: translateX(-100%);
    }

    50%,
    100% {
        transform: translateX(100%);
    }
}

@keyframes messageAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }

    50%,
    100% {
        transform: translateX(100%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .stream-container {
        flex-direction: column;
    }

    .stream-tags {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }

    .tag-item {
        justify-content: space-between;
    }

    .site-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-container {
        height: 350px;
    }

    .video-description {
        padding: 20px;
    }

    .video-meta {
        flex-direction: column;
        gap: 8px;
    }

    .video-placeholder {
        height: 250px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .gallery-tabs {
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }

    .gallery-filters {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .site-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .highlights-container {
        height: 300px;
    }

    .video-description h3 {
        font-size: 1.1rem;
    }

    .video-placeholder {
        height: 200px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .floating-card {
        width: 100%;
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-tabs,
    .gallery-filters {
        flex-wrap: wrap;
    }

    .gallery-tab,
    .gallery-filter {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
}

/* Dropdown Styles */
.stat-item.dropdown-trigger {
    position: relative;
    cursor: pointer;
}

.stat-item.dropdown-trigger:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.sites-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item.dropdown-trigger:hover .sites-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.site-link:hover {
    background: linear-gradient(45deg, var(--electric-pink), var(--royal-blue));
    transform: translateX(5px);
}

.site-link:last-child {
    margin-bottom: 0;
}

.site-link i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.site-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 70vh;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--electric-pink);
}

.lightbox-info {
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-info h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* Video Overlay Styles */
.video-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.live-badge {
    background: var(--electric-pink);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.viewer-count {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.video-play-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 5;
}

.video-play-button:hover {
    background: rgba(0, 0, 0, 0.3);
}

.video-play-button i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.video-play-button:hover i {
    color: white;
    transform: scale(1.1);
}

.video-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 10;
}

.video-error button {
    margin-top: 10px;
    padding: 5px 15px;
    background: var(--electric-pink);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

/* Gallery Item Visibility */
.gallery-item {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    font-size: 3rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper.playing .play-icon {
    opacity: 0;
}

.highlight-player {
    transition: opacity 0.3s ease;
}

/* Simple CSS-Only Marquee - Most Reliable */
/* Stream Title Marquee Styles */
.stream-title-container {
    flex: 1;
    min-width: 0;
    margin: 0 1rem;
    overflow: hidden;
    position: relative;
}

.stream-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
}

.stream-title-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* CONTAINER for the text (the visible window) */
.stream-title-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    /* The <h3>.stream-title parent must also have a defined, smaller width */
}

/* THE SCROLLING CONTENT */
.scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: marqueeScroll 15s linear infinite;
    /* Adjust duration for speed */
}

/* 🛑 FIX 2: Restore the -50% scroll for a seamless loop */
@keyframes marqueeScroll {
    0% {
        /* Start with the first copy visible */
        transform: translateX(0);
    }

    100% {
        /* End exactly when the second copy lines up with the starting point */
        transform: translateX(-50%);
    }
}

/* Pause marquee on hover */
.stream-title-marquee:hover .scrolling-text {
    animation-play-state: paused;
}

/* Stream Header Layout (Unified) */
.stream-header {
    /* Merged display properties (Consistent: flex, space-between, center) */
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Used the more specific padding value from the second block (20px 30px) */
    padding: 20px 30px;

    /* Merged background and border properties */
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    /* Only present in the first block */
    border-radius: 10px 10px 0 0;
}

/* Stream Information */
.stream-info {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    gap: 15px;
}

/* Stream Status (Unified) */
.stream-status {
    /* Merged display properties (Consistent: flex, center) */
    display: flex;
    align-items: center;

    /* Status Box Styling (from first block) */
    flex-shrink: 0;
    background: rgba(255, 0, 200, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 200, 0.3);

    /* Text color and gap from the second block (using 8px/0.5rem) */
    color: var(--electric-pink);
    font-weight: 600;
    gap: 8px;
    /* Used 8px/0.5rem from the second definition for consistency */
}

/* Stream Status Pulse Dot (Unified) */
.stream-status .pulse-dot,
.pulse-dot {
    /* Used the larger size (10px) from the second block */
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--electric-pink);
    animation: pulse 1.5s infinite;
}

/* Stream Status Text */
.stream-status span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--electric-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stream Actions (Unified) */
.stream-actions {
    display: flex;
    flex-shrink: 0;
    /* Only present in first block */

    /* Used the larger gap (10px) from the second block */
    gap: 10px;
}

/* Stream Title */
.stream-title {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Live Stream Section */
.live-stream {
    background: var(--darker-bg);
    padding: 60px 0;
}

/* Stream Container */
.stream-container {
    display: flex;
    gap: 30px;
}

/* Stream Player */
.stream-player {
    flex: 7;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Live Stream State */
.online-state,
.offline-state {
    display: none;
}

.online-state.active,
.offline-state.active {
    display: block;
}

.action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: rgba(255, 0, 200, 0.2);
    border-color: var(--electric-pink);
    transform: scale(1.05);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .stream-header {
        padding: 0.75rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .stream-info {
        order: 1;
        width: 100%;
        justify-content: space-between;
    }

    .stream-title-container {
        margin: 0 0.5rem;
        flex: 1;
        min-width: 0;
    }

    .stream-title {
        font-size: 1rem;
    }

    .stream-status {
        padding: 0.4rem 0.8rem;
        flex-shrink: 0;
    }

    .stream-status span {
        font-size: 0.8rem;
    }

    .stream-actions {
        order: 2;
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .stream-header {
        padding: 0.5rem;
    }

    .stream-title {
        font-size: 0.9rem;
    }

    .stream-status {
        padding: 0.3rem 0.6rem;
    }

    .stream-status span {
        font-size: 0.75rem;
    }
}

/* Hero Offline Countdown Styles */
.hero-offline-countdown {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    animation: slideDown 0.5s ease-out;
}

.offline-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 102, 102, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offline-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
}

.offline-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-stream-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.next-stream-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.offline-countdown-timer {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.offline-countdown-timer .countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    min-width: 50px;
}

.offline-countdown-timer .countdown-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: var(--text-glow);
    line-height: 1;
}

.offline-countdown-timer .countdown-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.stream-preview {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-weight: 500;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-offline-countdown {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .offline-countdown-timer {
        gap: 0.25rem;
    }

    .offline-countdown-timer .countdown-unit {
        min-width: 45px;
        padding: 0.4rem;
    }

    .offline-countdown-timer .countdown-value {
        font-size: 1.1rem;
    }


    .stream-preview {
        max-width: 100%;
        /* Use the container's full width */
        font-size: 0.75rem;
        white-space: normal;
        /* <-- This is the main fix to allow wrapping */
        overflow-wrap: break-word;
        /* This wraps long words that have no spaces */
        line-height: 1.4;
        /* Adds space between wrapped lines */
        /* Undoes the desktop "..." settings */
        overflow: visible;
        text-overflow: clip;
    }
}

@media (max-width: 480px) {
    .hero-offline-countdown {
        padding: 0.75rem;
    }

    .offline-countdown-timer .countdown-unit {
        min-width: 40px;
        padding: 0.3rem;
    }

    .offline-countdown-timer .countdown-value {
        font-size: 1rem;
    }

    .stream-preview {
        /* max-width: 150px;  <-- DELETE THIS LINE */
        font-size: 0.7rem;

    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Offline Countdown - Compact Version */
.hero-offline-countdown {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin: 20px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.offline-indicator {
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
}

.offline-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

/* Compact Countdown Timer */
.countdown-container {
    margin: 0;
    padding: 0;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 8px;
    border-radius: 8px;
    min-width: 55px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.countdown-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--electric-pink);
    text-shadow: 0 0 10px rgba(255, 0, 200, 0.5);
    line-height: 1;
    margin-bottom: 2px;
}

.countdown-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Compact Next Stream Info */
.next-stream-info {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 200, 0.15);
}

.next-stream-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.next-stream-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--neon-green);
    text-shadow: 0 0 8px rgba(0, 255, 200, 0.3);
    margin: 0;
    line-height: 1.3;
}

.next-stream-datetime {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.no-upcoming-streams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-size: 0.9rem;
}

.no-upcoming-streams i {
    color: var(--electric-pink);
    font-size: 1rem;
}

/* Compact Countdown Styles */
.hero-offline-countdown {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin: 20px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.offline-indicator {
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
}

.offline-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

/* Compact Countdown Timer */
.countdown-container {
    margin: 0;
    padding: 0;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 8px;
    border-radius: 8px;
    min-width: 55px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.countdown-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--electric-pink);
    text-shadow: 0 0 10px rgba(255, 0, 200, 0.5);
    line-height: 1;
    margin-bottom: 2px;
}

.countdown-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Compact Next Stream Info */
.next-stream-info {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 200, 0.15);
}

.next-stream-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.next-stream-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--neon-green);
    text-shadow: 0 0 8px rgba(0, 255, 200, 0.3);
    margin: 0;
    line-height: 1.3;
}

.next-stream-datetime {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.no-upcoming-streams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-size: 0.9rem;
}

.no-upcoming-streams i {
    color: var(--electric-pink);
    font-size: 1rem;
}

/* Compact Timezone Selector */
.timezone-selector {
    margin: 12px 0;
}

.timezone-select-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 12px;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.timezone-select-wrapper:hover {
    border-color: var(--electric-pink);
    background: rgba(255, 255, 255, 0.12);
}

.timezone-icon {
    color: var(--neon-green);
    font-size: 0.9rem;
}

.timezone-select {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
    appearance: none;
    padding-right: 25px;
    min-width: 180px;
    font-weight: 500;
}

.timezone-arrow {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    pointer-events: none;
    position: absolute;
    right: 12px;
}

.timezone-select option {
    background: #1a1a2e;
    color: white;
    padding: 8px;
    font-size: 0.8rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-offline-countdown {
        padding: 15px;
        margin: 15px 0;
    }

    .countdown-timer {
        gap: 6px;
        margin: 12px 0;
    }

    .countdown-unit {
        min-width: 50px;
        padding: 10px 6px;
    }

    .countdown-value {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .next-stream-info {
        padding: 12px;
        margin-top: 12px;
    }

    .next-stream-title {
        font-size: 0.9rem;
    }

    .next-stream-datetime {
        font-size: 0.75rem;
    }

    .timezone-select-wrapper {
        padding: 6px 10px;
    }

    .timezone-select {
        min-width: 160px;
        font-size: 0.8rem;
    }

    .offline-badge {
        padding: 5px 10px;
        margin-bottom: 12px;
    }

    .offline-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-offline-countdown {
        padding: 12px;
        margin: 12px 0;
    }

    .countdown-timer {
        gap: 4px;
    }

    .countdown-unit {
        min-width: 45px;
        padding: 8px 4px;
    }

    .countdown-value {
        font-size: 1.1rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    .next-stream-datetime {
        font-size: 0.7rem;
        text-align: center;
    }

    .timezone-select {
        min-width: 140px;
        font-size: 0.75rem;
    }

    .timezone-select-wrapper {
        padding: 5px 8px;
    }
}

/* Animation for countdown changes */
@keyframes countdownPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.countdown-value.changing {
    animation: countdownPop 0.3s ease;
}

/* Make sure the countdown is properly positioned in the hero */
.hero-text .hero-offline-countdown {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
}

/* Add this to your CSS file - it will override the display: none */
.gallery-item {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Ensure the grid layout works */
.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 20px !important;
}

/* Make sure item images are visible */
.item-image {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Add this to your main stylesheet */

.offline-state {
    display: flex;
    flex-direction: column;
    /* This stacks them vertically */
    align-items: center;
    width: 100%;
    /* Ensures it takes up the container width */
}

.next-stream-info {
    margin-top: 20px;
    /* Adds some space below the countdown */
    position: relative;
    /* Prevents weird absolute positioning bugs */
}

/* ===============================================
   HERO NEXT STREAM PREVIEW (ANIMATION STYLES)
   Add this entire block to the end of your CSS
   =============================================== */

/* 1. Styles for the new wrapper (Icon + Text) */
.hero-stream-preview-wrapper {
    display: flex;
    align-items: center;
    /* Vertically centers the icon and text */
    justify-content: center;
    /* Horizontally centers them */
    gap: 10px;
    /* Space between icon and text */
    margin-top: 10px;
    /* Space above this line */
    flex-wrap: wrap;
    /* Allows text to wrap on mobile */
}

/* 2. Styles for the new icon */
.hero-stream-preview-wrapper i {
    font-size: 1rem;
    /* Adjust icon size */
    color: var(--aqua-cyan);
    /* Use your brand's accent color */
    flex-shrink: 0;
    /* Prevents the icon from shrinking */
}

/* 3. Styles for the preview text (ID-specific) */
#hero-next-stream-preview {
    /* Typography & Contrast */
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;

    /* Subtle Shine Animation */
    background: linear-gradient(90deg,
            var(--neon-green),
            var(--text-light),
            var(--neon-green));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* Load-In & Shine Animations */
    opacity: 0;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
    animation-name: fadeInUp, sweepText;
    animation-duration: 0.5s, 4s;
    animation-timing-function: ease-out, linear;
    animation-iteration-count: 1, infinite;

    /* Mobile-Friendly Wrapping */
    white-space: normal;
    text-overflow: clip;
    overflow: visible;
    max-width: 100%;
}

/* Pause the shine animation on hover so it's easier to read */
.hero-stream-preview-wrapper:hover #hero-next-stream-preview {
    animation-play-state: paused, paused;
    color: var(--neon-green);
}

/* ===============================================
   KEYFRAMES (CRITICAL - MUST BE INCLUDED)
   =============================================== */

/* Keyframe for the "shine/sweep" effect */
@keyframes sweepText {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}

/* Keyframe for the "fade and slide up" load-in effect */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Styling our gift Button */
/* --- ULTIMATE "FREE GIFTS" CTA BUTTON --- */

/* 1. Base Button Style */
#support-btn-desktop1 {
    /* Set up for pseudo-elements and animations */
    position: relative;
    z-index: 10;
    overflow: hidden;
    /* Keeps the shine effect contained */
    display: inline-block;
    /* Ensures padding is respected */

    /* Vibrant Gradient Background */
    background: linear-gradient(45deg, #da00ff, #ff007a, #da00ff);
    background-size: 200% 200%;
    /* For hover animation */

    /* Modern Styling */
    border: none;
    border-radius: 50px;
    /* Pill shape */
    color: #ffffff;
    font-weight: 700;
    /* Bolder */
    font-size: 1.1rem;
    /* Bigger */
    padding: 16px 32px;
    /* Generous padding */
    text-transform: uppercase;
    letter-spacing: 1px;

    /* Smooth Transitions for hover */
    transition: all 0.4s ease-in-out;

    /* --- ANIMATION 1: The "Pulse" Glow --- */
    /* This runs constantly to attract the eye */
    animation: pulse-glow-cta 2s infinite ease-in-out;
}

/* 2. Shine/Sweep Pseudo-Element */
#support-btn-desktop1::before {
    content: '';
    position: absolute;
    top: 0;

    /* --- ANIMATION 2: The "Running" Glow --- */
    /* This is a shine that sweeps across the button */
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-25deg);
    /* Angled shine */
    animation: shine-sweep 3.5s infinite ease-in-out;
    animation-delay: 1s;
    /* Staggers it from the pulse */
}

/* 3. Hover Effects */
#support-btn-desktop1:hover {
    /* Stop the pulse animation to replace it with a stronger hover glow */
    animation: none;

    /* "Lift" the button */
    transform: translateY(-5px) scale(1.05);

    /* Stronger, more intense glow on hover */
    box-shadow: 0 10px 40px rgba(255, 0, 122, 0.7);

    /* Animate the gradient by moving its background position */
    background-position: right center;
}

/* 4. Icon Animation */
#support-btn-desktop1 .fa-gift {
    margin-right: 12px;
    /* More space */
    transition: transform 0.3s ease;
}

/* --- ANIMATION 3: The "Tada" on Hover --- */
#support-btn-desktop1:hover .fa-gift {
    animation: gift-tada 1s ease;
}

/* --- Keyframes (Place at end of file) --- */

/* Keyframes for the "Pulse" (Animation 1) */
@keyframes pulse-glow-cta {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 0, 122, 0.4);
    }

    50% {
        transform: scale(1.05);
        /* Subtle size pulse */
        box-shadow: 0 0 35px rgba(218, 0, 255, 0.7);
        /* Brighter glow */
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 0, 122, 0.4);
    }
}

/* Keyframes for the "Running Glow" (Animation 2) */
@keyframes shine-sweep {
    0% {
        left: -150%;
        /* Start off-screen to the left */
    }

    40% {
        left: 150%;
        /* Sweep all the way across */
    }

    100% {
        left: 150%;
        /* Wait off-screen to the right */
    }
}

/* Keyframes for the "Icon Tada" (Animation 3) */
@keyframes gift-tada {
    0% {
        transform: scale(1);
    }

    10%,
    20% {
        transform: scale(0.9) rotate(-6deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(6deg);
    }

    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-6deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

/* --- Overall Container to manage layout --- */
.header-actions-container {
    display: flex;
    align-items: center;
    /* Use a dark background similar to the image's context if necessary, 
       otherwise, the individual elements have their dark background. */
}

/* --- Notification Element Styling (Reused from previous response) --- */
.live-notification-container {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 25px;
    background-color: #333;
    /* Dark background color */
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 16px;
    /* Note: In the image, the notification background might be the main background, 
       but we keep it here for independence/contrast. */
}

.bell-icon {
    font-size: 18px;
    margin-right: 8px;
}

.set-reminder-text {
    margin-right: 15px;
}

/* Toggle Switch Styles (Standard CSS Switch) */
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 25px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #555;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3.5px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: #0d71a8;
}

input:checked+.slider:before {
    transform: translateX(18px);
}

.slider.round {
    border-radius: 25px;
}

.slider.round:before {
    border-radius: 50%;
}

/* --- Vertical Separator Line Styling --- */
.separator {
    width: 1px;
    /* The thickness of the line */
    height: 25px;
    /* Adjust height to match the vertical center of the elements */
    background-color: #555;
    /* Dark gray line color */
    margin: 0 15px;
    /* Spacing between the elements and the line */
}

/* --- Add to Calendar Button Styling --- */
.add-to-calendar-btn {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 25px;
    background-color: transparent;
    /* No fill, just the border/text */
    border: 1px solid #555;
    /* Or a light border to match the calendar icon/text contrast */
    color: #a0ff80;
    /* Brighter color for the text and icon, similar to the image */
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    /* Often buttons like this are bolded */
    cursor: pointer;
    transition: background-color 0.2s;
}

/* Change color on hover for better UX */
.add-to-calendar-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.calendar-icon {
    margin-left: 8px;
    font-size: 18px;
    /* We can style the icon text color if it's an emoji, 
       but if it's an SVG/image, the color should be handled there. 
       We'll keep the button's text color for the emoji. */
}


/* Container must be relative for absolute children to work */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* Use your theme's dark background instead of pure black */
    background: var(--darker-bg);
    border-radius: 8px;
    /* Matching your theme's border radius */
    overflow: hidden;
    /* Keeps the overlay inside the rounded corners */
}

/* The New Overlay */
.preview-ended-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Using your dark background with high opacity */
    background: rgba(26, 21, 18, 0.95);
    /* Optional: A subtle mossy border to match your cards */
    border: 1px solid rgba(92, 158, 95, 0.3);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    text-align: center;

    /* Apply the glass blur effect consistent with your theme */
    backdrop-filter: blur(5px);
}

.preview-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* The "Watch on Site" Button */
.watch-btn {
    display: inline-block;
    padding: 12px 30px;

    /* Matching your .btn-primary variables */
    background: linear-gradient(45deg, #da00ff, #ff007a, #da00ff);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;

    /* Matching your theme's squared/modern radius */
    border-radius: 8px;

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    /* Matching your button shadows */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.watch-btn:hover {
    /* Lighter moss green on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    color: var(--bright-yellow);
    /* Slight yellow tint on text hover */
}