/* ============================================
   PEDDI MOVIE WEBSITE — MAIN STYLESHEET
   Dark Cinematic Theme | Red-Black Palette
   ============================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red: #C4872A;
    --red-dark: #7A5010;
    --red-glow: rgba(196, 135, 42, 0.6);
    --red-soft: rgba(196, 135, 42, 0.15);
    --black: #000000;
    --dark: #0a0a0a;
    --dark2: #111111;
    --dark3: #1a1a1a;
    --dark4: #222222;
    --white: #ffffff;
    --gray: #aaaaaa;
    --gray2: #666666;
    --gold: #f5c518;
    --font-hero: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-sub: 'Rajdhani', sans-serif;
    --transition: 0.3s ease;
    --glow: 0 0 20px var(--red-glow), 0 0 40px rgba(196, 135, 42, 0.3);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

img { display: block; max-width: 100%; }

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

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ============ SIDEBAR ============ */
.sidebar {
    position: fixed;
    top: 0; left: -320px;
    width: 300px; height: 100vh;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(196, 135, 42, 0.3);
    z-index: 9999;
    padding: 80px 30px 40px;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.sidebar.open { left: 0; }

.sidebar-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: 1px solid var(--red);
    color: var(--red);
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}
.sidebar-close:hover { background: var(--red); color: white; }

.sidebar-logo {
    font-family: var(--font-hero);
    font-size: 3rem;
    color: var(--red);
    letter-spacing: 4px;
    margin-bottom: 40px;
    text-shadow: var(--glow);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.sidebar-link {
    font-family: var(--font-sub);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    padding: 12px 16px;
    border-left: 3px solid transparent;
    transition: var(--transition);
    border-radius: 0 8px 8px 0;
}
.sidebar-link:hover {
    color: var(--white);
    border-left-color: var(--red);
    background: var(--red-soft);
    padding-left: 24px;
}

.sidebar-social {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}
.social-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--gray2);
    border-radius: 50%;
    color: var(--gray);
    transition: var(--transition);
}
.social-icon svg { width: 18px; height: 18px; }
.social-logo { width: 18px; height: 18px; object-fit: contain; }
.social-icon:hover { border-color: var(--red); color: var(--red); box-shadow: var(--glow); }

.sidebar-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.sidebar-overlay.active { opacity: 1; pointer-events: all; }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
    height: 64px;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hamburger {
    display: none;
}
.hamburger:hover { background: var(--red-dark); box-shadow: var(--glow); }
.hamburger span {
    display: none;
}

.nav-logo {
    font-family: var(--font-hero);
    font-size: 1.8rem;
    color: var(--red);
    letter-spacing: 3px;
    text-shadow: var(--glow);
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}
.nav-logo:focus {
    outline: 2px solid var(--red);
    outline-offset: 4px;
    border-radius: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    font-family: var(--font-sub);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s;
    border-radius: 2px;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 60%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 60%; }

/* ============ HERO ============ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg-fixed {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('images/peddi-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.1) 30%,
        rgba(0,0,0,0.5) 70%,
        rgba(0,0,0,0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 20px 80px;
    max-width: 900px;
    width: 100%;
}

.hero-presenter {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInDown 1s 0.3s forwards;
}

.hero-title-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.hero-main-image {
    max-height: 340px;
    width: auto;
    object-fit: contain;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0));
    opacity: 0;
    animation: fadeIn 1.2s 0.5s forwards;
}

.hero-title {
    font-family: var(--font-hero);
    font-size: clamp(6rem, 18vw, 14rem);
    letter-spacing: 0.08em;
    color: transparent;
    background: linear-gradient(135deg, #E0A040 0%, #C07830 30%, #E8B870 60%, #7A5010 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(196, 135, 42, 0.7));
    margin-top: -20px;
    opacity: 0;
    animation: fadeInUp 1s 0.8s forwards;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 2vw, 1rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
}
.hero-tagline span { color: var(--white); font-weight: 700; }

.release-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    background: linear-gradient(90deg, var(--red-dark), var(--red));
    border-radius: 50px;
    font-family: var(--font-sub);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    opacity: 0;
    animation: fadeIn 1s 1.4s forwards;
}
.release-icon { font-size: 1.2rem; }

/* COUNTDOWN */
.countdown {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s 1.6s forwards;
}

