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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0e1a;
    color: #e0e6ed;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #5b9fff;
}

.logo-icon {
    width: 40px;
    height: 40px;
    /*background: linear-gradient(135deg, #5b9fff, #7b5fff);*/
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.cta-button {
    background: #5b9fff;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #4a8fee;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 159, 255, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 2rem 80px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #5b9fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Badges Section */
.badges-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #5b9fff;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.badge-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.badge-card:hover {
    transform: translateY(-5px);
    border-color: #5b9fff;
    box-shadow: 0 10px 30px rgba(91, 159, 255, 0.2);
}

.badge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    /*background: linear-gradient(135deg, #5b9fff, #7b5fff);*/
    /*border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.badge-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e0e6ed;
}

.badge-card p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Overlays Section */
.overlays-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 2rem;
}

.overlays-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.overlay-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.overlay-card:hover {
    transform: translateY(-5px);
    border-color: #5b9fff;
    box-shadow: 0 10px 30px rgba(91, 159, 255, 0.2);
}

.overlay-card.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.overlay-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #e0e6ed;
}

.overlay-card p {
    color: #9ca3af;
}

.coming-soon-tag {
    display: inline-block;
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #e0e6ed;
}

.cta-section p {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    margin-top: 80px;
}

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

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

    header {
        padding: 1rem;
    }

    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}