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

html, body {
    min-height: 100%;
    width: 100%;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* ── Loading Screen ── */
.loading-screen {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.loading-screen.hidden { opacity: 0; pointer-events: none; }
.loader { width: 200px; height: 2px; background: #111; overflow: hidden; }
.loader-bar { height: 100%; width: 0; background: #fff; animation: load 1.5s ease forwards; }
@keyframes load { to { width: 100%; } }
.loader-text { margin-top: 1rem; letter-spacing: 0.4em; font-size: 0.75rem; color: rgba(255,255,255,0.6); font-family: 'Bebas Neue', sans-serif; }

/* ── Cursor ── */
.cursor-glow {
    position: fixed;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: transform 0.1s ease;
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0 2rem;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-logo .logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.4);
}
.nav-menu { display: flex; gap: 2rem; }
.nav-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-link:hover { color: #fff; }
.nav-icons { display: flex; gap: 1rem; align-items: center; }
.nav-icon {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 0.4rem;
    position: relative;
    transition: color 0.2s;
}
.nav-icon:hover { color: #fff; }
.cart-count {
    position: absolute;
    top: -2px; right: -2px;
    background: #fff;
    color: #000;
    font-size: 0.6rem;
    font-weight: 700;
    width: 14px; height: 14px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger { width: 22px; height: 2px; background: #fff; display: block; }
.scroll-progress-bar {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    background: #fff;
    width: 0;
    transition: width 0.1s linear;
}

/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 70px;
}

/* Banner image fills the hero */
.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('images/voidwalker-banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.15) 40%,
        rgba(0,0,0,0.65) 80%,
        rgba(0,0,0,0.95) 100%
    );
}

.stars-container, .particles { position: absolute; inset: 0; pointer-events: none; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    width: 100%;
}

.brand-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
}

.hero-logo { margin-bottom: 1.5rem; }

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 12vw, 9rem);
    letter-spacing: 0.15em;
    line-height: 1;
    color: #fff;
    text-shadow:
        0 0 40px rgba(255,255,255,0.5),
        0 2px 8px rgba(0,0,0,0.9),
        0 4px 20px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
}
.char { display: inline-block; }

.hero-subtitle {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 6px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.8);
    margin-bottom: 2.5rem;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
    padding: 0.9rem 2.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-primary {
    background: #fff;
    color: #000;
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}
.btn-primary:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.6);
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 2;
}
.scroll-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    animation: scrollBounce 1.5s ease-in-out infinite;
}
.scroll-dot:nth-child(2) { animation-delay: 0.2s; }
.scroll-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes scrollBounce { 0%,100% { opacity: 0.3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(4px); } }

/* ── Shared Section Styles ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* ── About Section ── */
.about {
    background: #050505;
    padding: 6rem 0;
}
.about-content { max-width: 700px; margin: 0 auto; }
.about-title { text-align: left; margin-bottom: 2rem; }
.about-text { display: flex; flex-direction: column; gap: 1.2rem; }
.about-paragraph {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.about-paragraph.quote {
    border-left: 2px solid rgba(255,255,255,0.3);
    padding-left: 1.5rem;
    font-style: italic;
    color: rgba(255,255,255,0.7);
}

/* ── Featured Collection ── */
.featured-collection {
    background: #0a0a0a;
    padding: 6rem 0;
}
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.collection-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: pointer;
}
.collection-item:hover { border-color: rgba(255,255,255,0.25); transform: translateY(-4px); }
.collection-item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.collection-info { padding: 1.2rem; }
.collection-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 0.5rem;
}
.collection-info p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ── Philosophy Section ── */
.philosophy {
    background: #000;
    padding: 6rem 2rem;
}
.philosophy-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.philosophy-emblem {
    display: flex;
    justify-content: center;
    align-items: center;
}
.philosophy-emblem .brand-logo-img {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.2));
}
.philosophy-text { display: flex; flex-direction: column; gap: 1.5rem; }
.philosophy-statement h3 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: #fff;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    opacity: 0.9;
    transition: opacity 0.3s;
}
.philosophy-statement:hover h3 { opacity: 1; }