.countdown-box {
    min-width: 90px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(196, 135, 42, 0.4);
    border-radius: 12px;
    display: flex; flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}
.countdown-box:hover { border-color: var(--red); box-shadow: var(--glow); }

.count-num {
    font-family: var(--font-hero);
    font-size: 2.8rem;
    color: var(--white);
    line-height: 1;
}
.count-label {
    font-family: var(--font-sub);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gray);
    margin-top: 4px;
}

/* HERO BUTTONS */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s 1.8s forwards;
}

.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-sub);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white;
    border-color: var(--red);
    box-shadow: 0 4px 25px rgba(196, 135, 42, 0.4);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(196, 135, 42, 0.7);
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: white;
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
    font-size: 0.85rem;
}
.btn-outline:hover {
    background: var(--red);
    color: white;
    box-shadow: var(--glow);
    transform: translateY(-2px);
}

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* SCROLL INDICATOR */
.hero-scroll-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s 2.5s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: scrollTextBounce 2s ease-in-out infinite;
}

@keyframes scrollTextBounce {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(-8px); opacity: 1; }
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    transition: all 0.3s ease;
}

.scroll-mouse:hover {
    border-color: var(--red);
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--red);
    border-radius: 2px;
    animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ SHARED SECTION STYLES ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-title {
    font-family: var(--font-hero);
    font-size: clamp(2.5rem, 7vw, 5rem);
    letter-spacing: 4px;
    text-align: center;
    color: var(--white);
    margin-bottom: 12px;
}

.section-divider {
    width: 80px; height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red));
    border-radius: 2px;
    margin: 0 auto 60px;
    box-shadow: 0 0 12px var(--red-glow);
}

/* ============ MOVIE INFO ============ */
.movie-info {
    background: linear-gradient(to bottom, rgba(0,0,0,0.95), var(--dark));
    padding: 80px 24px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(196, 135, 42, 0.25);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: var(--transition);
    cursor: default;
}
.info-card:hover {
    border-color: var(--red);
    background: rgba(196, 135, 42, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(196, 135, 42, 0.2);
}
.info-icon { font-size: 2rem; }
.info-label {
    font-family: var(--font-sub);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gray2);
    text-transform: uppercase;
}
.info-value {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

/* ============ STORY ============ */
.story {
    position: relative;
    padding: 120px 24px;
    overflow: hidden;
}
.story-bg {
    position: absolute; inset: 0;
    overflow: hidden;
}
.story-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: blur(4px) brightness(0.2);
}
.story-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(122,80,16,0.25));
}
.story-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}
.story-text strong { color: var(--red); }
.story-content .btn-outline { margin-top: 20px; }

/* ============ CAST ============ */
.cast-section {
    background: var(--dark);
    padding: 100px 0;
}

/* Subtitle */
.cast-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
}

/* Toggle buttons */
.cast-toggle {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 3rem;
}
.cast-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 36px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--white);
    font-family: var(--font-sub);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
}
.cast-tab-btn:hover { border-color: var(--red); background: rgba(224,14,47,0.1); }
.cast-tab-btn.active { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 0 24px rgba(196, 135, 42, 0.4); }

