/* ===== ULTRA MODERN SHOW DETAIL PAGE ===== */

/* ===== CINEMATIC HERO ===== */
.cinematic-hero {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Hero with real image support */
.hero-image-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-gradient-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 50%, var(--c3) 100%);
    animation: heroGradientShift 15s ease infinite;
}

/* When image is present, gradient becomes overlay */
.hero-visual.has-image .hero-gradient-layer {
    opacity: 0.4;
    mix-blend-mode: multiply;
}

/* Extra dark overlay for better text readability when image is present */
.hero-visual.has-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 5;
}

@keyframes heroGradientShift {
    0%, 100% { filter: hue-rotate(0deg) saturate(1); }
    50% { filter: hue-rotate(20deg) saturate(1.2); }
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: overlay;
}

.hero-spotlight {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: spotlightDance 20s ease-in-out infinite;
}

@keyframes spotlightDance {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5%, -3%) rotate(2deg); }
    50% { transform: translate(-3%, 5%) rotate(-1deg); }
    75% { transform: translate(-5%, -2%) rotate(1deg); }
}

.hero-particles-floating {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatUp 15s infinite;
}

.floating-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.floating-particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; }
.floating-particle:nth-child(3) { left: 35%; animation-delay: 4s; animation-duration: 16s; }
.floating-particle:nth-child(4) { left: 50%; animation-delay: 1s; animation-duration: 13s; }
.floating-particle:nth-child(5) { left: 65%; animation-delay: 3s; animation-duration: 15s; }
.floating-particle:nth-child(6) { left: 80%; animation-delay: 5s; animation-duration: 17s; }
.floating-particle:nth-child(7) { left: 90%; animation-delay: 2.5s; animation-duration: 14s; }

@keyframes floatUp {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; transform: scale(1); }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(0); opacity: 0; }
}

.hero-overlay-cinematic {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 15, 0.2) 0%,
        rgba(5, 5, 15, 0) 30%,
        rgba(5, 5, 15, 0.3) 60%,
        rgba(5, 5, 15, 0.95) 100%
    );
}

/* Back Button Enhanced */
.back-btn-floating {
    position: fixed;
    top: 100px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.back-btn-floating svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.back-btn-floating:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.back-btn-floating:hover svg {
    transform: translateX(-3px);
}

/* Hero Content */
.hero-content-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 60px 20px 80px;
}

