@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Luckiest Guy', cursive;
}

body {
    background: linear-gradient(135deg, #2b1b5a, #1e4fa3);
    color: white;
    overflow-x: hidden;
}

/* TOP LOGO */
.logo {
    position: fixed;
    top: 20px;
    left: 28px;
    z-index: 1001;
}

    .logo img {
        height: 100px;
    }

/* NAVBAR */
.navbar {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(18px);
    border-radius: 999px;
    padding: 6px;
    z-index: 1000;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
}

    .nav-links li a {
        display: block;
        padding: 6px 18px;
        border-radius: 999px;
        color: white;
        text-decoration: none;
        font-size: 16px;
    }

        .nav-links li a.active {
            background: rgba(255,255,255,0.35);
        }

/* PAGE WRAPPER */
.page {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 160px;
    padding-bottom: 60px;
}

/* MAIN BOX */
.page-box {
    width: 95%;
    max-width: 1300px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(25px);
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.2);
    padding: 40px 60px;
    text-align: center;
}

/* HEADERS */
.main-title {
    font-size: 54px;
    margin-bottom: 15px;
}

.sub-title {
    font-size: 36px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* BUTTONS */
.glass-button {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 999px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(15px);
    color: white;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.3), 0 12px 30px rgba(0,0,0,0.3);
    transition: transform 0.25s ease;
}

    .glass-button:hover {
        transform: scale(1.08);
    }

/* SOCIALS */
.socials {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

    .socials a {
        padding: 14px 22px;
        border-radius: 999px;
        background: rgba(255,255,255,0.18);
        color: white;
        text-decoration: none;
        backdrop-filter: blur(15px);
        box-shadow: 0 0 0 1px rgba(255,255,255,0.25), 0 8px 20px rgba(0,0,0,0.25);
    }

/* UPDATE BAR */
.update-bar {
    margin-top: 30px;
    padding: 15px 25px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

    .update-bar p {
        font-size: 20px;
    }

/* COMING SOON */
.coming-soon {
    margin-top: 30px;
}

    .coming-soon h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .coming-soon ul {
        list-style: none;
    }

        .coming-soon ul li {
            font-size: 20px;
            margin: 6px 0;
        }

/* ===== GAMES PAGE ONLY ===== */

.games-title {
    font-size: 42px;
    margin-bottom: 40px;
}

.game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

    .game-card h2 {
        font-size: 32px;
    }

    .game-card img {
        width: 320px;
        max-width: 90%;
        border-radius: 25px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    }

/* FOOTER */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(22px);
    border-radius: 30px;
    padding: 30px 40px;
    margin: 40px auto;
    width: 92%;
    max-width: 1300px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.2);
}

.footer-logo img {
    height: 120px;
}

.footer-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

    .footer-buttons a {
        text-decoration: none;
        color: white;
        padding: 10px 20px;
        border-radius: 999px;
        background: rgba(255,255,255,0.2);
        backdrop-filter: blur(15px);
        box-shadow: 0 0 0 1px rgba(255,255,255,0.25), 0 8px 20px rgba(0,0,0,0.25);
    }

.footer p {
    opacity: 0.7;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 700px) {
    .logo img {
        height: 75px;
    }

    .main-title {
        font-size: 34px;
    }

    .sub-title {
        font-size: 26px;
    }

    .game-card img {
        width: 260px;
    }
}
