:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ff4500; /* Orange-red like the "Find Creators" button description */
    --accent-glow: rgba(255, 69, 0, 0.5);
    --card-bg: #111111;
    --border-color: #333333;
    --font-main: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .logo, .nav-cta {
    font-family: var(--font-main);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links > a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-links > a:hover {
    opacity: 1;
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    padding: 0.5rem 1.2rem;
    margin-left: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: var(--text-color);
    color: var(--bg-color);
    opacity: 1;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-family: var(--font-body);
}

.nav-dropdown-btn:hover {
    opacity: 1;
}

.nav-dropdown-btn::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 320px;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 0.5rem;
    padding-top: 1rem;
    margin-top: 0;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-dropdown-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 8px;
    transition: background 0.3s;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-item.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.dropdown-item .item-title {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.dropdown-item .item-desc {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.4;
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 1) 0%, rgba(0, 0, 0, 1) 70%);
    position: relative;
    overflow: hidden; /* Prevent horizontal scrollbar on body */
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero h1 .highlight {
    color: var(--accent-color);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent-color);
    opacity: 0.2;
    transform: skewX(-20deg);
    z-index: -1;
}

.hero-sub {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-sub .icon {
    font-size: 1.4rem;
    vertical-align: middle;
}

/* Video Carousel */
.video-carousel-container {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.video-track {
    display: flex;
    gap: 0.75rem;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.video-track:hover {
    animation-play-state: paused;
}

.video-card {
    width: 300px;
    height: 530px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #000;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video loading placeholder */
.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    background-size: 200% 200%;
    animation: shimmer 1.5s ease-in-out infinite;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-card.loaded::before {
    opacity: 0;
    pointer-events: none;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Assumes we double the content */
    }
}

/* AI Simulation */
.ai-simulation {
    margin-top: 3rem;
    width: 100%;
    max-width: 600px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    opacity: 1;
    transition: all 0.5s ease;
}

.ai-simulation.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
}

.scanner {
    text-align: center;
}

.scan-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: scan 2s infinite linear;
    box-shadow: 0 0 10px var(--accent-color);
}

@keyframes scan {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.status-text {
    font-family: 'Courier New', monospace;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-box .label {
    font-size: 0.7rem;
    color: #888;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.stat-box .value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-main);
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 5%;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hiw-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hiw-subtitle {
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.hiw-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.hiw-step {
    flex: 1;
    max-width: 250px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.hiw-step:hover {
    background: rgba(255, 69, 0, 0.05);
    border-color: rgba(255, 69, 0, 0.4);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), #ff8c00);
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: var(--font-main);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.hiw-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.hiw-step p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.5;
}

.hiw-connector {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    margin-top: 4rem;
}

.connector-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), rgba(255, 69, 0, 0.3));
}

.connector-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
}

.hiw-result {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, rgba(255, 69, 0, 0.02) 100%);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.result-icon {
    font-size: 3rem;
}

.result-content h4 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.result-content p {
    color: #999;
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 6rem 5%;
    background: #050505;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.icon-box {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #999;
    font-size: 0.95rem;
}

/* Visual Proof / Platforms */
.visual-proof {
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(180deg, #050505 0%, #111111 100%);
}

.proof-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.platform {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    transition: all 0.3s;
}

.platform:hover {
    background: white;
    color: black;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    padding: 3rem 5%;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.footer-logo {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-main);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 4%;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-btn {
        width: 100%;
        text-align: left;
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }

    .nav-dropdown-content {
        position: static;
        display: none;
        min-width: 100%;
        margin-top: 0.5rem;
        transform: none;
        border-radius: 8px;
    }

    .nav-dropdown.active .nav-dropdown-content {
        display: block;
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }

    .hero {
        padding: 6rem 1.5rem 2rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero h1 .highlight::after {
        height: 6px;
        bottom: 2px;
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem;
    }

    /* Video Carousel Mobile */
    .video-carousel-container {
        padding: 1rem 0;
    }

    .video-card {
        width: 180px;
        height: 320px;
        border-radius: 8px;
    }

    .video-track {
        gap: 0.5rem;
    }

    /* AI Simulation Mobile */
    .ai-simulation {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .status-text {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-box {
        padding: 0.75rem;
        flex-direction: row;
        justify-content: space-between;
    }

    .stat-box .label {
        margin-bottom: 0;
        font-size: 0.65rem;
    }

    .stat-box .value {
        font-size: 1.2rem;
    }

    /* How It Works Mobile */
    .how-it-works {
        padding: 4rem 4%;
    }

    .how-it-works h2 {
        font-size: 1.8rem;
    }

    .hiw-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .hiw-timeline {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hiw-step {
        max-width: 100%;
        width: 100%;
        padding: 1.5rem 1rem;
    }

    .hiw-connector {
        transform: rotate(90deg);
        margin: 0;
        padding: 0.5rem 0;
    }

    .connector-line {
        width: 20px;
    }

    .step-icon {
        font-size: 2rem;
    }

    .hiw-step h3 {
        font-size: 1rem;
    }

    .hiw-step p {
        font-size: 0.85rem;
    }

    .hiw-result {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .result-icon {
        font-size: 2.5rem;
    }

    .result-content h4 {
        font-size: 1.1rem;
    }

    .result-content p {
        font-size: 0.85rem;
    }

    /* Features Mobile */
    .features {
        padding: 4rem 4%;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .icon-box {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Visual Proof Mobile */
    .visual-proof {
        padding: 4rem 4%;
    }

    .proof-content h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .platform-icons {
        gap: 1rem;
    }

    .platform {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Footer Mobile */
    footer {
        padding: 2rem 4%;
    }

    .footer-logo {
        font-size: 1.1rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-sub {
        font-size: 0.9rem;
    }

    .video-card {
        width: 150px;
        height: 265px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .proof-content h2 {
        font-size: 1.6rem;
    }

    .platform {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
}