.hero-content-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Category Badge */
.category-badge-wrap {
    margin-bottom: 24px;
    display: inline-block;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: badgeFadeIn 0.8s ease forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.category-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgeFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* Giant Title */
.show-title-giant {
    font-size: clamp(3.5rem, 15vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 24px;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 20px 80px rgba(0, 0, 0, 0.4);
}

.title-word {
    display: inline-block;
    overflow: hidden;
}

.title-char-anim {
    display: inline-block;
    animation: charSlideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    transform: translateY(100%);
}

@keyframes charSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tagline */
.show-tagline-hero {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin-bottom: 48px;
    max-width: 600px;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 4px 20px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(30px); }
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.7s forwards;
    opacity: 0;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.stat-icon-box {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-box svg {
    width: 26px;
    height: 26px;
}

.stat-data {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Scroll Down Indicator */
/* Modern Scroll Indicator - Right Side */
.scroll-hint {
    position: absolute;
    bottom: 50%;
    right: 30px;
    transform: translateY(50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 10;
    animation: fadeInRight 1s ease 1s forwards;
    opacity: 0;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateY(50%) translateX(20px); }
    to { opacity: 1; transform: translateY(50%) translateX(0); }
}

.scroll-hint-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    padding: 16px 0;
    position: relative;
}

.scroll-hint-line {
    width: 2px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-hint-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
}

.scroll-hint-line::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, var(--accent-primary, #a855f7), transparent);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(100px); opacity: 0; }
}

/* Scroll hint icon */
.scroll-hint-icon {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-hint-icon svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Mobile - compact bottom right */
@media (max-width: 768px) {
    .scroll-hint {
        bottom: 20px;
        right: 20px;
        left: auto;
        transform: none;
        flex-direction: column;
        gap: 8px;
        animation: fadeInUp 1s ease 1s forwards;
        opacity: 0;
    }
    
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .scroll-hint-text {
        writing-mode: vertical-rl;
        padding: 8px 0;
        font-size: 0.6rem;
        letter-spacing: 2px;
    }
    
    .scroll-hint-line {
        width: 2px;
        height: 40px;
    }
    
    .scroll-hint-line::before {
        display: none;
    }
    
    .scroll-hint-line::after {
        top: -15px;
        left: 0;
        width: 100%;
        height: 15px;
        background: linear-gradient(to bottom, var(--accent-primary, #a855f7), transparent);
        animation: scrollPulse 1.5s ease-in-out infinite;
    }
    
    .scroll-hint-icon {
        width: 36px;
        height: 36px;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
    }
    
    .scroll-hint-icon svg {
        width: 16px;
        height: 16px;
        transform: none;
    }
}

/* ===== HORIZONTAL SHOWCASE ===== */
.horizontal-showcase {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.showcase-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: showcaseScroll 30s linear infinite;
}

.showcase-track:hover {
    animation-play-state: paused;
}

.showcase-item {
    width: 280px;
    height: 180px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.showcase-item:hover {
    transform: scale(1.05);
}

/* Showcase with real images */
.showcase-item.has-image {
    background-size: cover;
    background-position: center;
}

.showcase-item-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.5;
    z-index: 1;
}

.showcase-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 2;
}

.showcase-item-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;
}

.showcase-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.showcase-item p {
    font-size: 0.85rem;
    opacity: 0.8;
}

@keyframes showcaseScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== ABOUT SECTION PREMIUM ===== */
.about-premium {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.about-premium::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    top: -400px;
    right: -400px;
    pointer-events: none;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
}

.about-text-side {
    order: 2;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.section-tag svg {
    width: 16px;
    height: 16px;
}

.about-heading {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 32px;
}

.about-heading .line {
    display: block;
}

.about-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    margin-bottom: 40px;
}

.mini-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mini-feature:hover {
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-2px);
}

.mini-feature svg {
    width: 18px;
    height: 18px;
    color: var(--accent-primary);
}

/* Visual Side - 3D Cards */
.about-visual-side {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.visual-3d-stack {
    position: relative;
    width: 320px;
    height: 420px;
    transform-style: preserve-3d;
}

.stack-card {
    position: absolute;
    width: 280px;
    height: 380px;
    border-radius: 32px;
    background: linear-gradient(145deg, var(--c1), var(--c2));
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

/* Stack cards with real images */
.stack-card.has-image {
    background-size: cover;
    background-position: center;
}

.stack-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
}

.stack-card.has-image::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 30%);
}

.stack-card-1 {
    z-index: 3;
    top: 0;
    left: 0;
}

.stack-card-2 {
    z-index: 2;
    top: 15px;
    left: 20px;
    opacity: 0.75;
    transform: scale(0.95);
}

.stack-card-3 {
    z-index: 1;
    top: 30px;
    left: 40px;
    opacity: 0.5;
    transform: scale(0.9);
}

.visual-3d-stack:hover .stack-card-1 {
    transform: translateX(-30px) translateY(-10px) rotateY(-15deg) rotateX(5deg);
}

.visual-3d-stack:hover .stack-card-2 {
    transform: translateX(10px) translateY(5px) rotateY(5deg) scale(0.95);
    opacity: 0.85;
}

.visual-3d-stack:hover .stack-card-3 {
    transform: translateX(50px) translateY(15px) rotateY(15deg) scale(0.9);
    opacity: 0.65;
}

.stack-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

/* Placeholder for cards without images */
.stack-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(0,0,0,0.4);
    z-index: 10;
    border-radius: inherit;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: placeholderPulse 2s ease-in-out infinite;
    background: rgba(255,255,255,0.1);
}

.placeholder-icon svg {
    width: 40px;
    height: 40px;
    color: rgba(255,255,255,0.8);
}

.placeholder-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.placeholder-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.05) 50%,
        transparent 100%
    );
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes placeholderPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.stack-card-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stack-card-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== FEATURES BENTO GRID ===== */
.features-bento {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.bento-header {
    text-align: center;
    margin-bottom: 60px;
}

.bento-header h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 36px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(168, 85, 247, 0.1);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card.bento-large {
    grid-column: 1;
}

.bento-card.bento-featured {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.15) 0%, var(--bg-card) 100%);
    border-color: rgba(168, 85, 247, 0.3);
}

.bento-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--c), rgba(168, 85, 247, 0.5));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.bento-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: inherit;
    border-radius: 22px;
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
}

.bento-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.bento-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== VIDEO PREVIEW SECTION ===== */
.video-preview {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
}

.video-header {
    text-align: center;
    margin-bottom: 50px;
}

.video-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
}

.video-frame {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    cursor: pointer;
}

/* Video frame with real thumbnail */
.video-frame.has-image {
    background-size: cover;
    background-position: center;
}

