#fullscreen-btn {
    position: relative;
    color: #fff;
    cursor: pointer;
    text-decoration: underline;
}
.mobile-fullscreen {
    position: fixed;
    inset: 0; /* shorthand for top/left/right/bottom: 0 */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    background: black;
}
._game-actions {
    position: relative;
    background: #31404b;
}
._game-wrapper {
    width: 100%;
    height: 100%;
}

#_game-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio => (9 / 16) * 100 */
    overflow: hidden;
}

.mobile-fullscreen #_game-container {
    flex: 1 1 auto;
    height: auto !important;
    padding: 0 !important;
    position: relative;
}
.mobile-fullscreen ._game-actions{
    background: #31404b;
    padding-bottom: env(safe-area-inset-bottom); /* respect iPhone notch etc */
    flex-shrink: 0;
}
#_game-body.mobile-fullscreen {
    display: flex;
    flex-direction: column;
}

._game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about__area .about__content-three p {
    font-size: 22px;
}

.logo img {
    max-width: 300px;
}

.navigation {
    margin-left: 60px !important;
}

.white-popup-block {
    background: #0d0d0d;
    color: #ddd;
    max-width: 600px !important;   /* increased from 420px */
    width: 90%;         /* responsive scaling */
    margin: 0 auto;
    padding: 35px 30px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(0, 255, 120, 0.2);
}

.white-popup-block h3 {
    margin-bottom: 12px;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}

.white-popup-block p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 20px;
    color: #ccc; /* softer than pure white */
    font-weight: 400;
    letter-spacing: 0.3px;
}

.white-popup-block p strong {
    color: #fff;   /* make bold parts stand out */
    font-weight: 600;
}

.white-popup-block .btn.btn-primary {
    background: #00ff80;
    border: none;
    color: #000;
    font-weight: 700;
    padding: 14px 22px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.white-popup-block .btn.btn-primary:hover {
    background: #00cc66;
    box-shadow: 0 0 12px rgba(0, 255, 120, 0.6);
}

.white-popup-block .age-no-link {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.white-popup-block .age-no-link:hover {
    color: #00ff80;
}


.age-no-link {
    display: inline-block;
    margin-top: 15px;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
}

.age-no-link:hover {
    color: var(--tg-theme-primary); /* theme accent on hover */
}

#cookie-consent .btn.btn-primary {
    background: #00ff80;
    border: none;
    color: #000;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#cookie-consent .btn.btn-primary:hover {
    background: #00cc66;
    box-shadow: 0 0 12px rgba(0, 255, 120, 0.6);
}