@media (max-width:991px) {
    body.poster {
        margin-top: 40vh;
    }
}

body.poster {
    background-attachment: fixed;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight:300;
}
.sectionpage {
    background-color:#f5f5f5;
    color:#000;
}

.logo-footer {
    display: flex;
}

.logo-footer img {
    height: 35px;
    margin-left: 15px;
}

.navbar-brand img {
    height: 50px;
}

.navbar {
    background-color: #000;
}

footer {
    background-color: #000;
}

.navbar-nav a {
    color: #fff;
    font-weight:bold;
}

.fa-bars {
    color: #fff;
}

.navbar-toggler-icon {
    width: auto;
    height: auto;
}

h1 {
    text-transform: none;
}

.button-game a {
    margin: 10px;
}
.button-game {
    display:flex;
}
.page .button-game .play {
    background-color:#000;
    border:none;
}
.page .button-game .play:hover {
    background-color:#414141;
}
.button-game .play {
    padding:10px 20px 10px 20px;
    border-radius: 25px;
    color: #fff;
    font-weight: 300;
    text-decoration: none;
    border:2px solid #999;
    text-transform:uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}
.play svg {
    width:20px;
    height:20px;
    margin-right:5px;
}

.button-game .download {
    padding: 10px 20px 10px 20px;
    background: #2ecc71;
    border-radius: 25px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border:1px solid #2ecc71;
    text-transform:uppercase;
}

.play:hover {
    background-color: #99999927;
    color:#fc4c0e;
    transition: background-color 0.3s ease, color 0.3s ease;
    transition-delay: 0s;
    color:#fff;
}

.download:hover {
    background: #29b866;
    transition: background-color 0.3s ease, color 0.3s ease;
    transition-delay: 0s;
    border:1px solid #29b866;
    color:#fff;
}
.page p, h2, h1, h3, li {
    font-weight:600;
}

@media (max-width:768px) {
    .container-xxl {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .button-game {
        margin-bottom: 10px;
    }
}

.container > .button-game {
    display: flex;
    justify-content: center;
}

.button-game a {
    text-align: center;
}

.page img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
h1,h2,h3 {
    font-family: "Montserrat", sans-serif;
}

h1 {
    font-size:30px;
    text-align:center;
}
h2 {
    font-size:26px;
}
h3 {
    font-size:20px;
}
.nav-link:hover, .nav-link:focus {
    color:#696969;
}

/* ===== INFO TABLES ===== */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}
.info-table td,
.info-table th {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
}
.info-table td:first-child {
    width: 35%;
    background: #f9f9f9;
    font-weight: 600;
    color: #333;
}
.info-table td:last-child {
    color: #555;
}
.info-table strong {
    color: #222;
}
.rtp-table th {
    background: #222;
    color: #fff;
    font-weight: 600;
    padding: 12px 15px;
}
.rtp-table td {
    text-align: center;
}
.rtp-table td:first-child {
    text-align: left;
    font-weight: 600;
    background: #fff;
}
@media (max-width: 768px) {
    .info-table td,
    .info-table th {
        padding: 8px 10px;
        font-size: 13px;
    }
    .info-table td:first-child {
        width: 40%;
    }
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background-color: #1a1a2e;
}
.reviews-section h2 {
    color: #fff;
}
.review {
    background: #0f0f23;
    border-left: 3px solid #2ecc71;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 5px;
}
.review strong {
    color: #2ecc71;
    font-size: 15px;
}
.review p {
    color: #ccc;
    line-height: 1.7;
    margin: 8px 0 0 0;
    font-weight: 300;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    white-space: nowrap;
}
.footer-links a:hover {
    color: #2ecc71;
}
.copyright {
    color: #888;
}

/* ===== BONUS TEXT IN NAV ===== */
.bonus-text {
    text-align: center;
    flex: 1;
}

/* ===== FLOATING BANNER ===== */
.floating-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(46, 204, 113, 0.4);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 15px rgba(46, 204, 113, 0.15);
    padding: 16px 20px;
    max-width: 320px;
    animation: bannerSlideIn 0.5s ease-out 1s both;
    transition: transform 0.4s ease;
}
@keyframes bannerSlideIn {
    from { transform: translateY(120%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.floating-banner__close {
    position: absolute;
    top: 6px;
    right: 10px;
    background: none;
    border: none;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    transition: color 0.2s;
}
.floating-banner__close:hover {
    color: #fff;
}
.floating-banner__content {
    display: flex;
    align-items: center;
    gap: 12px;
}
.floating-banner__icon {
    font-size: 32px;
    flex-shrink: 0;
}
.floating-banner__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.floating-banner__big {
    font-size: 18px;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.floating-banner__small {
    font-size: 12px;
    color: #aaa;
    font-weight: 400;
}
.floating-banner__btn {
    flex-shrink: 0;
    background: #2ecc71;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}
.floating-banner__btn:hover {
    background: #27ae60;
    transform: scale(1.05);
    color: #fff;
}

/* Mobile */
@media (max-width: 576px) {
    .floating-banner {
        bottom: 12px;
        right: 12px;
        left: 12px;
        max-width: none;
        padding: 14px 16px;
        border-radius: 12px;
    }
    .floating-banner__icon {
        font-size: 26px;
    }
    .floating-banner__big {
        font-size: 16px;
    }
    .floating-banner__btn {
        padding: 9px 14px;
        font-size: 12px;
    }
}