:root {
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --bg-dark: #0a0e17;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-main: #f0f4f8;
    --text-muted: #9ba3b5;
    --border-light: rgba(255, 255, 255, 0.08);
    --accent-red: #ff3366;
    --accent-blue: #00d4ff;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .mockup-amount, .rank-badge {
    font-family: 'Outfit', sans-serif;
}

.highlight {
    color: var(--primary);
}

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

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

nav a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 6rem 5% 4rem;
    background: radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 40%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

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

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 255, 136, 0.3);
    background: var(--primary-dark);
}

.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Glassmorphism Mockup */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.mockup {
    width: 300px;
    text-align: center;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(-20px); }
    100% { transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0px); }
}

.mockup-header {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.mockup-amount {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.mockup-status {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Content Area */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5% 4rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin: 5rem 0 3rem;
    background: linear-gradient(90deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Review Cards */
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.4);
}

.rank-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary);
    color: var(--bg-dark);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.review-header h3 {
    font-size: 1.8rem;
}

.speed-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.ultra-fast { background: rgba(0, 255, 136, 0.1); color: var(--primary); border: 1px solid var(--primary); }
.fast { background: rgba(0, 212, 255, 0.1); color: var(--accent-blue); border: 1px solid var(--accent-blue); }
.moderate { background: rgba(255, 255, 255, 0.05); color: #fff; border: 1px solid rgba(255,255,255,0.2); }

.review-body p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.pros h4 { color: var(--primary); margin-bottom: 0.8rem; }
.cons h4 { color: var(--accent-red); margin-bottom: 0.8rem; }

.pros-cons ul {
    list-style: none;
}

.pros-cons li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.pros li::before { content: '✓'; color: var(--primary); margin-right: 8px; font-weight: bold; }
.cons li::before { content: '✕'; color: var(--accent-red); margin-right: 8px; font-weight: bold; }

.btn-affiliate {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 1rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-affiliate:hover {
    background: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.logo-hover {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-hover:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-muted);
}

/* Footer */
footer {
    background: rgba(0,0,0,0.5);
    padding: 4rem 5% 2rem;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-content .brand {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.75rem !important;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding-top: 8rem; }
    .hero h1 { font-size: 2.8rem; }
    .mockup { margin-top: 3rem; transform: none; animation: none; }
    .pros-cons { grid-template-columns: 1fr; gap: 1rem; }
    .navbar { padding: 1rem 5%; }
    nav { display: none; /* simple mobile nav hide for now */ }
}
