:root {
    /* Light Mode Default */
    --color-bg: #FFFFFF;
    --color-bg-secondary: #F8FAFC;
    --color-text: #0A1A2F;
    --color-text-muted: #64748B;
    --color-primary: #00F0FF;
    /* Neon Cyan remains as accent */
    --color-primary-text: #005f66;
    /* Darker for light mode visibility if needed, or keep white on dark bg components */
    --color-accent: #0A1A2F;
    --color-white: #FFFFFF;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --spacing-container: 1200px;
    --transition-speed: 0.3s;
}

[data-theme="dark"] {
    --color-bg: #0A1A2F;
    --color-bg-secondary: #112240;
    --color-text: #E6E8EA;
    --color-text-muted: #94A3B8;
}

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

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, #0A1A2F 0%, #112240 50%, #0A1A2F 100%);
    background-attachment: fixed;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-speed), color var(--transition-speed);
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-text);
    /* Auto-switch */
    transition: color var(--transition-speed);
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    padding: 30px 40px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: transparent;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 1px solid var(--color-text-muted);
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.theme-toggle:hover {
    background-color: var(--color-bg-secondary);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    /* Full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    /* Force white text in hero */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Blue Gradient Style */
    background: linear-gradient(135deg, rgba(2, 0, 36, 0.95) 0%, rgba(9, 9, 121, 0.85) 45%, rgba(0, 212, 255, 0.75) 100%);
    z-index: 1;
    mix-blend-mode: multiply;
    /* Keep multiply to blend with video, or try 'normal' with opacity if video needs to be hidden more */
    /* Optional: Blend with video if desired, or normal for cleaner text */
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    padding-top: 60px;
    /* Offset for header */
}

.hero-content {
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
}

