:root {
    --bg-color: #031403;
    --primary-green: #00ff41;
    --dark-green: #051a05;
    --text-color: #ffffff;
    --spotlight-size: 350px;
    --marquee-speed: 25s;
}

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

body {
    font-family: 'Oswald', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(3, 20, 3, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 255, 65, 0.15);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px; /* Adjust height based on navbar */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 255, 65, 0.8));
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--primary-green);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-btn {
    background: var(--primary-green);
    color: #000;
    border: none;
    padding: 10px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}

.cta-btn:hover {
    background: #ffffff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.cta-btn:active {
    transform: translateY(1px);
}

.twitter-btn {
    color: var(--text-color);
    width: 32px;
    height: 32px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.twitter-btn:hover {
    color: var(--primary-green);
    transform: scale(1.1);
}

/* Global Fixed Background */
.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: var(--dark-green);
    z-index: -1;
    pointer-events: none; /* Crucial so it doesn't block scroll/clicks */
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg) scale(1.5);
    width: 250vw;
}

/* Faint background text */
.faint .marquee span {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05);
}

/* Bright foreground text */
.bright .marquee span {
    color: #ffffff;
    -webkit-text-stroke: 0;
    text-shadow: 0 0 40px rgba(0, 255, 65, 0.8), 0 0 20px rgba(0, 255, 65, 1);
}

.spotlight-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    -webkit-mask-image: radial-gradient(circle var(--spotlight-size) at var(--x, -1000px) var(--y, -1000px), black 0%, transparent 100%);
    mask-image: radial-gradient(circle var(--spotlight-size) at var(--x, -1000px) var(--y, -1000px), black 0%, transparent 100%);
}

.hero-content {
    position: absolute;
    width: 200%;
    left: -50%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.marquee {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    flex-shrink: 0;
}

.marquee span {
    font-size: 12rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 50px;
    line-height: 1;
}

.marquee-left .marquee-track {
    animation: scroll-left var(--marquee-speed) linear infinite;
}

.marquee-right .marquee-track {
    animation: scroll-right var(--marquee-speed) linear infinite;
}

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

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

/* Main Scrollable Content */
.scroll-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Hero Section (First Fold) */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Center Logo and Glowing Text */
.center-logo-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* Let mouse interact with spotlight beneath if needed */
    margin-top: 8vh;
    width: 100%;
}

.glowing-him-text {
    font-size: 22rem;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    z-index: 1;
    letter-spacing: -5px;
    text-align: center;
    width: 100%;
}

.character-wrapper {
    width: 100%;
    max-width: 800px;
    z-index: 2;
    position: relative;
    background: radial-gradient(circle, rgba(0,255,65,0.2) 0%, transparent 60%);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 4s ease-in-out infinite;
}

.center-character-img {
    width: auto;
    height: auto;
    max-height: 65vh;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 255, 65, 0.6));
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Quotes Overlay */
.quotes-overlay {
    position: absolute;
    top: 100px; /* Just below navbar */
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    pointer-events: none;
    text-align: center;
    width: 90%;
}

#quote-text {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-green);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
    letter-spacing: 4px;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    text-transform: uppercase;
}

#quote-text.visible {
    opacity: 1;
}

/* Glassmorphism Bar Sections */
.glass-section {
    width: 100%;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-bar {
    background: rgba(5, 26, 5, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 255, 65, 0.05);
}

.glass-bar.large-bar {
    max-width: 1200px;
    text-align: left;
}

.glass-bar h2 {
    font-size: 6rem;
    line-height: 0.9;
    color: var(--text-color);
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.glass-bar p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 1px;
}

.section-header {
    margin-bottom: 20px;
}

.section-num {
    font-family: monospace;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
    font-size: 1.1rem;
}

/* Info Grid & Buy Grid */
.info-grid, .buy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.info-card {
    border-top: 1px solid rgba(0, 255, 65, 0.3);
    padding-top: 20px;
}

.card-num, .step-num {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.card-title, .step-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: var(--text-color);
}

/* Aura Meter List */
.aura-list {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.aura-item {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: monospace;
    font-size: 1.2rem;
}

.aura-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aura-desc {
    color: rgba(255, 255, 255, 0.8);
}

.aura-score {
    font-weight: bold;
}
.aura-score.peak, .aura-score.high, .aura-score.med, .aura-score.redeem { color: var(--primary-green); }
.aura-score.low, .aura-score.very-low { color: #ff3333; }

/* How to Buy Grid Specifics */
.buy-grid {
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 0;
}
.buy-step {
    padding: 40px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.buy-step:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.1);
}

.highlight {
    color: var(--primary-green);
    text-decoration: underline;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 40px;
    position: relative;
    z-index: 10;
}

.gallery-title {
    text-align: center;
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
    letter-spacing: 2px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    background-color: rgba(5, 26, 5, 0.6);
    backdrop-filter: blur(10px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: filter 0.5s ease;
    filter: grayscale(100%) sepia(50%) hue-rotate(70deg) contrast(1.2);
    display: block;
}

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

.gallery-item:hover img {
    filter: grayscale(0%) sepia(0%);
}

/* Download Button Overlay */
.download-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 255, 65, 0.8);
    color: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

.gallery-item:hover .download-btn {
    opacity: 1;
    transform: translateY(0);
}

.download-btn:hover {
    background: #ffffff;
    transform: scale(1.1) !important;
}

.download-btn svg {
    width: 20px;
    height: 20px;
}

/* Music Player */
.music-player {
    position: fixed;
    bottom: 40px;
    left: 20px;
    background: rgba(5, 26, 5, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 150px;
}

.player-info {
    text-align: center;
    color: var(--primary-green);
    font-family: monospace;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.player-controls {
    display: flex;
    gap: 10px;
}

.player-controls button {
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s ease, transform 0.2s ease;
}

.player-controls button:hover {
    color: var(--primary-green);
    transform: scale(1.1);
}

.player-controls svg {
    width: 24px;
    height: 24px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.volume-control svg {
    width: 16px;
    height: 16px;
    color: var(--text-color);
}

#volume-slider {
    width: 100%;
    accent-color: var(--primary-green);
    cursor: pointer;
}

/* For smaller screens */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide on very small screens or make a hamburger */
    }
    .glowing-him-text {
        font-size: 10rem;
    }
    .character-wrapper {
        width: 250px;
        height: 250px;
    }
    .glass-bar h2 {
        font-size: 2.5rem;
    }
    .glass-bar p {
        font-size: 1.2rem;
    }
    .marquee span {
        font-size: 6rem;
    }
    .gallery-title {
        font-size: 2.5rem;
    }
    #quote-text {
        font-size: 1.2rem;
    }
    .navbar {
        padding: 15px 20px;
    }
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    .music-player {
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        width: auto;
        padding: 10px 20px;
    }
}