/* ---- CAST TAB: portrait cards ---- */
.cast-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cast-grid-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.btn-view-more-cast {
    display: inline-block;
    padding: 16px 52px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-sub);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
    box-shadow: 0 6px 28px rgba(196, 135, 42, 0.4);
}
.btn-view-more-cast:hover {
    background: var(--red-dark);
    box-shadow: 0 10px 40px rgba(196, 135, 42, 0.6);
    transform: translateY(-2px);
}
.cast-card-new {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--dark2);
    border: 1px solid rgba(196,135,42,0.2);
    transition: var(--transition);
    cursor: pointer;
}
.cast-card-new:hover {
    border-color: var(--red);
    box-shadow: 0 20px 50px rgba(196, 135, 42, 0.25);
    transform: translateY(-8px);
}
.cast-card-new .cast-image-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.cast-card-new .cast-image {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}
.cast-card-new:hover .cast-image { transform: scale(1.07); }
.cast-card-new .cast-glow {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.92), transparent);
}
.cast-info-new {
    padding: 16px 18px;
    border-top: 1px solid rgba(196,135,42,0.25);
    background: rgba(255,255,255,0.03);
}
.cast-info-new .cast-name {
    font-family: var(--font-sub);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin: 0 0 4px;
}
.cast-info-new .cast-char {
    font-size: 0.72rem;
    color: var(--gray);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

/* ---- CREW TAB: horizontal cards ---- */
.crew-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.crew-card {
    display: flex;
    gap: 0;
    background: var(--dark2);
    border: 1px solid rgba(196,135,42,0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}
.crew-card:hover {
    border-color: var(--red);
    box-shadow: 0 12px 40px rgba(196, 135, 42, 0.2);
    transform: translateY(-4px);
}
.crew-img-wrap {
    width: 160px;
    flex-shrink: 0;
    overflow: hidden;
}
.crew-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s;
}
.crew-card:hover .crew-img { transform: scale(1.06); }
.crew-info {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}
.crew-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.crew-role-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.crew-name {
    font-family: var(--font-sub);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 3px;
}
.crew-role-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}
.crew-desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}
.crew-filmography-link {
    display: inline-block;
    font-family: var(--font-sub);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}
.crew-filmography-link:hover { color: #fff; text-decoration: underline; }

/* Legacy cast-grid kept for any reuse */
.cast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
}
.cast-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--dark2);
    border: 1px solid rgba(196,135,42,0.2);
    transition: var(--transition);
    cursor: default;
}
.cast-card:hover {
    border-color: var(--red);
    box-shadow: 0 20px 50px rgba(196, 135, 42, 0.3);
    transform: translateY(-8px);
}
.cast-image-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.cast-image {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}
.cast-card:hover .cast-image { transform: scale(1.07); }
.cast-glow {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
}
.cast-info {
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-top: 1px solid rgba(196,135,42,0.3);
}
.cast-name {
    font-family: var(--font-sub);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}
.cast-role {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 4px;
    letter-spacing: 1px;
}

/* ============ GALLERY ============ */
.gallery-section {
    background: var(--black);
    padding: 100px 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}
.gallery-preview-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 0;
}
.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
}
.gallery-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.05); }
.gallery-btn-wrap { text-align: center; }
.gallery-item-hidden { display: none; }

/* LIGHTBOX */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-content { max-width: 90%; max-height: 85vh; }
.lightbox-content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    cursor: pointer;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
}
.lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 1.2rem; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--red); border-color: var(--red); }
.lightbox-download {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    padding: 9px 22px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 30px;
    font-family: var(--font-sub);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
}
.lightbox-download:hover { background: var(--red); border-color: var(--red); }

