:root {
    --bg-color: #000000;
    --card-bg: #0a0a0a;
    --input-bg: #1a1a1a;
    --accent-red: #FF0000;
    /* Neon red */
    --hover-red: #cc0000;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --border-color: #333333;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.fade-text {
    transition: opacity 0.3s ease;
    opacity: 1;
}

.fade-text.hiding {
    opacity: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Typography Utilities */
.text-white {
    color: var(--text-white);
}

.text-red {
    color: var(--accent-red);
}

.text-gray {
    color: var(--text-gray);
}

.italic {
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.btn-pill {
    background-color: var(--accent-red);
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.btn-pill:hover {
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    transform: translateY(-1px);
}

.btn-red {
    background-color: var(--accent-red);
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    border: none;
}

.btn-red:hover {
    background-color: var(--hover-red);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.btn-full {
    width: 100%;
}

.btn-icon svg {
    margin-right: 0.5rem;
}

/* Header */
.header {
    padding: 1rem 0;
    /* Reduced padding for fixed header */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    /* Increased z-index */
    background-color: rgba(0, 0, 0, 0.9);
    /* Semi-transparent black */
    backdrop-filter: blur(10px);
    /* Glass effect */
    border-bottom: 1px solid #111;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    /* Adjust based on actual logo ratio */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lang-selector {
    color: #666;
    /* Darker gray for inactive */
    font-size: 0.75rem;
    /* Smaller size */
    font-weight: 600;
    letter-spacing: 1px;
}

.lang-selector span {
    cursor: pointer;
    transition: color 0.3s ease;
}

.lang-selector span:hover {
    color: #999;
}

.lang-selector .active {
    color: #bbb;
}

.lang-selector .divider {
    margin: 0 0.3rem;
    opacity: 0.5;
}

/* Navigation */
#navigation {
    display: flex;
    align-items: center;
}

.navigation-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navigation-menu li {
    position: relative;
}

.navigation-menu>li>a {
    color: var(--text-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 10px 0;
    display: block;
}

.navigation-menu>li>a:hover {
    color: var(--text-gray);
}

/* Submenu */
.has-submenu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #222;
    list-style: none;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #bbb;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: 0.2s;
}

.submenu li a:hover {
    color: #fff;
    background: #111;
    padding-left: 1.8rem;
}

/* Mobile Toggle */
.navbar-toggle {
    display: none;
    cursor: pointer;
    width: 25px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.navbar-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin-bottom: 5px;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .navbar-toggle {
        display: block;
    }

    #navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        transform: translateX(-100%);
        transition: 0.3s;
        z-index: 999;
    }

    #navigation.active {
        transform: translateX(0);
    }

    .navigation-menu {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .navigation-menu>li>a {
        font-size: 1.2rem;
    }
}

.header-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-social a {
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
}

.nav-social a:hover {
    opacity: 1;
}

.nav-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn-lang {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-lang .nav-desk {
    display: none;
    /* Hide on mobile by default or based on design */
}

@media (min-width: 768px) {
    .btn-lang .nav-desk {
        display: inline;
        color: #888;
        font-weight: 300;
        margin-right: 5px;
    }
}

.btn-partners {
    color: #fff;
    font-size: 0.75rem;
    /* Small text */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* Not too much spacing */
    margin-right: 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-partners:hover {
    opacity: 1;
    text-decoration: underline;
}

/* --- SPLIT LAYOUT (Standardized Hero) --- */
.split-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* LEFT PANEL - CONTENT */
.split-content {
    flex: 1;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Hero Offset Match: Explicit top alignment to match Partners */
    padding: 180px 12vw 60px 12vw;
    overflow-y: auto;
    /* ALIGNMENT: DEEP GRID 12vw */
}

.content-wrapper {
    max-width: 600px;
    margin: 0;
    /* ALIGNMENT: Left Align (Removed auto) */
    width: 100%;
}

/* RIGHT PANEL - VISUAL */
.split-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100vh;
    margin: 0;
    padding: 0;
    z-index: 0;
}

/* Gradient removed as per request */

/* HERO TEXT STYLES */
.hero-text {
    margin-bottom: 40px;
}

.eyebrow-container {
    margin-bottom: 2rem;
}

.eyebrow {
    color: var(--accent-red);
    font-size: 1.2rem;
    /* Increased from 0.8rem */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.3rem 0;
    border-top: 1px solid var(--accent-red);
    border-bottom: 1px solid var(--accent-red);
    display: inline-block;
}



.headline {
    margin-bottom: 2rem;
}

.headline h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: -2px;
}

.body-copy {
    color: var(--text-white);
    margin: 2rem 0 3rem;
    max-width: 400px;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
}

/* MOBILE RESPONSIVE SPLIT */
@media (max-width: 900px) {
    .split-container {
        flex-direction: column-reverse;
    }

    .split-visual {
        height: 50vh;
        /* Visible on mobile */
        min-height: unset;
        flex: none;
        background-position: top center;
    }

    .split-content {
        padding: 60px 20px 40px 20px;
        /* ALIGNMENT: 20px Mobile Padding */
    }

    .headline h1 {
        font-size: 3rem;
        /* ALIGNMENT: Match Partners Page (was 3.5rem) */
    }
}

/* Verification Section */
.verification {
    padding: 3rem 0;
    background-color: #020202;
    /* Very subtle difference */
}

/* HERO VERIFICATION (Also target of anchor link) */
.hero-verification {
    margin-top: 2rem;
    scroll-margin-top: 120px;
    /* Header Offset */
}

.verify-header {
    text-align: left;
    margin-bottom: 3rem;
}

.verification-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.verification-header p {
    color: var(--text-gray);
    font-weight: 300;
}

.verification-card {
    background-color: var(--card-bg);
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #111;
    position: relative;
    z-index: 10;
}

.code-label {
    display: block;
    font-family: monospace;
    color: #555;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.input-wrapper {
    display: flex;
    margin-bottom: 2rem;
    background: var(--input-bg);
    border-radius: 8px;
    padding: 0.5rem;
    border: 1px solid #222;
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-white);
    padding: 0.8rem 1rem;
    font-size: 1.2rem;
    font-family: monospace;
    outline: none;
    letter-spacing: 2px;
}

.input-wrapper input::placeholder {
    color: #444;
}

.verification-result {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    min-height: 20px;
    font-weight: 600;
}

.result-success {
    color: #18B84B;
}

.result-error {
    color: #FF0000;
}

.result-warning {
    color: #FFAA00;
}

.qr-btn {
    background: #252525;
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.qr-btn:hover {
    background: #333;
}

/* Quote Section */
.quote {
    padding: 3rem 0;
    text-align: center;
}

.quote-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.quote-circle {
    width: 60px;
    height: 60px;
    background-color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-mark {
    color: var(--accent-red);
    font-size: 2.5rem;
    font-family: serif;
    line-height: 1;
    margin-top: 10px;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    /* Slightly larger */
    font-weight: 400;
    /* Regular, not bold */
    max-width: 900px;
    margin: 2rem auto;
    /* Spacing for top/bottom lines */
    line-height: 1.2;
}

.quote-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-red);
    margin: 0 auto;
}

.font-regular {
    font-weight: 400 !important;
}

.strong {
    font-weight: 700 !important;
}



/* Footer */
.footer {
    padding: 3rem 0 6rem 0;
    /* Reduced top/bottom padding */
    border-top: 1px solid #111;
    margin-top: 0;
    background-color: #050505;
}

.footer-container {
    display: flex;
    justify-content: flex-start;
    /* Left align */
    text-align: left;
    /* Left align */
    padding: 0 12vw;
    /* Deep Grid Alignment */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align */
    width: 100%;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 1.5rem;
    /* Reduced padding */
    width: 100%;
    margin-top: 1.5rem;
    /* Reduced margin */
}

.footer-copy {
    text-align: left;
    /* Left align */
    color: #444;
    font-size: 12px;
}

.footer-text {
    color: #444;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    /* Left align */
    line-height: 1.6;
}

.footer-text span {
    display: inline-block;
}

.mobile-break {
    display: none;
}

/* Responsive */
@media (max-width: 900px) {
    .desktop-separator {
        display: none;
    }

    .mobile-break {
        display: block;
        margin-bottom: 0.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .headline h1 {
        font-size: 3.5rem;
    }

    .eyebrow-container {
        display: flex;
        justify-content: center;
    }

    .hero .body-copy {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-right {
        align-items: center;
    }

    .contact-info {
        text-align: center;
    }
}

/* Legal Warning Bar */
.legal-warning {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    color: #000000;
    text-align: center;
    padding: 1rem;
    z-index: 1000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-top: 4px solid var(--accent-red);
}

.legal-warning p {
    margin: 0;
}

/* Adjust footer to not be covered */
/* .footer {
    padding-bottom: 5rem;
} REMOVED: Handled in main .footer block */

/* --- CAROUSEL BLOCK --- */
.block-carousel {
    padding: 4rem 0;
    background: #000;
}

.carousel-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    margin: 0 -20px;
    /* Bleed on mobile */
    padding: 0 20px 20px 20px;
}

.carousel-track {
    display: inline-flex;
    gap: 20px;
}

.carousel-slide {
    width: 300px;
    /* Fixed width cards */
    height: 400px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid #222;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

/* --- VIDEO BLOCK --- */
.block-video {
    padding: 4rem 0;
    background: #050505;
    border-bottom: 1px solid #111;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border: 1px solid #222;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

/* --- UTILITIES FOR JS RENDERER --- */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.feature-block {
    padding: 60px 0;
    border-bottom: 1px solid #222;
}

.feature-body {
    color: #888;
    max-width: 600px;
    margin: 20px auto;
}

.placeholder-container {
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.video-fallback {
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* --- HERO VERIFICATION --- */
.hero-verification {
    margin-top: 3rem;
    padding-top: 2rem;
    max-width: 450px;
}

.verify-desc {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.verify-title {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.verify-title.with-lines {
    border-top: 1px solid var(--accent-red);
    border-bottom: 1px solid var(--accent-red);
    display: inline-block;
    padding: 2px 0;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-size: 1.5rem;
    /* Slightly smaller to match elegant look */
}

/* --- SOCIAL PREVIEW BLOCK --- */
.social-preview {
    padding: 3rem 0;
    border-top: 1px solid #111;
}

.social-preview .container {
    max-width: 100%;
    /* Unlock width */
    padding: 0 12vw;
    /* ALIGNMENT: Match header DEEP GRID */
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.social-header {
    margin-bottom: 2rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.social-handle-link {
    /* Styles moved/enforced from JS inline to check priority, but defining hover here */
    color: #fff;
    transition: color 0.3s ease;
}

.social-handle-link:hover {
    color: var(--accent-red) !important;
}

.social-posts.curated-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    /* Increased gap for cleaner look */
    width: 100%;
}

.social-post-item.square-card,
.social-post-item {
    aspect-ratio: 1 / 1 !important;
    width: 100%;
    position: relative;
    border: 1px solid #222;
    overflow: hidden;
    display: block;
    cursor: pointer;
    background: #000;
}

/* Remove old aspect ratios and enforce on all */
.social-post-item.instagram,
.social-post-item.tiktok,
.social-post-item.youtube {
    aspect-ratio: 1 / 1 !important;
}

.social-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.social-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: all 0.4s ease-in-out;
}

.social-post-item:hover .social-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.platform-badge-small {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    opacity: 0.7;
    pointer-events: none;
    fill: #fff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
}

@media (max-width: 900px) {
    .social-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.verify-form-inline label {
    display: block;
    color: #444;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.verify-form-inline .input-group input {
    width: 100%;
    background: #000;
    border: 1px solid #333;
    padding: 1rem;
    color: #fff;
    font-family: monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    outline: none;
    transition: 0.3s;
}

.verify-form-inline .input-group input:focus {
    border-color: #555;
}

.verify-form-inline .btn-red {
    width: 100%;
    border-radius: 0;
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* Typography Helpers */
.text-red {
    color: var(--accent-red) !important;
}

.italic {
    font-style: italic !important;
}