/* Binobi Casino Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', serif;
    background-color: #181a20;
    color: #e8e8e8;
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-dark {
    background-color: #181a20;
}

/* Header Styles */
.header-main.zx7nq4 {
    background: #15161c;
    border-bottom: 2px solid #fcd535;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.logo-img {
    max-width: 160px;
    height: auto;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fcd535;
    transform: translateY(-2px);
}

.btn-login {
    background: #ffffff;
    color: #15161c;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-login:hover {
    background: #f5f5f5;
    transform: scale(1.05);
    color: #15161c;
}

.btn-signup {
    background: #fcd535;
    color: #15161c;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-signup:hover {
    background: #e6c02f;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(252, 213, 53, 0.4);
    color: #15161c;
}

.online-counter.nm8kw3 {
    background: rgba(252, 213, 53, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #ffffff;
}

.online-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Hero Section */
.hero-section.lp4mn9 {
    padding: 2rem 0;
    background: linear-gradient(135deg, #1a1c24 0%, #15161c 100%);
}

.hero-banner.wk7r3p {
    background: #1f2128;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content.jx6nl2 {
    position: relative;
    z-index: 2;
    padding: 3rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.highlight-yellow {
    color: #fcd535;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
}

.btn-hero {
    background: #fcd535;
    color: #15161c;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero:hover {
    background: #e6c02f;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(252, 213, 53, 0.5);
    color: #15161c;
}

/* Promo Card */
.promo-card.tp9xm4 {
    background: linear-gradient(135deg, #1f2128 0%, #2a2c36 100%);
    border: 2px solid #fcd535;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(252, 213, 53, 0.2);
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.promo-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #b8b8b8;
}

.status-active {
    color: #00ff00;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.promo-code-box {
    background: #15161c;
    border: 2px dashed #fcd535;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.promo-code-display {
    font-size: 2rem;
    font-weight: 800;
    color: #fcd535;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.btn-copy {
    background: rgba(252, 213, 53, 0.1);
    color: #fcd535;
    border: 1px solid #fcd535;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.btn-copy:hover {
    background: #fcd535;
    color: #15161c;
    transform: scale(1.05);
}

.btn-activate {
    background: #fcd535;
    color: #15161c;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-activate:hover {
    background: #e6c02f;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(252, 213, 53, 0.4);
    color: #15161c;
}

.promo-benefits {
    list-style: none;
    padding: 0;
}

.promo-benefits li {
    padding: 0.3rem 0;
    color: #b8b8b8;
}

/* Section Titles */
.section-title.kx5nl9 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: #b8b8b8;
    font-size: 1.1rem;
}

/* Jackpots Section */
.jackpots-section.wr8pm3 {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jackpot-card.bm4wp7 {
    background: linear-gradient(135deg, #1f2128 0%, #2a2c36 100%);
    border: 2px solid #fcd535;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.jackpot-card.bm4wp7:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(252, 213, 53, 0.3);
    border-color: #fcd535;
}

.jackpot-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.jackpot-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.jackpot-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #fcd535;
    margin-bottom: 0.5rem;
}

.jackpot-label {
    color: #b8b8b8;
    font-size: 0.9rem;
}

/* Winners Section */
.winners-section.qp7lm2 {
    animation: fadeInUp 0.8s ease;
}

.winners-table-wrapper.xm3pk8 {
    background: #1f2128;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.winners-table.mx8kp1 {
    color: #e8e8e8;
    margin-bottom: 0;
}

.winners-table.mx8kp1 thead {
    background: #15161c;
    border-bottom: 2px solid #fcd535;
}

.winners-table.mx8kp1 thead th {
    color: #fcd535;
    font-weight: 700;
    padding: 1rem;
    border: none;
}

.winners-table.mx8kp1 tbody tr {
    border-bottom: 1px solid #2a2c36;
    transition: all 0.3s ease;
}

.winners-table.mx8kp1 tbody tr:hover {
    background: rgba(252, 213, 53, 0.05);
}

.winners-table.mx8kp1 tbody td {
    padding: 1rem;
    border: none;
}

.rank-1 {
    color: #FFD700;
    font-weight: 700;
}

.rank-2 {
    color: #C0C0C0;
    font-weight: 700;
}

.rank-3 {
    color: #CD7F32;
    font-weight: 700;
}

/* Video Section */
.video-section.ln9wp4 {
    animation: fadeInUp 1s ease;
}

.video-wrapper.rx4km9 {
    background: #1f2128;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

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

.video-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(252, 213, 53, 0.1);
    border-radius: 12px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fcd535;
}

.stat-label {
    font-size: 0.9rem;
    color: #b8b8b8;
}

/* Games Section */
.games-section.tm2pk7 {
    animation: fadeInUp 1.2s ease;
}

.game-card.wn4lp9 {
    background: #1f2128;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.game-card.wn4lp9:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(252, 213, 53, 0.2);
}

.game-image {
    position: relative;
    overflow: hidden;
    padding-top: 133.33%;
}

.game-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    padding: 1rem;
}

.game-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.game-provider {
    font-size: 0.85rem;
    color: #b8b8b8;
    margin-bottom: 0.5rem;
}

.btn-play {
    background: #fcd535;
    color: #15161c;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn-play:hover {
    background: #e6c02f;
    transform: scale(1.05);
    color: #15161c;
}

/* Slot Game Section */
.slot-game-section.km8nx2 {
    animation: fadeInUp 1.4s ease;
}

.slot-machine.bn3xk7 {
    background: linear-gradient(135deg, #1f2128 0%, #2a2c36 100%);
    border: 3px solid #fcd535;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(252, 213, 53, 0.3);
}

.slot-display {
    background: #15161c;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.reels-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.reel {
    background: #1f2128;
    border: 2px solid #fcd535;
    border-radius: 12px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.reel.spinning {
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotateX(0deg);
    }
    100% {
        transform: rotateX(360deg);
    }
}

.btn-spin {
    background: #fcd535;
    color: #15161c;
    border: none;
    padding: 1rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.btn-spin:hover:not(:disabled) {
    background: #e6c02f;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(252, 213, 53, 0.5);
}

.btn-spin:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spin-icon {
    font-size: 1.5rem;
}

.slot-result {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.result-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.result-title {
    font-size: 2rem;
    font-weight: 800;
    color: #00ff00;
    margin-bottom: 1rem;
}

.result-text {
    font-size: 1.2rem;
    color: #ffffff;
}

.btn-claim {
    background: #00ff00;
    color: #15161c;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-claim:hover {
    background: #00dd00;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.4);
    color: #15161c;
}

/* Content Section */
.content-section.xr8k3m {
    animation: fadeInUp 1.6s ease;
}

.article-content.tn4mp8 {
    background: #1f2128;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.article-content.tn4mp8 h1,
.article-content.tn4mp8 h2,
.article-content.tn4mp8 h3 {
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.article-content.tn4mp8 p {
    color: #e8e8e8;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.article-content.tn4mp8 ul,
.article-content.tn4mp8 ol {
    color: #e8e8e8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.article-content.tn4mp8 li {
    margin-bottom: 0.5rem;
}

.article-content.tn4mp8 table {
    width: 100%;
    margin: 2rem auto;
    border-collapse: collapse;
    background: #15161c;
    border-radius: 12px;
    overflow: hidden;
}

.article-content.tn4mp8 table th {
    background: #fcd535;
    color: #15161c;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    border: 2px solid #2a2c36;
}

.article-content.tn4mp8 table td {
    padding: 1rem;
    border: 2px solid #2a2c36;
    color: #e8e8e8;
}

.article-content.tn4mp8 table tr:hover {
    background: rgba(252, 213, 53, 0.05);
}

.article-content.tn4mp8 a {
    color: #fcd535;
    text-decoration: underline;
}

.article-content.tn4mp8 a:hover {
    color: #e6c02f;
}

/* Author Section */
.author-section.px7mn4 {
    animation: fadeInUp 1.8s ease;
}

.author-card.jm3kl8 {
    background: #1f2128;
    border: 2px solid #fcd535;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.author-avatar {
    border: 3px solid #fcd535;
}

.author-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.author-role {
    color: #fcd535;
    font-weight: 600;
}

.author-bio {
    color: #b8b8b8;
    line-height: 1.6;
}

.author-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(252, 213, 53, 0.1);
    color: #fcd535;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social-link:hover {
    background: #fcd535;
    color: #15161c;
    transform: scale(1.05);
}

/* Footer */
.footer-main.px9km1 {
    background: #15161c;
    border-top: 2px solid #fcd535;
    margin-top: 4rem;
}

.footer-logo {
    max-width: 140px;
    height: auto;
}

.footer-desc {
    color: #b8b8b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-title {
    color: #fcd535;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: #e8e8e8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #fcd535;
    padding-left: 0.5rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.payment-item,
.provider-item {
    background: rgba(252, 213, 53, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.85rem;
    color: #e8e8e8;
}

.copyright {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.legal-link {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: #fcd535;
}

.footer-disclaimer {
    background: rgba(252, 213, 53, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(252, 213, 53, 0.2);
}

/* Bonus Widget */
.bonus-widget.zl8pn3 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #fcd535 0%, #e6c02f 100%);
    padding: 1rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.widget-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
    flex-wrap: wrap;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #15161c;
}

.widget-subtitle {
    font-size: 0.9rem;
    color: #3a3a3a;
}

.btn-widget {
    background: #15161c;
    color: #fcd535;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-widget:hover {
    background: #1f2128;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    color: #fcd535;
}

.widget-close {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

.widget-close:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: rotate(90deg);
}

.widget-close svg {
    color: #15161c;
}

/* Unused Styles for Uniqueness */
.zq4rx9 {
    display: none;
}

.pm7kw2 {
    visibility: hidden;
}

.xl9np8 {
    opacity: 0;
}

.wk3lm7 {
    position: absolute;
    left: -9999px;
}

.bn5xp1 {
    color: transparent;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title.kx5nl9 {
        font-size: 1.5rem;
    }

    .game-item {
        margin-bottom: 1rem;
    }

    .games-grid {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .game-item {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .hero-content.jx6nl2 {
        padding: 2rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .jackpot-amount {
        font-size: 1.5rem;
    }

    .reel {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .widget-content {
        flex-direction: column;
        text-align: center;
    }
}

.container.vahs {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px
}

.container.vahs {
    overflow-wrap: anywhere
}

.container.vahs p, .container.vahs li {
    font-size: 16px;
    line-height: 1.85;
    color: #e8e8e8
}

.container.vahs a {
    color: #fcd535;
    text-decoration: underline;
    text-underline-offset: 3px
}

.container.vahs a:hover {
    color: #ffe06a
}

.container.vahs h1, .container.vahs h2, .container.vahs h3 {
    color: #fff;
    font-weight: 800;
    letter-spacing: .2px
}

.container.vahs h1 {
    font-size: 38px;
    line-height: 1.2;
    margin: 0 0 18px
}

.container.vahs h2 {
    font-size: 28px;
    line-height: 1.25;
    margin: 34px 0 14px
}

.container.vahs h3 {
    font-size: 20px;
    line-height: 1.3;
    margin: 22px 0 10px
}

.container.vahs p {
    margin: 0 0 16px
}

.container.vahs ul, .container.vahs ol {
    margin: 12px 0 18px;
    padding-left: 22px
}

.container.vahs li {
    margin: 0 0 10px
}

.container.vahs ul li::marker {
    color: #fcd535
}

.container.vahs ol li::marker {
    color: #fcd535;
    font-weight: 800
}

.container.vahs strong {
    color: #fff
}

.container.vahs > p:first-child {
    background: rgba(252, 213, 53, .06);
    border: 1px solid rgba(252, 213, 53, .18);
    border-radius: 14px;
    padding: 16px 16px;
    margin: 6px 0 18px
}

.container.vahs h2 {
    position: relative;
    padding-bottom: 10px
}

.container.vahs h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 3px;
    border-radius: 3px;
    background: #fcd535
}

.container.vahs ul, .container.vahs ol {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: 14px 16px 14px 34px
}

.container.vahs ul {
    padding-left: 36px
}

.container.vahs ol {
    padding-left: 38px
}

.container.vahs blockquote {
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 4px solid #fcd535;
    background: rgba(252, 213, 53, .06);
    border-radius: 12px
}

.container.vahs table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    overflow: hidden;
    margin: 18px 0
}

.container.vahs th {
    background: #15161c;
    color: #fcd535;
    text-align: left;
    font-weight: 800;
    padding: 14px 14px;
    border-bottom: 1px solid rgba(252, 213, 53, .25)
}

.container.vahs td {
    padding: 14px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    vertical-align: top
}

.container.vahs tr:last-child td {
    border-bottom: none
}

.container.vahs tr:hover td {
    background: rgba(252, 213, 53, .04)
}

.container.vahs hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 22px 0
}

@media (max-width: 992px) {
    .container.vahs {
        max-width: 980px
    }

    .container.vahs h1 {
        font-size: 34px
    }

    .container.vahs h2 {
        font-size: 26px
    }
}

@media (max-width: 768px) {
    .container.vahs {
        padding: 0 14px
    }

    .container.vahs h1 {
        font-size: 28px
    }

    .container.vahs h2 {
        font-size: 22px;
        margin: 26px 0 12px
    }

    .container.vahs h3 {
        font-size: 18px
    }

    .container.vahs p, .container.vahs li {
        font-size: 15px;
        line-height: 1.8
    }

    .container.vahs ul, .container.vahs ol {
        padding: 12px 14px 12px 34px
    }

    .container.vahs > p:first-child {
        padding: 14px
    }

    .container.vahs table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .container.vahs th, .container.vahs td {
        white-space: nowrap
    }
}

@media (max-width: 420px) {
    .container.vahs h1 {
        font-size: 24px
    }

    .container.vahs h2 {
        font-size: 20px
    }

    .container.vahs ul, .container.vahs ol {
        padding: 12px 12px 12px 32px
    }
}

.games-section.tm2pk7 {
    padding: 70px 0
}

.games-section.tm2pk7 .section-title.kx5nl9 {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: .2px;
    color: #fff;
    margin: 0 0 10px
}

.games-section.tm2pk7 .section-subtitle {
    max-width: 780px;
    margin: 0 auto 26px;
    color: rgba(232, 232, 232, .78);
    font-size: 16px;
    line-height: 1.6
}

.games-section.tm2pk7 .games-slider-wrapper {
    position: relative
}

.games-section.tm2pk7 .games-grid {
    gap: 18px
}

.games-section.tm2pk7 .game-item {
    display: flex
}

.games-section.tm2pk7 .game-card.wn4lp9 {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(31, 33, 40, .95) 0%, rgba(21, 22, 28, .95) 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.games-section.tm2pk7 .game-card.wn4lp9:hover {
    transform: translateY(-6px);
    border-color: rgba(252, 213, 53, .35);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .45);
}

.games-section.tm2pk7 .game-image {
    position: relative;
    padding-top: 135%;
    background: rgba(255, 255, 255, .02);
}

.games-section.tm2pk7 .game-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .35s ease, opacity .35s ease;
    opacity: .98;
}

.games-section.tm2pk7 .game-card.wn4lp9:hover .game-image img {
    transform: scale(1.06);
    opacity: 1;
}

.games-section.tm2pk7 .game-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .55) 100%);
    pointer-events: none;
}

.games-section.tm2pk7 .game-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 14px 16px;
}

.games-section.tm2pk7 .game-title {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
}

.games-section.tm2pk7 .game-provider {
    font-size: 12px;
    font-weight: 700;
    color: rgba(232, 232, 232, .7);
}

.games-section.tm2pk7 .btn.btn-play {
    margin-top: 10px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(252, 213, 53, .6);
    background: linear-gradient(135deg, #fcd535 0%, #e6c02f 100%);
    color: #15161c;
    font-weight: 900;
    letter-spacing: .2px;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(252, 213, 53, .18);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.games-section.tm2pk7 .btn.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(252, 213, 53, .28);
    filter: saturate(1.06);
    color: #15161c;
}

.games-section.tm2pk7 .btn.btn-play:active {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .games-section.tm2pk7 {
        padding: 60px 0
    }

    .games-section.tm2pk7 .section-title.kx5nl9 {
        font-size: 30px
    }
}

@media (max-width: 991px) {
    .games-section.tm2pk7 .section-title.kx5nl9 {
        font-size: 28px
    }

    .games-section.tm2pk7 .games-grid {
        gap: 14px
    }
}

@media (max-width: 768px) {
    .games-section.tm2pk7 {
        padding: 48px 0
    }

    .games-section.tm2pk7 .section-title.kx5nl9 {
        font-size: 24px
    }

    .games-section.tm2pk7 .section-subtitle {
        font-size: 15px;
        margin-bottom: 18px
    }

    .games-section.tm2pk7 .games-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 6px 12px 14px;
        margin: 0 -12px;
    }

    .games-section.tm2pk7 .games-grid::-webkit-scrollbar {
        height: 6px
    }

    .games-section.tm2pk7 .games-grid::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, .14);
        border-radius: 8px
    }

    .games-section.tm2pk7 .game-item {
        flex: 0 0 72%;
        max-width: 72%;
        scroll-snap-align: start;
    }

    .games-section.tm2pk7 .game-title {
        font-size: 14px
    }
}

@media (max-width: 480px) {
    .games-section.tm2pk7 .game-item {
        flex: 0 0 84%;
        max-width: 84%
    }

    .games-section.tm2pk7 .btn.btn-play {
        padding: 11px 12px;
        border-radius: 12px
    }
}
