* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #070a12;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}


/* Navigation */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 8%;

    background: rgba(7, 10, 18, 0.75);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255,255,255,0.08);

    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span,
h1 span {
    color: #3185ff;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #aaa;

    text-decoration: none;

    font-weight: bold;

    transition: 0.2s;
}

.nav-links a:hover {
    color: white;
}


/* Hero */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;

    overflow: hidden;

    padding: 100px 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.small-title {
    color: #3185ff;

    font-size: 15px;

    font-weight: bold;

    letter-spacing: 5px;

    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(70px, 13vw, 170px);

    font-weight: 900;

    letter-spacing: -5px;

    line-height: 0.9;
}

.hero-text {
    color: #aaa;

    font-size: 20px;

    margin-top: 30px;
}

.buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 35px;
}

.button {
    padding: 14px 28px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: bold;

    transition: 0.2s;
}

.primary {
    background: #3185ff;

    color: white;

    box-shadow: 0 0 30px rgba(49,133,255,0.25);
}

.primary:hover {
    transform: translateY(-3px);

    box-shadow: 0 0 40px rgba(49,133,255,0.5);
}

.secondary {
    border: 1px solid #333;

    color: white;

    background: rgba(255,255,255,0.03);
}

.secondary:hover {
    background: rgba(255,255,255,0.08);

    transform: translateY(-3px);
}


/* Background glow */

.hero-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background: #1264e8;

    filter: blur(180px);

    opacity: 0.15;
}


/* Sections */

.section {
    max-width: 1000px;

    margin: auto;

    padding: 120px 25px;
}

.section-label {
    color: #3185ff;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 4px;

    margin-bottom: 12px;
}

.section h2 {
    font-size: 48px;

    margin-bottom: 20px;
}

.section-text {
    max-width: 650px;

    color: #999;

    font-size: 18px;

    line-height: 1.7;
}


/* Stats */

.stats {
    display: flex;

    gap: 20px;

    margin-top: 45px;
}

.stat {
    flex: 1;

    padding: 25px;

    background: #0d111c;

    border: 1px solid #1a2030;

    border-radius: 15px;

    text-align: center;
}

.stat strong {
    font-size: 30px;
}

.stat p {
    margin-top: 10px;

    color: #aaa;
}


/* Games */

.games-section {
    max-width: 1100px;
}

.game-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 40px;
}

.game-card {
    background: #0d111c;

    border: 1px solid #1a2030;

    border-radius: 18px;

    padding: 30px;

    transition: 0.25s;
}

.game-card:hover {
    transform: translateY(-7px);

    border-color: #3185ff;

    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.game-icon {
    font-size: 45px;

    margin-bottom: 20px;
}

.game-card h3 {
    font-size: 23px;

    margin-bottom: 10px;
}

.game-card p {
    color: #888;

    line-height: 1.6;
}


/* Socials */

.socials {
    text-align: center;
}

.socials .section-text {
    margin: auto;
}

.social-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 35px;
}

.social {
    padding: 15px 30px;

    background: #0d111c;

    border: 1px solid #1a2030;

    border-radius: 10px;

    color: white;

    text-decoration: none;

    font-weight: bold;

    transition: 0.2s;
}

.social:hover {
    background: #3185ff;

    transform: translateY(-3px);
}


/* Footer */

footer {
    border-top: 1px solid #151a27;

    padding: 40px 20px;

    text-align: center;
}

footer p {
    color: #666;

    margin-top: 12px;

    font-size: 14px;
}


/* Mobile */

@media (max-width: 700px) {

    .nav-links {
        display: none;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .stats {
        flex-direction: column;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .social-buttons {
        flex-direction: column;
    }

    .section h2 {
        font-size: 38px;
    }

}