/* ========================
   VARIABLES & RESET
======================== */
:root {
    --lime: #C2E812;
    --lime-dark: #9BBF00;
    --dark: #2A2A2A;
    --darker: #1E1E1E;
    --text-light: rgba(255,255,255,0.92);
    --text-dark: #222;
    --accent: #FF4444;
    --font-display: 'Fredoka', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --header-height: 70px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ========================
   HEADER / NAV
======================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(20px, 5vw, 60px);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header-inner {
    width: 100%;
    max-width: 1920px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: opacity 0.2s;
}

.logo img {
    width: 240px;
    height: 40px;
}

.logo:hover {
    opacity: 0.85;
    color: white;
}

.logo span {
    color: var(--lime);
}

.social-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-1px) scale(1.12);
}

/* ========================
   HERO
======================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--lime);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Fallback gradient overlay (also tints the video) */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(180, 180, 180, 0.65) 0%,
        rgba(120, 120, 120, 0.55) 50%,
        rgba(70, 70, 70, 0.45) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: clamp(100px, 15vh, 160px) clamp(20px, 8vw, 120px);
}

.hero-tagline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    line-height: 1.08;
    color: #10E9F6;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    max-width: 620px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero-tagline em {
    font-style: normal;
    color: #FFFF34;
}

.hero-blurb {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    line-height: 1.65;
    color: white;
    max-width: 580px;
    margin-bottom: 36px;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,1);
    padding: 8px;
}

.btn-trailer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #FA2E7C;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-trailer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    background: #EA3DD0;
    color: white;
}

.btn-trailer i {
    font-size: 0.85rem;
}

/* ========================
   ARTWORK COLLECTIONS
======================== */
.artwork-section {
    background: #FA2B7A;
    padding: 60px 0 50px;
    overflow: hidden;
}

.artwork-section h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 32px;
    color: #FFF;
}

.artwork-marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    gap: 16px;
}

.artwork-marquee:hover {
    animation-play-state: paused;
}

.artwork-card {
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    border-radius: 14px;
    border: 3px solid black;
    overflow: hidden;
    background: #f0f0f0;
    box-shadow: 0 3px 14px rgba(0,0,0,0.8);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.artwork-card:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.artwork-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

/* ========================
   BUY NOW
======================== */
.buy-section {
    background: #e3e3e3;
    padding: 60px 20px;
    text-align: center;
}

.buy-section h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 44px;
    color: var(--text-dark);
}

.store-links {  
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
    max-width: 900px;
    margin: 0 auto;
}

.store-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 14px;
    border-radius: 14px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    background: transparent;
}

.hide {
  display: none;
}

.store-link:hover {
    background: rgba(0,0,0,0.06);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.store-link img.store-icon {
    height: 64px;
    width: auto;
}

/* ========================
   FOOTER
======================== */
.site-footer {
    background: var(--darker);
    color: rgba(255,255,255,0.5);
    padding: 36px 20px;
    text-align: center;
    font-size: 0.88rem;
}

.site-footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer a:hover {
    color: var(--lime);
}

.footer-brand {
    font-family: var(--font-display);
    font-weight: 600;
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    margin-bottom: 6px;
}

/* ========================
   VIDEO MODAL
======================== */
.video-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.video-modal-overlay.active {
    display: flex;
}

.video-modal-inner {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-modal-inner iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.modal-close:hover {
    opacity: 1;
}

/* ========================
   ANIMATIONS
======================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.12s; }
.fade-up.delay-2 { transition-delay: 0.24s; }
.fade-up.delay-3 { transition-delay: 0.36s; }

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 768px) {
    .hero-content {
        padding: 100px 24px 60px;
    }

    .artwork-card {
        width: 160px;
        height: 160px;
        border-radius: 10px;
    }

    .store-link img.store-icon {
        height: 64px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 56px;
    }

    .social-links a {
        font-size: 1.1rem;
    }

    .artwork-card {
        width: 140px;
        height: 140px;
        border-radius: 10px;
    }

    .store-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .store-link {
        flex: 0 0 auto;
    }

    .store-link img.store-icon {
        height: 64px;
    }
}