/* ============ VIDEOS ============ */
.videos-section {
    background: var(--dark);
    padding: 100px 0;
}
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.video-card {
    background: var(--dark2);
    border: 1px solid rgba(196, 135, 42, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}
.video-card:hover { border-color: var(--red); box-shadow: 0 10px 40px rgba(196, 135, 42, 0.2); }
.video-embed-wrap { position: relative; }
.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}
.video-iframe-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 0;
    background: #000;
}
.video-iframe-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}
.video-yt-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-family: var(--font-sub);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s;
}
.video-placeholder:hover .video-yt-badge { opacity: 1; }
.video-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.video-placeholder:hover .video-thumb { transform: scale(1.04); }
.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: var(--red);
    border: none; border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(196, 135, 42, 0.6);
}
.play-btn:hover { background: var(--red-dark); transform: translate(-50%, -50%) scale(1.1); }
.play-btn svg { width: 24px; height: 24px; fill: white; margin-left: 3px; }
.video-info { padding: 20px; }
.video-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--red-soft);
    border: 1px solid var(--red);
    border-radius: 20px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 10px;
}
.video-title {
    font-family: var(--font-sub);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.video-desc { font-size: 0.85rem; color: var(--gray); }

/* ============ TRAILER ============ */
.trailer-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.trailer-bg { position: absolute; inset: 0; }
.trailer-bg-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.15) blur(3px); }
.trailer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.trailer-content { position: relative; z-index: 5; }
.trailer-video-wrap { max-width: 900px; margin: 0 auto; }
.video-placeholder.large { aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; }
.large-thumb { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.large-play { width: 90px; height: 90px; }
.large-play svg { width: 36px; height: 36px; }
.trailer-coming-soon {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    background: rgba(0,0,0,0.5);
}
.trailer-label {
    font-family: var(--font-hero);
    font-size: 2.5rem;
    letter-spacing: 6px;
    color: var(--red);
    text-shadow: var(--glow);
}
.trailer-sub { font-size: 0.9rem; color: var(--gray); margin-top: 8px; letter-spacing: 2px; }

/* ============ EVENTS ============ */
.events-section {
    background: var(--black);
    padding: 100px 0;
}
.events-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.events-panel, .stats-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(196, 135, 42, 0.25);
    border-radius: 20px;
    padding: 30px;
}
.panel-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(196, 135, 42, 0.2);
}
.panel-icon { font-size: 1.5rem; }
.panel-title {
    font-family: var(--font-sub);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 1px;
}
.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-item {
    display: flex; gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.event-item:hover { border-color: rgba(196, 135, 42, 0.3); background: var(--red-soft); }
.event-icon-wrap {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--red-soft);
    border: 1px solid var(--red);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.event-icon { font-size: 1.3rem; }
.event-title { font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 4px; }
.event-date { font-size: 0.8rem; color: var(--red); font-weight: 700; margin-bottom: 4px; letter-spacing: 1px; }
.event-desc { font-size: 0.8rem; color: var(--gray); margin-bottom: 8px; }
.event-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.6rem;
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
}
.event-tag.music { background: rgba(255, 170, 0, 0.15); border: 1px solid #ffa600; color: #ffa600; }
.event-tag.upcoming { background: rgba(0, 130, 255, 0.15); border: 1px solid #0082ff; color: #0082ff; }
.event-tag.release { background: var(--red-soft); border: 1px solid var(--red); color: var(--red); }

/* STATS */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.stat-item {
    padding: 20px;
    background: rgba(196, 135, 42, 0.08);
    border: 1px solid rgba(196, 135, 42, 0.3);
    border-radius: 12px;
    text-align: center;
}
.stat-num {
    font-family: var(--font-hero);
    font-size: 2.5rem;
    color: var(--red);
    display: block;
    text-shadow: var(--glow);
}
.stat-label { font-size: 0.8rem; color: var(--gray); letter-spacing: 1px; }
.cast-mini-cards {
    display: flex;
    gap: 12px;
}
.mini-card {
    flex: 1;
    background: var(--dark2);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}
.mini-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.mini-card span { display: block; font-size: 0.65rem; padding: 6px 4px; color: var(--gray); letter-spacing: 0.5px; }

/* ============ FOOTER ============ */
.footer {
    background: var(--dark2);
    border-top: 1px solid rgba(196, 135, 42, 0.3);
    padding: 60px 24px 30px;
    text-align: center;
}
.footer-content { max-width: 700px; margin: 0 auto; }
.footer-logo {
    font-family: var(--font-hero);
    font-size: 4rem;
    letter-spacing: 8px;
    color: var(--red);
    text-shadow: var(--glow);
    margin-bottom: 8px;
}
.footer-tagline {
    font-family: var(--font-sub);
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 32px;
}
.footer-social { display: flex; justify-content: center; gap: 16px; margin-bottom: 30px; }
.footer-social-btn {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--gray);
    transition: var(--transition);
}
.footer-social-btn svg { width: 20px; height: 20px; }
.footer-social-logo { width: 20px; height: 20px; object-fit: contain; }
.footer-social-btn:hover { border-color: var(--red); color: var(--red); box-shadow: var(--glow); transform: translateY(-3px); }
.footer-links {
    display: flex; justify-content: center; gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.footer-links a { font-size: 0.8rem; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; transition: var(--transition); }
.footer-links a:hover { color: var(--red); }
.footer-line { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-credits { font-size: 0.8rem; color: var(--gray2); line-height: 1.8; }
.footer-credits.small { font-size: 0.72rem; margin-top: 4px; }
.footer-dev { font-size: 0.75rem; color: var(--gray); letter-spacing: 0.5px; }
.dev-name { 
    color: #C4872A; 
    font-weight: 600; 
    transition: all 0.3s ease;
}

.dev-name:hover {
    color: #e00e2f;
    text-decoration: underline;
}

/* ============ HYPE METER ============ */
.hype-meter-trigger-section {
    background: linear-gradient(135deg, rgba(29,25,23,1) 0%, rgba(42,35,30,1) 100%);
    border-top: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
    padding: 40px 24px;
}

.hype-meter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(196, 135, 42, 0.15), rgba(224, 14, 47, 0.1));
    border: 2px solid rgba(196, 135, 42, 0.5);
    border-radius: 16px;
    padding: 24px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.hype-meter-card:hover {
    border-color: #C4872A;
    background: linear-gradient(135deg, rgba(196, 135, 42, 0.25), rgba(224, 14, 47, 0.15));
    box-shadow: 0 12px 40px rgba(196, 135, 42, 0.3);
    transform: translateY(-4px);
}

.hype-card-icon {
    font-size: 2.8rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hype-card-text {
    flex: 1;
    text-align: left;
}

.hype-card-text h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.hype-card-text p {
    font-size: 0.9rem;
    color: #aaa;
    margin: 4px 0 0;
}

.hype-card-arrow {
    font-size: 1.8rem;
    color: #C4872A;
    transition: transform 0.3s ease;
}

.hype-meter-card:hover .hype-card-arrow {
    transform: translateX(8px);
}

/* HYPE METER MODAL */
.hype-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hype-modal.active {
    display: flex;
}

.hype-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.hype-modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    background: linear-gradient(135deg, rgba(29,25,23,1) 0%, rgba(42,35,30,1) 100%);
    border: 2px solid rgba(196, 135, 42, 0.4);
    border-radius: 20px;
    padding: 40px;
    overflow-y: auto;
    animation: modalSlideIn 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.hype-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(224, 14, 47, 0.8);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hype-modal-close:hover {
    background: #e00e2f;
    transform: rotate(90deg) scale(1.1);
}

.hype-modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    letter-spacing: 0.08em;
    color: #fff;
    margin: 0 0 10px;
}

.hype-modal-divider {
    width: 60px;
    height: 3px;
    background: #C4872A;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.hype-meter-section {
    background: linear-gradient(135deg, rgba(29,25,23,1) 0%, rgba(42,35,30,1) 100%);
    border-top: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
    padding: 60px 24px;
}

.hype-meter-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.hype-form-wrap, .hype-feed-wrap {
    background: rgba(17,17,17,0.8);
    border: 1px solid rgba(196,135,42,0.2);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.hype-subtitle {
    font-size: 1.1rem;
    color: var(--red);
    margin-bottom: 20px;
    text-align: center;
}

/* Star Rating */
.star-rating-group {
    margin-bottom: 25px;
}

.star-rating-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-direction: row-reverse;
}

.star-rating input {
    display: none;
}

.star {
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.2s ease;
    filter: grayscale(100%);
}

.star:hover, .star-rating input:checked ~ label {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.star-rating input:checked ~ label {
    animation: starBurst 0.4s ease;
}

@keyframes starBurst {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1.1); }
}

/* Message Input */
/* Name Input */
.name-group {
    margin-bottom: 24px;
}

.name-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Message Input */
.message-group {
    position: relative;
    margin-bottom: 24px;
}

.message-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hype-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(21,21,21,0.9);
    border: 1px solid rgba(196,135,42,0.3);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.hype-input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 15px rgba(196,135,42,0.3);
    background: rgba(21,21,21,1);
}