/* Real Video Player */
.video-frame-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(var(--c1-rgb, 168, 85, 247), 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.show-video {
    width: 100%;
    display: block;
    border-radius: 24px;
    background: #000;
}

.show-video::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* Video poster fallback gradient */
.show-video:not([poster]) {
    background: linear-gradient(135deg, var(--c1, #a855f7), var(--c2, #ec4899));
}

/* ===== VIDEO SHOWCASE SECTION ===== */
.video-section-compact {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.video-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
}

.video-compact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.video-compact-wrapper.video-grid-2 {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .video-compact-wrapper.video-grid-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.video-showcase-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.video-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

/* Video Thumbnail/Poster */
.video-poster {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.video-showcase-card:hover .video-poster {
    transform: scale(1.05);
}

/* Video overlay with gradient */
.video-overlay-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-showcase-card:hover .video-overlay-layer {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* Big Play Button */
.video-play-btn {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(255, 255, 255, 0.2);
}

.video-play-btn svg {
    width: 36px;
    height: 36px;
    color: #1a1a2e;
    margin-left: 4px;
}

.video-showcase-card:hover .video-play-btn {
    transform: scale(1.15);
    background: #fff;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(255, 255, 255, 0.3);
}

/* Play text */
.video-play-text {
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Badge on top left */
.video-badge-corner {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.video-badge-corner svg {
    width: 14px;
    height: 14px;
}

/* Duration badge */
.video-duration {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
    z-index: 5;
}

/* Hidden actual video */
.video-showcase-card video {
    display: none;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
}

.video-modal video {
    width: 100%;
    max-height: 85vh;
    border-radius: 16px;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-modal-close svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

/* Mobile video adjustments */
@media (max-width: 640px) {
    .video-section-compact {
        padding: 40px 0 60px;
    }
    
    .video-play-btn {
        width: 70px;
        height: 70px;
    }
    
    .video-play-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .video-play-text {
        font-size: 0.8rem;
    }
    
    .video-modal-close {
        top: -45px;
    }
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-frame:hover .video-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.play-button {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.play-button svg {
    width: 36px;
    height: 36px;
    color: #000;
    margin-left: 4px;
}

.video-frame:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.video-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.video-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.video-info-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
}

/* ===== IDEAL FOR - MODERN LIST ===== */
.ideal-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.ideal-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.ideal-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.ideal-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.ideal-list-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ideal-item-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ideal-item-modern:hover {
    transform: translateX(10px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.ideal-check-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ideal-check-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.ideal-item-text {
    flex: 1;
}

.ideal-item-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.ideal-item-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== CTA SECTION EPIC ===== */
.cta-epic {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.cta-visual {
    position: absolute;
    inset: 0;
}

.cta-gradient-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 30%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-inner h2 span {
    display: block;
    font-weight: 400;
    font-size: 0.7em;
}

.cta-inner > p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 48px;
    line-height: 1.7;
}

.cta-buttons-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 44px;
    background: white;
    color: #000;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary svg {
    width: 24px;
    height: 24px;
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-cta-secondary svg {
    width: 22px;
    height: 22px;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px);
}

/* ===== RELATED SHOWS PREMIUM ===== */
.related-premium {
    padding: 120px 0;
    background: var(--bg-primary);
}

.related-header {
    text-align: center;
    margin-bottom: 60px;
}

.related-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
}

.related-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.related-show-card {
    position: relative;
    height: 320px;
    border-radius: 28px;
    overflow: hidden;
    display: block;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.related-show-card:hover {
    transform: scale(1.02);
}

.related-show-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    transition: transform 0.6s ease;
}

.related-show-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.related-show-bg.has-image {
    background-size: cover;
    background-position: center;
}

.related-show-card:hover .related-show-bg {
    transform: scale(1.1);
}

.related-show-content {
    position: absolute;
    inset: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.related-show-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    width: fit-content;
}

.related-show-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.related-show-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.related-show-arrow {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.related-show-arrow svg {
    width: 20px;
    height: 20px;
}

.related-show-card:hover .related-show-arrow {
    background: white;
    color: #000;
    transform: translateX(5px);
}

/* ===== FOOTER MINI ===== */
.footer-compact {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-compact p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== PHOTO GALLERY SECTION ===== */
.photo-gallery {
    padding: 100px 0;
    background: var(--bg-primary);
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gallery-item-large {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, var(--c1, #666), var(--c2, #888));
}

.gallery-item-large.has-image {
    background-size: cover;
    background-position: center;
}

.gallery-item-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-large:hover::before {
    opacity: 1;
}

.gallery-item-large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px;
}

.gallery-item-large:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item-large.span-2 {
    grid-column: span 2;
}

.gallery-item-large.span-row {
    grid-row: span 2;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    color: white;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
    color: white;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
    .stats-row {
        gap: 20px;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card.bento-large {
        grid-column: span 2;
    }
    
    .cta-buttons-row {
        flex-direction: row;
        justify-content: center;
    }
    
    .related-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 768px) {
    .hero-content-wrap {
        padding: 80px 40px 100px;
    }
    
    .back-btn-floating {
        left: 40px;
    }
    
    .about-layout {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-text-side {
        order: 1;
    }
    
    .about-visual-side {
        order: 2;
    }
    
    .ideal-layout {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bento-card.bento-large {
        grid-column: span 1;
        grid-row: span 2;
    }
    
    .related-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stat-card {
        padding: 24px 32px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1200px) {
    .hero-content-wrap {
        padding: 100px 60px 120px;
    }
    
    .about-layout {
        gap: 100px;
    }
    
    .visual-3d-stack {
        width: 380px;
        height: 480px;
    }
    
    .stack-card {
        width: 320px;
        height: 420px;
    }
}

/* ===== Photo Gallery Section ===== */
.photo-gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(10, 10, 20, 0.5) 0%, transparent 100%);
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.gallery-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-item {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}
