body {
    background: radial-gradient(circle at top, #11122a 0, #06060b 40%, #020208 100%);
    background-size: cover;
    background-attachment: fixed;
    color: #e0e0e0;
    font-family: sans-serif;
    margin: 0;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: min(90vw, 1200px);
    padding: 0 15px;
}

.content-block {
    padding: 15px 0;
}

h1,
h2 {
    color: white;
    margin-top: 0;
}

h1{
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 5px;
    text-align: center;
}

h2{
    font-size: 18px;
    font-weight: 500;
}

#game{
    margin-bottom: 25px;
}

.game-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.mobile-placeholder {
    display: none;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.mobile-placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
    background-color: #4a4aff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.play-button:hover {
    background-color: #3a3aff;
}

.play-button:active {
    transform: translate(-50%, -50%) scale(0.98);
}

.overlay-iframe {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.overlay-iframe.active {
    display: flex;
}

.overlay-content {
    width: 95%;
    max-width: 1200px;
    height: 90%;
    max-height: 90vh;
    position: relative;
}

.overlay-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    z-index: 1001;
    padding: 5px 10px;
    line-height: 1;
}

@media (max-width: 768px) {
    .game-wrapper {
        display: none;
    }

    .mobile-placeholder {
        display: block;
    }

    .container {
        padding: 0 10px;
    }
}