.hype-input::placeholder {
    color: var(--gray2);
}

.hype-textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.6;
}

.char-count {
    position: absolute;
    bottom: -22px;
    right: 8px;
    font-size: 0.75rem;
    color: var(--gray2);
}

/* Submit Button */
.btn-hype-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--red) 0%, #d4a574 100%);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 30px;
}

.btn-hype-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196,135,42,0.4);
}

.btn-hype-submit:active {
    transform: translateY(0);
}

/* Hype Stats */
.hype-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-box {
    flex: 1;
    background: rgba(196,135,42,0.1);
    border: 1px solid rgba(196,135,42,0.2);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.stat-title {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    color: var(--red);
    font-weight: bold;
}

/* Hype Header & Stats Compact */
.hype-header {
    margin-bottom: 20px;
}

.hype-stats-compact {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.stat-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-compact .stat-value {
    font-size: 1.4rem;
    color: var(--red);
}

.stat-compact .stat-label {
    font-size: 0.7rem;
    color: var(--gray2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hype Feed */
.hype-feed {
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hype-feed::-webkit-scrollbar {
    width: 6px;
}

.hype-feed::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 3px;
}

.hype-feed::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

.hype-item {
    background: rgba(42,35,30,0.6);
    border-left: 3px solid var(--red);
    padding: 16px;
    border-radius: 8px;
    animation: slideIn 0.3s ease;
    display: flex;
    gap: 14px;
}

.hype-item-avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C4872A 0%, #d4a574 100%);
    border: 2px solid rgba(196,135,42,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.hype-item-content {
    flex: 1;
    min-width: 0;
}

.hype-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.hype-item-user {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.hype-item-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.hype-item-rating {
    color: var(--gold);
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}

.hype-item-date {
    font-size: 0.75rem;
    color: var(--gray2);
    text-align: right;
    white-space: nowrap;
}

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

.hype-item-message {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.5;
    word-break: break-word;
}

.hype-empty {
    text-align: center;
    color: var(--gray2);
    padding: 30px 20px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .hype-meter-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hype-meter-section {
        padding: 40px 24px;
    }
    
    .hype-form-wrap, .hype-feed-wrap {
        padding: 24px;
    }
    
    .star-rating .star {
        font-size: 1.6rem;
    }
}

/* ============ SOUND BUTTON ============ */
.sound-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 56px !important;
    height: 56px !important;
    background: var(--red) !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999 !important;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(196, 135, 42, 0.5);
    animation: pulseSoundBtn 2.5s ease-in-out infinite;
    visibility: visible !important;
    opacity: 1 !important;
}
.sound-btn:hover { 
    transform: scale(1.12); 
    box-shadow: 0 6px 30px rgba(196, 135, 42, 0.8) !important; 
    animation: none;
}
.sound-icon { 
    width: 24px !important; 
    height: 24px !important; 
    fill: white !important;
}

@keyframes pulseSoundBtn {
    0%, 100% { box-shadow: 0 4px 20px rgba(196, 135, 42, 0.5); }
    50% { box-shadow: 0 4px 40px rgba(196, 135, 42, 0.9), 0 0 0 10px rgba(196, 135, 42, 0.15); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .cast-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .cast-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .cast-grid-new { grid-template-columns: repeat(3, 1fr); }
    .crew-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .cast-grid { grid-template-columns: repeat(1, 1fr); max-width: 360px; margin: 0 auto; }
    .cast-grid-new { grid-template-columns: repeat(2, 1fr); }
    .crew-grid { grid-template-columns: 1fr; }
    .crew-img-wrap { width: 120px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .videos-grid { grid-template-columns: 1fr; }
    .events-layout { grid-template-columns: 1fr; }
    .countdown { gap: 10px; }
    .countdown-box { min-width: 70px; padding: 12px 14px; }
    .hype-modal-content { padding: 30px 24px; }
    .hype-modal-title { font-size: 1.6rem; }
    .hype-meter-container { grid-template-columns: 1fr; gap: 25px; }
    .hype-card-text h3 { font-size: 1.1rem; }
    .hype-card-text p { font-size: 0.8rem; }
    .count-num { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .info-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .countdown { gap: 8px; }
    .countdown-box { min-width: 60px; padding: 10px 10px; }
    .count-num { font-size: 1.6rem; }
    .trailer-label { font-size: 1.5rem; }
    
    /* Enhanced scroll indicator for mobile */
    .hero-scroll-indicator {
        bottom: 10px;
    }
    
    .scroll-text {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.8);
        animation: scrollTextMobileBounce 2s ease-in-out infinite;
    }
    
    @keyframes scrollTextMobileBounce {
        0%, 100% { transform: translateY(0); opacity: 0.8; }
        50% { transform: translateY(-6px); opacity: 1; }
    }
    
    .scroll-mouse {
        width: 24px;
        height: 38px;
        border-width: 2px;
    }
}

.footer-credits {
  opacity: 0.7;
  transition: 0.3s;
}

.footer-credits:hover {
  opacity: 1;
}