/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #161618;
    --foreground: #FFFFFF;
    --foreground-muted: #B3B3B3;
    --primary: #00AFF0;
    --primary-hover: #0090D0;
    --card: #1E1E21;
    --border: #2A2A2E;
    --muted: #252528;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-login {
    padding: 10px 24px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    color: var(--primary) !important;
    transition: all 0.3s;
}

.btn-login:hover {
    background: var(--primary);
    color: var(--foreground) !important;
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--foreground);
    padding: 120px 0 100px;
    text-align: center;
    overflow: hidden;
    background: var(--background);
}

.social-proof-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.18;
    filter: blur(3px);
}

.social-proof-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 175, 240, 0.3) 0%, rgba(0, 144, 208, 0.4) 100%);
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 2px 8px rgba(0,0,0,0.9);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--primary);
    color: var(--foreground);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0, 175, 240, 0.4), 0 0 40px rgba(0, 175, 240, 0.2);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 175, 240, 0.6), 0 0 60px rgba(0, 175, 240, 0.3);
    background: var(--primary-hover);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--foreground);
    padding: 16px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-block;
    backdrop-filter: blur(10px);
}

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

.legal-notice {
    font-size: 12px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--background);
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--foreground);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 175, 240, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--foreground);
}

.feature-card p {
    color: var(--foreground-muted);
    line-height: 1.6;
}

/* Traffic & PPV Section */
.traffic-ppv-section {
    background: var(--muted);
    padding: 60px 0;
}

.traffic-ppv-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-block {
    display: flex;
    flex-direction: column;
}

.strategy-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 12px;
}

.strategy-block p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--foreground-muted);
    margin-bottom: 20px;
}

.strategy-images {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}

.strategy-images img {
    width: calc(50% - 5px);
    height: auto;
    max-height: 120px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.strategy-images img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 175, 240, 0.3);
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--background);
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 175, 240, 0.2);
}

.why-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--foreground-muted);
    margin: 0;
}


.social-proof-track {
    display: flex;
    gap: 0;
    animation: scroll 60s linear infinite;
    will-change: transform;
    height: 100%;
    align-items: center;
}

.social-proof-slide {
    flex-shrink: 0;
    height: 80%;
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.social-proof-slide img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

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


/* Social Proof Section */
.social-proof-section {
    background: var(--background);
    padding: 60px 0;
}

/* Earnings Images Row */
.earnings-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.earnings-image {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.earnings-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 175, 240, 0.3);
}

.earnings-image img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: contain;
    display: block;
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    min-height: 120px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s;
}

.testimonial-slide.active {
    display: block;
}

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

.testimonial-quote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 14px;
    color: var(--foreground-muted);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--foreground);
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-large {
    font-size: 20px;
    padding: 20px 50px;
}

.cta-note {
    margin-top: 30px;
    font-size: 16px;
    opacity: 0.9;
}

.link-inline {
    color: var(--foreground);
    text-decoration: underline;
    font-weight: 600;
}

.link-inline:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--card);
    color: var(--foreground);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 20px;
    object-fit: cover;
}

.footer-text {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--foreground);
}

.footer-column a {
    display: block;
    color: var(--foreground-muted);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-text {
    color: var(--foreground-muted);
    font-size: 14px;
    line-height: 1.6;
}

.footer-legal {
    color: var(--foreground-muted);
    font-size: 12px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--foreground-muted);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .brand-name {
        font-size: 18px;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .earnings-row {
        flex-direction: column;
        gap: 20px;
    }

    .traffic-ppv-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-quote {
        font-size: 16px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .nav-links a:not(.btn-login) {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}
