:root {
    --bg-color: #000000;
    --bg-navy: #06223A;
    --bg-card: #0a1a2a;
    --text-main: #e0e0e0;
    --text-muted: #8faabf;
    --primary-cyan: #00AFFF;
    --primary-cyan-glow: rgba(0, 175, 255, 0.4);
    --primary-blue: #0088FF;
    --accent-blue-glow: rgba(0, 136, 255, 0.4);
    --font-main: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

body {
    background-color: var(--bg-color);
    background: linear-gradient(180deg, #000000 0%, #06223A 100%);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

.text-cyan {
    color: var(--primary-cyan);
}

.text-blue {
    color: var(--primary-blue);
}

.text-white {
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    /* Slightly rounded, more professional */
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(90deg, #0055aa 0%, var(--primary-cyan) 100%);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #0066cc 0%, #33c2ff 100%);
    transform: translateY(-2px);
}

.btn-glow-cyan {
    box-shadow: 0 0 20px var(--primary-cyan-glow);
}

.btn-glow-cyan:hover {
    box-shadow: 0 0 30px var(--primary-cyan-glow), 0 0 10px var(--primary-cyan);
}

.btn-secondary {
    background: var(--bg-navy);
    border: 2px solid var(--primary-blue);
    color: var(--primary-cyan);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-glow-blue {
    box-shadow: 0 0 15px var(--accent-blue-glow);
}

.btn-glow-blue:hover {
    box-shadow: 0 0 25px var(--accent-blue-glow), 0 0 10px var(--primary-blue);
}

.btn-vip {
    background: linear-gradient(90deg, #0088FF 0%, #00AFFF 100%);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 136, 255, 0.4);
}

.btn-vip:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 136, 255, 0.6);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top center, #0a2a4a 0%, #000000 70%);
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 175, 255, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-small-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
    opacity: 0.8;
}

.hero-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 175, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    text-align: center;
    background: rgba(6, 34, 58, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.section-text {
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.proof-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.proof-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 175, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    width: 300px;
    text-align: left;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.proof-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 175, 255, 0.3);
}

.proof-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.proof-user {
    color: var(--primary-cyan);
    font-weight: 600;
}

.proof-time {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.proof-msg {
    font-size: 0.95rem;
    color: #ddd;
}

/* Explanation Section */
.explanation {
    padding: 80px 0;
    text-align: center;
    background-color: transparent;
}

/* Advanced Platform Section */
.advanced-platform {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #02101c 0%, #000000 100%);
    border-top: 1px solid rgba(0, 136, 255, 0.1);
    border-bottom: 1px solid rgba(0, 136, 255, 0.1);
}

.benefits-list {
    list-style: none;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    text-align: left;
    padding: 25px;
    background: rgba(6, 34, 58, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 175, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefits-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.small-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background-color: transparent;
}

.comparison-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.comparison-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    width: 350px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-card:hover {
    transform: translateY(-10px);
}

.card-cyan {
    border-top: 4px solid var(--primary-cyan);
    box-shadow: 0 10px 30px -10px rgba(0, 175, 255, 0.15);
}

.card-blue {
    border-top: 4px solid var(--primary-blue);
    box-shadow: 0 10px 30px -10px rgba(0, 136, 255, 0.15);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.card-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.card-list {
    list-style: none;
    text-align: left;
}

.card-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ddd;
}

.card-list li:last-child {
    border-bottom: none;
}

.card-list li::before {
    content: '✓';
    margin-right: 10px;
    font-weight: bold;
}

.card-cyan .card-list li::before {
    color: var(--primary-cyan);
}

.card-blue .card-list li::before {
    color: var(--primary-blue);
}

/* CTA Final Section */
.cta-final {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle at center, #0a1a2a 0%, #000000 100%);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* VIP Group Section */
.vip-group {
    padding: 60px 0;
    text-align: center;
    background-color: #020a12;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vip-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

/* Footer */
.footer {
    padding: 30px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

    .proof-cards {
        flex-direction: column;
        align-items: center;
    }

    .proof-card {
        width: 100%;
        max-width: 350px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 350px;
    }

    .comparison-card {
        width: 100%;
        max-width: 350px;
    }
}