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

body {
    height: 100vh;
    background: url("https://images.goodsmile.info/cgm/images/product/20120831/3664/20230/large/0677104bc62b7a881ff8d40f25f0c451.jpg") no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
}

.overlay {
    min-height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.content {
    text-align: center;
    color: white;
    max-width: 1000px;
    width: 100%;
}

.title {
    font-size: 5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.description {
    margin-top: 15px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.code-area {
    margin-top: 25px;
}

pre {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
    overflow-x: auto;
    font-size: 14px;
    text-align: left;
}

code {
    color: #00ff99;
}

.loader-button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.loader-button:hover {
    opacity: 0.85;
}

a {
    color: #4da6ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.games-title {
    margin-top: 60px;
    font-size: 2rem;
}

.games-container {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    width: 160px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.2s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-card img {
    width: 100%;
    border-radius: 8px;
}

.game-card p {
    margin-top: 10px;
}