.hero-image-wrapper {
    order: 2;
    position: relative;
    perspective: 1000px;
    display: none;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper:hover .hero-image {
    transform: rotateY(0) rotateX(0);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Force hero text to be white regardless of theme because of dark video bg */
.hero-title {
    font-size: 6rem;
    /* Much larger "New" style */
    line-height: 1;
    margin-bottom: 24px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.03em;
    background: -webkit-linear-gradient(bottom, #FFFFFF 40%, rgba(255, 255, 255, 0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Optional "fade" effect or standard white */
    /* If gradient text fails on video, fallback to solid white by removing background-clip */
    -webkit-text-fill-color: #FFFFFF;
    /* Override to solid white for readability on video */
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    vertical-align: middle;
    margin-left: 15px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: none;
    font-weight: 500;
    backdrop-filter: blur(5px);
    transform: translateY(-8px);
    /* Visual optical alignment center */
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    z-index: 10;
    transition: color 0.3s;
    cursor: pointer;
}

.scroll-down:hover {
    color: var(--color-primary);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Hashtags */
.hashtags-container {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    font-family: var(--font-heading);
    font-weight: 600;
    justify-content: center;
}

.hashtag {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    position: relative;
    font-size: 1.1rem;
    cursor: default;
    transition: all 0.3s ease;
}

.hashtag::before {
    content: attr(data-text);
    /* Requires JS to set data-text, or we just rely on text content with trick */
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    color: var(--color-primary);
    overflow: hidden;
    transition: width 0.5s ease;
    border-right: 2px solid var(--color-primary);
    /* Typing cursor */
    white-space: nowrap;
}

.hashtag.active {
    -webkit-text-stroke: 1px var(--color-primary);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

/* Float Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotateY(-5deg);
    }

    50% {
        transform: translateY(-15px) rotateY(-5deg);
    }
}

@media (min-width: 1024px) {
    .badge {
        margin-left: 10px;
        margin-top: 0;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #00C2FF 100%);
    color: #0A1A2F;
    /* Dark text for contrast against bright cyan */
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
    position: relative;
    z-index: 1;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00C2FF 0%, var(--color-primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.5);
}

.btn-primary:hover:before {
    opacity: 1;
}

/* About Section */
.about-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 26, 47, 0.95) 0%, rgba(17, 34, 64, 0.98) 50%, rgba(10, 26, 47, 0.95) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.about-content {
    background-color: transparent;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.about-badge {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(0, 240, 255, 0.1));
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50px;
    color: #00F0FF;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 240, 255, 0.15);
    animation: fadeInUp 0.8s ease-out;
}

.about-section h2 {
    font-size: 3.5rem;
    margin-bottom: 48px;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-main-text {
    max-width: 900px;
    margin: 0 auto 80px;
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.85;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    font-family: var(--font-body);
    letter-spacing: 0.01em;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-main-text strong {
    color: #00F0FF;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 0 20px;
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

.value-item:nth-child(1) {
    animation-delay: 0.6s;
}

.value-item:nth-child(2) {
    animation-delay: 0.8s;
}

.value-item:nth-child(3) {
    animation-delay: 1s;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00F0FF, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.2);
}

.value-item:hover::before {
    opacity: 1;
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00F0FF;
    stroke-width: 1.5;
    filter: drop-shadow(0 4px 12px rgba(0, 240, 255, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-item:hover .value-icon {
    transform: translateY(-4px);
    color: #FFFFFF;
    filter: drop-shadow(0 8px 24px rgba(0, 240, 255, 0.5));
}

.value-content h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.4;
}

.value-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin: 0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    font-family: var(--font-body);
    letter-spacing: 0.01em;
}

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

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-section h2 {
        font-size: 2.5rem;
        margin-bottom: 32px;
    }
    
    .about-main-text {
        font-size: 1.2rem;
        margin-bottom: 60px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 10px;
    }
    
    .value-item {
        padding: 36px 24px;
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 26, 47, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: rgba(15, 23, 42, 0.6);
    /* Glassmorphism dark base */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 50px;
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 600;
    color: #FFFFFF;
}

.modal-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

/* Form */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background-color: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 30px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-primary);
}

.consent-label {
    font-size: 0.8rem !important;
    line-height: 1.4;
    color: var(--color-text-muted) !important;
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
    background-color: #FFFFFF;
    color: #000000 !important;
    /* Force black text */
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background-color: #f0f0f0;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 240, 255, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    border: 1px solid var(--color-primary);
}

.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        order: 1;
        /* Text first on mobile usually */
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-image-wrapper {
        order: 2;
        margin: 0 -20px;
        /* Slight bleed */
    }

    .hero-image {
        transform: none !important;
        /* Disable 3D tilt on mobile */
        animation: none;
        max-width: 90%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .badge {
        display: inline-block;
        margin: 10px 0 0;
        white-space: normal;
        line-height: 1.4;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hashtags-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .badge {
        display: block;
        width: fit-content;
        margin: 10px auto 0;
    }

    .container {
        padding: 0 24px;
    }

    /* Hero Button Responsive */
.cta-container {
    padding: 0 10px;
    display: flex;
    justify-content: center;
}

/* Neon Ring Animation for CTA Button */
.neon-ring-wrapper {
    position: relative;
    display: inline-block;
}

.neon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px solid transparent;
    border-radius: 50px;
    background: linear-gradient(45deg, #00F0FF, #00C2FF, #00F0FF) padding-box,
                linear-gradient(45deg, #00F0FF, #00C2FF, #00F0FF) border-box;
    background-size: 200% 200%;
    animation: neonRotate 3s linear infinite;
    opacity: 0.8;
    pointer-events: none;
    filter: blur(1px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5),
                0 0 40px rgba(0, 240, 255, 0.3),
                0 0 60px rgba(0, 240, 255, 0.2);
}

@keyframes neonRotate {
    0% {
        background-position: 0% 50%;
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.neon-ring-wrapper:hover .neon-ring {
    opacity: 1;
    filter: blur(0.5px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.8),
                0 0 60px rgba(0, 240, 255, 0.5),
                0 0 90px rgba(0, 240, 255, 0.3);
}

/* Neon Ring Animation for Partners Button */
.neon-ring-wrapper-nav {
    position: relative;
    display: inline-block;
}

.neon-ring-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border: 2px solid transparent;
    border-radius: 50px;
    background: linear-gradient(45deg, #00F0FF, #00C2FF, #00F0FF) padding-box,
                linear-gradient(45deg, #00F0FF, #00C2FF, #00F0FF) border-box;
    background-size: 200% 200%;
    animation: neonRotateNav 3s linear infinite;
    opacity: 0.7;
    pointer-events: none;
    filter: blur(1px);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4),
                0 0 30px rgba(0, 240, 255, 0.2),
                0 0 45px rgba(0, 240, 255, 0.1);
}

@keyframes neonRotateNav {
    0% {
        background-position: 0% 50%;
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

.neon-ring-wrapper-nav:hover .neon-ring-nav {
    opacity: 1;
    filter: blur(0.5px);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.7),
                0 0 50px rgba(0, 240, 255, 0.4),
                0 0 75px rgba(0, 240, 255, 0.2);
}

    .btn {
        padding: 16px 24px;
        font-size: 0.85rem;
        white-space: normal;
        line-height: 1.4;
        max-width: 100%;
    }

    .btn-primary {
        padding: 18px 28px;
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }

    /* Modal Responsive - FIXED */
    .modal-overlay {
        padding: 0;
        align-items: flex-start;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-content {
        padding: 24px 20px 60px;
        max-width: 100%;
        width: 100%;
        min-height: auto;
        margin: 0;
        border-radius: 0;
        box-sizing: border-box;
    }

    .signup-form {
        width: 100%;
    }

    .modal-content h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
        margin-top: 20px;
    }

    .modal-intro {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .close-btn {
        top: 12px;
        right: 12px;
        z-index: 10;
    }

    /* Form Responsive */
    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 6px;
        text-transform: uppercase;
    }

    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 16px;
        /* Prevents iOS zoom on focus */
        border-radius: 8px;
    }

    .select-wrapper select {
        font-size: 16px;
    }

    .checkbox-group {
        margin-top: 16px;
        margin-bottom: 10px;
        gap: 10px;
        align-items: flex-start;
    }

    .checkbox-group input[type="checkbox"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .consent-label {
        font-size: 0.7rem !important;
        line-height: 1.4;
        text-transform: none !important;
    }

    /* Button Submit - FIXED */
    .btn-submit {
        width: 100%;
        padding: 18px 20px;
        font-size: 1rem;
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 10px;
        font-weight: 700;
        letter-spacing: 0.5px;
        background-color: #FFFFFF;
        color: #000000 !important;
        display: block;
        box-sizing: border-box;
    }

    .btn-primary {
        padding: 16px 28px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    /* Success Message Responsive */
    .success-message h4 {
        font-size: 1.25rem;
    }

    .success-message p {
        font-size: 0.9rem;
    }

    .success-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .modal-content {
        padding: 24px 16px 40px;
    }

    .modal-content h3 {
        font-size: 1.4rem;
    }

    .form-group input,
    .form-group select {
        padding: 14px 16px;
    }

    .btn-submit {
        padding: 18px 20px;
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, #000000 0%, #0A1A2F 100%);
    overflow: hidden;
}

.partners-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.partners-intro {
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.partners-form {
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.partners-content textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.partners-content textarea:focus {
    outline: none;
    background-color: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .partners-content {
        padding: 20px;
    }
}

/* Navbar Partners Button */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-link-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.nav-link-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.nav-badge {
    background: var(--color-primary);
    color: #0A1A2F;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
}

/* Compact Modal Styles */
.partners-modal-content {
    max-width: 450px !important;
    padding: 30px !important;
}

.small-h3 {
    font-size: 1.5rem !important;
    margin-bottom: 5px !important;
}

.small-text {
    font-size: 0.85rem !important;
}

.compact {
    margin-bottom: 12px !important;
}

.compact label {
    font-size: 0.75rem !important;
    margin-bottom: 4px !important;
}

.compact input,
.compact textarea {
    padding: 10px 12px !important;
    font-size: 0.9rem !important;
}

.small-btn {
    padding: 12px !important;
    font-size: 0.9rem !important;
    margin-top: 10px !important;
}

.small-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
}
/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(10, 26, 47, 0.98) 0%, #0A1A2F 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer .container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 400;
    font-family: var(--font-body);
    letter-spacing: 0.05em;
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .footer {
        padding: 32px 0;
    }
    
    .footer-text {
        font-size: 0.85rem;
    }
}

/* Beta Access Text */
.beta-access-text {
    margin-top: 24px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-weight: 400;
}

.beta-access-text strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}


/* Notification Badge */
.notification-badge {
    background-color: #EF4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 99px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}
