* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f1f5f9;
    line-height: 1.6;
}

header {
    background: rgba(15, 23, 42, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #3b82f6;
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: bold;
    color: #3b82f6;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

nav a {
    color: #f1f5f9;
    text-decoration: none;
    margin-left: 30px;
    transition: color 0.3s;
    font-size: 14px;
}

nav a:hover {
    color: #3b82f6;
}

.cta-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

.hero-icon img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary, .btn-secondary {
    padding: 16px 40px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.2);
}

/* Features Section */
.features {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 80px 20px;
    background: rgba(30, 41, 59, 0.5);
}

.features h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(30, 41, 59, 0.8);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(30, 41, 59, 0.95);
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #3b82f6;
}

.feature-card p {
    font-size: 14px;
    color: #cbd5e1;
}

/* Games Section */
.games {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(30, 41, 59, 0.5) 100%);
    padding: 80px 20px;
}

.games-container {
    max-width: 1200px;
    margin: 0 auto;
}

.games h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.game-card {
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid #3b82f6;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.game-card:hover {
    background: rgba(15, 23, 42, 0.9);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.25);
}

.game-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3b82f6;
}

.game-card p {
    font-size: 14px;
    color: #cbd5e1;
}

/* Stats Section */
.stats {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 10px;
}

.stat-text {
    color: #cbd5e1;
    font-size: 14px;
}

/* Languages Section */
.languages {
    background: rgba(30, 41, 59, 0.5);
    padding: 60px 20px;
    text-align: center;
}

.languages-container {
    max-width: 1200px;
    margin: 0 auto;
}

.languages h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #f1f5f9;
}

.lang-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lang-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
}

/* Footer CTA */
.footer-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.footer-cta h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #f1f5f9;
}

.footer-cta p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 40px;
}

footer {
    background: rgba(15, 23, 42, 0.95);
    padding: 30px 20px;
    text-align: center;
    color: #94a3b8;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        width: 100%;
    }

    nav a {
        margin: 0 15px;
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero {
        padding: 50px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .features h2, .games h2, .footer-cta h2 {
        font-size: 28px;
    }

    .hero-icon {
        width: 80px;
        height: 80px;
    }
}