body {
    margin: 0;
    background: #0e1624;
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: #fff;
}



/* Random Game Button */
    .random-btn {
        background: #ef4444;
        padding: 12px 26px;
        border-radius: 9999px;
        color: white;
        font-size: 18px;
        font-weight: 600;
        margin-top: 20px;
        display: inline-block;
        transition: .2s;
        cursor: pointer;
    }

    .random-btn:hover {
        background: #dc2626;
    }

/* Header */
.header {
    padding: 18px;
    display: flex;
    justify-content: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.logo img {
    height: 40px;
}

/* Neon Title */
.neon-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-top: 70px;
    color: #3db8ff;
    text-shadow:
        0 0 8px #3db8ff,
        0 0 16px #3db8ff,
        0 0 32px rgba(61,184,255,0.6);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 4px #3db8ff; }
    to { text-shadow: 0 0 20px #59caff, 0 0 40px #3db8ff; }
}

.subtitle {
    color: #d1d5db;
    margin-bottom: 20px;
}

/* Button */
.home-btn {
    background: #6366f1;
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: .2s;
}
.home-btn:hover {
    background: #4f46e5;
}

/* Section Title */
.section-title {
    margin-top: 45px;
    font-size: 22px;
    font-weight: 700;
}

/* Game Grid */
.grid {
    max-width: 900px;
    margin: 25px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
    padding: 0 20px;
}

.card {
    background: #1b2436;
    padding: 12px;
    border-radius: 10px;
    display: block;
    text-decoration: none;
    color: #fff;
    transition: transform .25s, box-shadow .25s;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}
.card img {
    width: 100%;
    border-radius: 8px;
}
.card-title {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 600;
}

/* Footer */
.footer {
    margin-top: 50px;
    padding: 20px;
    color: #9ca3af;
    font-size: 14px;
}