/* ── Timeline Section ── */
.timeline-section {
    background: #050505;
    padding: 6rem 0;
}
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative;
}
.timeline-item::before {
    content: attr(data-year);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    text-align: right;
    padding-top: 0.1rem;
}
.timeline-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.4rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.timeline-content p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Parallax Section ── */
.parallax-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.parallax-content { position: relative; z-index: 2; text-align: center; padding: 2rem; }
.parallax-quote {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #fff;
    line-height: 1.6;
    text-shadow:
        0 2px 8px rgba(0,0,0,0.9),
        0 0 40px rgba(255,255,255,0.1);
    letter-spacing: 0.05em;
}
.parallax-particles { position: absolute; inset: 0; pointer-events: none; }

/* ── Community Section ── */
.community {
    background: #0a0a0a;
    padding: 6rem 0;
}
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.community-post {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem;
    transition: border-color 0.3s;
}
.community-post:hover { border-color: rgba(255,255,255,0.2); }
.community-post p { color: rgba(255,255,255,0.75); line-height: 1.6; font-size: 0.9rem; }

/* ── Sign Up Section ── */
.signup {
    background: #050505;
    padding: 6rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.signup-content { max-width: 500px; margin: 0 auto; }
.signup-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.2em;
    color: #fff;
    margin-bottom: 0.75rem;
}
.signup-content > p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}
.signup-form .form-group { display: flex; gap: 0.5rem; }
.signup-form input[type="email"] {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
}
.signup-form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.signup-form input[type="email"]:focus { border-color: rgba(255,255,255,0.4); }
.form-message { margin-top: 0.75rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ── Footer ── */
.footer {
    background: #000;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.footer-section h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: #fff;
    margin-bottom: 1rem;
}
.footer-section p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.6; }
.footer-section ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-section ul li a, .social-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-section ul li a:hover, .social-links a:hover { color: #fff; }
.social-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 1.5rem;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.back-to-top {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    width: 36px; height: 36px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}
.back-to-top:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ── Navigation Drawer ── */
.nav-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100%;
    background: #0a0a0a;
    border-left: 1px solid rgba(255,255,255,0.1);
    z-index: 1100;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
}
.nav-drawer.open { right: 0; }
.drawer-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
}
.drawer-nav { display: flex; flex-direction: column; gap: 1.5rem; }
.drawer-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    transition: color 0.2s;
}
.drawer-link:hover { color: #fff; }

/* ── Cart Drawer ── */
.cart-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: min(380px, 90vw);
    height: 100%;
    background: #0a0a0a;
    border-left: 1px solid rgba(255,255,255,0.1);
    z-index: 1100;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: #fff;
}
.cart-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.4rem;
    cursor: pointer;
}
.cart-items { flex: 1; padding: 1.5rem; overflow-y: auto; }
.empty-cart { color: rgba(255,255,255,0.4); text-align: center; margin-top: 2rem; }
.cart-footer { padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}
.checkout-btn { width: 100%; }
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

/* ── Animation Utilities ── */
.fade-in-up { animation: fadeInUp 0.7s ease forwards; }
.fade-in-left { opacity: 0; transform: translateX(-20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right { opacity: 0; transform: translateX(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible, .fade-in-right.visible { opacity: 1; transform: none; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── Responsive ── */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .nav-toggle { display: flex; }
    .philosophy-grid { grid-template-columns: 1fr; gap: 2rem; }
    .philosophy-emblem .brand-logo-img { width: 150px; height: 150px; }
    .signup-form .form-group { flex-direction: column; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .timeline-item { grid-template-columns: 60px 1fr; }
}
@media (max-width: 480px) {
    .footer-content { grid-template-columns: 1fr; }
}

/* ── Background Music Toggle ── */
.audio-toggle {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1200;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.audio-toggle:hover {
    background: rgba(0,0,0,0.8);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    transform: scale(1.06);
}
.audio-toggle .audio-icon { display: none; line-height: 0; }
.audio-toggle .audio-icon-on { display: flex; }
.audio-toggle.muted .audio-icon-on { display: none; }
.audio-toggle.muted .audio-icon-off { display: flex; }
.audio-toggle.muted { color: rgba(255,255,255,0.45); }

@media (max-width: 480px) {
    .audio-toggle { bottom: 1rem; left: 1rem; width: 42px; height: 42px; }
}
