* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

.header {
    background-color: var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 100px;
    width: auto;
}

.nav-header ul {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-header ul li a {
    color: var(--light-text);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    text-decoration: none;
}

.nav-header ul li a:hover {
    color: var(--accent-color);
}

.btn-container {
    display: flex;
    gap: 10px;
}

.mobile-actions {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: -6px auto 12px;
}

.mobile-actions .btn {
    min-height: 46px;
}

.btn {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-signup {
    background-color: transparent;
    border: 2px solid var(--light-text);
    color: var(--light-text);
}

.btn-login {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-section {
    position: relative;
    width: 100%;
    max-width: 1300px;
    min-height: 500px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--banner-text-color);
    max-width: 600px;
    padding: 60px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--banner-text-color);
}

.sub-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--banner-text-color);
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--banner-bg-color);
    padding: 15px 25px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    word-break: break-word;
}

.btn-get-bonus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    padding: 0 32px;
    height: 56px;
    font-size: 18px;
    border-radius: 999px;
    margin-top: 20px;
    max-width: 100%;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
    position: static;
}

.section-block {
    padding: 60px 0;
    overflow-x: hidden;
    max-width: 100%;
}

.dark-section {
    background-color: var(--dark-section-color);
    color: var(--light-text);
}

h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.25;
    word-break: break-word;
}

.info {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    overflow-x: hidden;
    word-wrap: break-word;
}

.info > div {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
}

.info h2 {
    text-align: left;
}

.info img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}


p, li, h1, h2, h3, h4, .info * {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-card {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
    height: 100%;
    min-width: 0;
}

.image-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 66.66%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.image-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .hover-overlay {
    opacity: 1;
}

.play-triangle {
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 50px solid var(--primary-color);
    cursor: pointer;
    transition: transform 0.2s;
}

.play-triangle:hover {
    transform: scale(1.1);
    border-left-color: var(--accent-color);
}

.game-provider {
    display: none;
}

.text-container {
    padding: 20px;
    min-height: 120px;
}

.game-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
}

.game-rating {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.game-text {
    color: var(--muted-text);
    font-size: 14px;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.promo-card {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    min-width: 0;
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.promo-content {
    padding: 20px;
    min-width: 0;
}

.promo-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    line-height: 1.3;
    word-break: break-word;
}

.promo-content p {
    color: var(--muted-text);
    margin-bottom: 20px;
    word-break: break-word;
}

.btn-promo {
    background-color: var(--secondary-color);
    color: var(--light-text);
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
}

footer {
    background-color: var(--darker-section-color);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-text);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.banners-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.banners-block img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.banners-block img:hover {
    opacity: 1;
}

.footer-small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 20px;
}

.side-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--light-text);
    z-index: 1000;
    overflow-x: hidden;
    transition: width 0.3s;
}

.side-panel.is-open {
    width: 300px;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
}

.menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.menu-open {
    overflow: hidden;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

.side-panel img {
    width: 150px;
    margin: 30px 0 40px 40px;
}

.side-panel ul {
    padding: 0 40px;
    list-style: none;
}

.side-panel ul li {
    margin-bottom: 15px;
}

.side-panel ul li a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
}

.side-panel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--secondary-color);
    cursor: pointer;
}

.side-panel-open {
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.popular-games-title {
    color: var(--popular-games-color) !important;
}

.content-image {
    display: block;
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 20px auto;
    border-radius: 12px;
}


.table-wrapper {
    width: 100%;
    margin: 20px 0;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow-x: visible;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffffe7;
    color: var(--secondary-color);
    font-size: 14px;
}

.data-table th,
.data-table td {
    padding: 12px 15px;
    text-align: left;
    color: #000000e7;
    border: 1px solid #000000;
    vertical-align: top;
}

.data-table th {
    background-color: var(--primary-color);
    color: #ffffffe7;
    font-weight: 600;
}

.data-table tr:hover {
    background-color: rgba(53, 49, 49, 0.137);
}

@media (max-width: 1024px) {
    .nav-header {
        display: none;
    }

    .side-panel-open {
        display: block;
    }

    .hero-section {
        width: 100%;
        min-height: 420px;
        margin: 20px 0;
    }

    .hero-content {
        padding: 30px 20px;
        max-width: 520px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .sub-title {
        font-size: 28px;
    }

    .info {
        flex-direction: column;
        gap: 30px;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
    }
}

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

    .section-block {
        padding: 40px 0;
    }

    h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .info p {
        font-size: 15px;
        line-height: 1.5;
    }

    .info {
        gap: 20px;
    }

    .info > div {
        width: 100%;
        min-width: 0;
    }

    .content-image,
    .info img {
        max-width: 100%;
        height: auto;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .promo-card {
        width: 100%;
    }

    .promo-content h3 {
        font-size: 18px;
    }

    .promo-content p {
        font-size: 14px;
        line-height: 1.45;
    }

    .table-wrapper {
        overflow-x: visible;
        margin: 15px 0;
    }

    .data-table {
        font-size: 12px;
        min-width: auto;
        width: 100%;
    }

    .data-table th,
    .data-table td {
        padding: 8px 10px;
        white-space: normal;
        word-break: break-word;
    }
}

@media (max-width: 600px) {
    .btn-container {
        display: none;
    }

    .mobile-actions {
        display: grid;
    }

    .mobile-actions .btn-signup {
        background-color: transparent;
        border-color: var(--primary-color);
        color: var(--text-color);
    }

    .hero-section {
        min-height: 320px;
        border-radius: 10px;
    }

    .hero-content {
        padding: 18px 16px 20px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .sub-title {
        font-size: 22px;
        padding: 10px 14px;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .btn-get-bonus {
        font-size: 15px;
        padding: 0 20px;
        height: 48px;
        margin-top: 12px;
        max-width: 100%;
    }

    .play-triangle {
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
        border-left: 40px solid var(--primary-color);
    }

    .promo-content {
        padding: 16px;
    }

    .btn-promo {
        font-size: 12px;
        padding: 10px 8px;
    }

    .data-table {
        font-size: 11px;
    }

    .data-table th,
    .data-table td {
        padding: 6px 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header-content {
        padding: 10px 0;
    }

    .logo img {
        height: 72px;
    }

    .hero-section {
        min-height: 260px;
        margin: 14px 0 20px;
        border-radius: 10px;
    }

    .hero-content {
        padding: 14px 12px 16px;
    }

    .sub-title {
        font-size: 25px;
        padding: 8px 10px;
        margin-bottom: 10px;
        max-width: 100%;
    }

    .btn-get-bonus {
        font-size: 13px;
        height: 42px;
        padding: 0 14px;
        border-radius: 999px;
        max-width: 160px;
    }

    h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    p,
    li {
        font-size: 14px;
        line-height: 1.55;
    }

    .section-block {
        padding: 28px 0;
    }

    .text-container {
        padding: 16px;
        min-height: auto;
    }

    .game-title {
        font-size: 16px;
    }

    .game-text {
        font-size: 13px;
    }

    .promo-content {
        padding: 14px;
    }

    .promo-content h3 {
        font-size: 16px;
    }

    .promo-content p {
        font-size: 13px;
    }

    .btn-promo {
        font-size: 11px;
        padding: 9px 6px;
    }

    .table-wrapper {
        margin: 15px 0;
    }

    .data-table {
        font-size: 10px;
    }

    .data-table th,
    .data-table td {
        padding: 6px 6px;
    }

    .footer-grid {
        gap: 25px;
    }

    .banners-block {
        gap: 10px;
    }

    .banners-block img {
        height: 24px;
    }
}

@media (max-width: 360px) {
    .hero-section {
        min-height: 230px;
    }

    .sub-title {
        font-size: 20px;
        max-width: 100%;
        padding: 7px 9px;
    }

    .btn-get-bonus {
        font-size: 12px;
        height: 40px;
        max-width: 145px;
        padding: 0 12px;
    }

    h2 {
        font-size: 20px;
    }

    p,
    li {
        font-size: 13px;
    }

    .data-table {
        font-size: 9px;
    }

    .data-table th,
    .data-table td {
        padding: 5px 5px;
    }

    .promo-content h3 {
        font-size: 15px;
    }

    .btn-promo {
        font-size: 10px;
        padding: 8px 5px;
    }
}

/* Atefia Casino — obsidian, emerald and copper visual system */
body {
    background:
        radial-gradient(circle at 78% 10%, rgba(41, 213, 177, 0.08), transparent 28rem),
        linear-gradient(180deg, #050907 0%, #07110f 45%, #030605 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.container { max-width: 1240px; }

.header {
    background: rgba(5, 9, 7, 0.94);
    border-bottom: 1px solid rgba(199, 121, 50, 0.45);
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
}

.header-content { min-height: 88px; padding: 6px 0; }
.logo img { height: 78px; }
.nav-header ul { gap: 22px; }
.nav-header ul li a { color: #dfe9e4; letter-spacing: 0.02em; }
.nav-header ul li a:hover { color: #29d5b1; }

.btn {
    border-radius: 10px;
    letter-spacing: 0.04em;
    font-weight: 800;
}

.btn-signup {
    border-color: #c77932;
    color: #fff8e8;
    background: rgba(199, 121, 50, 0.08);
}

.btn-login,
.btn-get-bonus {
    color: #03110d;
    background: linear-gradient(135deg, #69f1cf, #29d5b1 55%, #1baa8d);
    box-shadow: 0 12px 34px rgba(41, 213, 177, 0.24), inset 0 1px rgba(255, 255, 255, 0.4);
}

.hero-section {
    max-width: 1300px;
    border-radius: 22px;
    border: 1px solid rgba(199, 121, 50, 0.62);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58), 0 0 44px rgba(41, 213, 177, 0.08);
}

.hero-section .container { min-height: 500px; display: flex; align-items: center; }
.hero-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(2, 6, 5, 0.94) 0%, rgba(2, 6, 5, 0.7) 38%, transparent 66%);
}

.hero-content { padding: 55px 28px; max-width: 580px; }
.sub-title {
    padding: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    background: none;
    box-shadow: none;
    text-shadow: 0 4px 28px #000;
}
.sub-title b { font-weight: 800; }
.hero-content .btn-get-bonus { min-width: 220px; }

.section-block { padding: 44px 0 80px; }
.info { display: block; }
.info h1,
.info h2,
.info h3 { color: #fff8e8; }
.info h1 {
    margin: 10px 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 74px);
    line-height: 1;
    letter-spacing: -0.04em;
}
.info h2 {
    margin: 76px 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
}
.info h3 { line-height: 1.2; }
.info p { color: #d6e0da; font-size: 17px; line-height: 1.78; }
.info a { color: #29d5b1; }
.info button { cursor: pointer; }

.eyebrow {
    color: #29d5b1;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.intro-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 42px;
    align-items: end;
    padding: 42px;
    border: 1px solid rgba(199, 121, 50, 0.34);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(13, 24, 21, 0.98), rgba(7, 17, 15, 0.92));
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
}
.intro-panel .lead { max-width: 870px; margin: 0; }
.intro-cta { margin-bottom: 6px; }

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 22px 0 0;
}
.fact {
    min-height: 112px;
    padding: 22px;
    border: 1px solid #24423a;
    border-radius: 16px;
    background: #0a1512;
}
.fact span { display: block; color: #829b93; font-size: 13px; margin-bottom: 10px; }
.fact b { color: #fff8e8; font-size: 17px; }

.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 34px 0 20px;
}
.game-card {
    background: #0a1512;
    border: 1px solid rgba(199, 121, 50, 0.52);
    border-radius: 18px;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.36);
}
.game-card:hover { transform: translateY(-5px); }
.game-card > img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; margin: 0; }
.game-card-body { padding: 20px; }
.game-card-body span { color: #29d5b1; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.game-card-body h3 { min-height: 48px; margin: 8px 0 18px; font-size: 21px; }
.game-card-body button,
.promotions-grid button {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #c77932;
    border-radius: 10px;
    color: #fff8e8;
    background: linear-gradient(180deg, #9b5927, #633719);
    font-weight: 900;
}

.providers-panel,
.responsible-panel {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 38px;
    margin: 70px 0 10px;
    padding: 38px;
    border: 1px solid rgba(41, 213, 177, 0.34);
    border-radius: 22px;
    background: radial-gradient(circle at 10% 0%, rgba(41, 213, 177, 0.11), transparent 26rem), #08130f;
}
.providers-panel h2,
.responsible-panel h2 { margin: 8px 0 18px; }
.providers-panel p { margin: 0; }
.provider-cloud { display: flex; flex-wrap: wrap; gap: 9px; align-content: center; }
.provider-cloud span,
.sport-strip span {
    padding: 10px 13px;
    border: 1px solid #2f5148;
    border-radius: 999px;
    color: #e5eee9;
    background: #10211d;
    font-size: 13px;
    font-weight: 700;
}

.sport-strip { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 30px;
}
.promotions-grid article {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: 24px;
    border: 1px solid rgba(199, 121, 50, 0.38);
    border-radius: 18px;
    background: linear-gradient(160deg, #151b16, #0a1110);
}
.promotions-grid article:nth-child(4),
.promotions-grid article:nth-child(5) { grid-column: span 3; }
.promotions-grid article > span { color: #29d5b1; font-size: 11px; font-weight: 900; letter-spacing: 0.14em; }
.promotions-grid h3 { margin: 12px 0 4px; font-size: 23px; }
.promotions-grid p { flex: 1; font-size: 14px; }

.table-wrap { width: 100%; overflow-x: auto; margin: 26px 0; border: 1px solid #2f5148; border-radius: 16px; }
table { width: 100%; min-width: 720px; border-collapse: collapse; background: #09130f; }
th, td { padding: 16px 18px; border-bottom: 1px solid #233a33; text-align: left; }
th { color: #06120e; background: #29d5b1; }
td { color: #e5eee9; }
tr:last-child td { border-bottom: 0; }

.payments-figure { margin: 28px 0; }
.payments-figure img { width: 100%; margin: 0; border: 1px solid rgba(199, 121, 50, 0.45); border-radius: 22px; }
.payments-figure figcaption { margin-top: 10px; color: #829b93; font-size: 13px; text-align: center; }

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding: 0;
    list-style: none;
    counter-reset: step;
}
.steps li {
    counter-increment: step;
    min-height: 180px;
    padding: 22px;
    border: 1px solid #29463e;
    border-radius: 16px;
    background: #0a1512;
    color: #cfdad4;
}
.steps li::before { content: "0" counter(step); display: block; color: #c77932; font-size: 26px; font-weight: 900; margin-bottom: 18px; }
.steps b { display: block; color: #fff8e8; margin-bottom: 7px; }

.responsible-panel { grid-template-columns: 0.7fr 1.3fr; align-items: center; }
.responsible-panel p { margin: 0; }

.faq-list { display: grid; gap: 10px; }
.faq-list details { padding: 0 22px; border: 1px solid #29463e; border-radius: 14px; background: #0a1512; }
.faq-list summary { padding: 19px 0; color: #fff8e8; font-weight: 800; cursor: pointer; }
.faq-list details p { margin-top: 0; padding-bottom: 18px; }

.final-cta {
    margin: 80px 0 0;
    padding: 58px 28px;
    text-align: center;
    border: 1px solid rgba(199, 121, 50, 0.58);
    border-radius: 24px;
    background: radial-gradient(circle at 50% 0%, rgba(41, 213, 177, 0.2), transparent 24rem), #09130f;
}
.final-cta h2 { margin: 10px 0 12px; text-align: center; }
.final-cta p { max-width: 680px; margin: 0 auto 12px; }

footer { border-top: 1px solid rgba(199, 121, 50, 0.35); background: #030605; }
.footer-grid { grid-template-columns: 0.5fr repeat(3, 1fr); }
.footer-content > img { margin: 0 auto; }
.side-panel { background: #08130f; border-right: 1px solid #c77932; }
.side-panel ul li a,
.side-panel-close { color: #fff8e8; }

@media (max-width: 1024px) {
    .hero-section .container { min-height: 420px; }
    .game-grid { grid-template-columns: repeat(2, 1fr); }
    .game-card:last-child { grid-column: span 2; max-width: calc(50% - 9px); justify-self: center; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .steps li:last-child { grid-column: span 2; }
}

@media (max-width: 760px) {
    .header-content { min-height: 70px; }
    .logo img { height: 62px; }
    .hero-section { min-height: 410px; }
    .hero-section .container { min-height: 410px; align-items: end; }
    .hero-banner-img { object-position: 66% center; }
    .hero-overlay { background: linear-gradient(0deg, rgba(2, 6, 5, 0.97), rgba(2, 6, 5, 0.22) 76%); }
    .hero-content { padding: 24px 16px 30px; }
    .sub-title { font-size: 34px; }
    .intro-panel { grid-template-columns: 1fr; padding: 28px; }
    .intro-cta { justify-self: start; }
    .facts-grid { grid-template-columns: repeat(2, 1fr); }
    .game-grid { grid-template-columns: 1fr; }
    .game-card:last-child { grid-column: auto; max-width: none; }
    .providers-panel,
    .responsible-panel { grid-template-columns: 1fr; padding: 28px; }
    .promotions-grid { grid-template-columns: 1fr; }
    .promotions-grid article,
    .promotions-grid article:nth-child(4),
    .promotions-grid article:nth-child(5) { grid-column: auto; }
    .steps { grid-template-columns: 1fr; }
    .steps li,
    .steps li:last-child { grid-column: auto; min-height: 0; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .mobile-actions { margin-top: 0; }
    .hero-section { min-height: 380px; margin-top: 8px; }
    .hero-section .container { min-height: 380px; }
    .sub-title { font-size: 28px; }
    .hero-content .btn-get-bonus { min-width: 0; max-width: 220px; }
    .info h1 { font-size: 42px; }
    .info h2 { margin-top: 54px; font-size: 30px; }
    .info p { font-size: 15px; line-height: 1.68; }
    .intro-panel { padding: 22px; }
    .facts-grid { grid-template-columns: 1fr; }
    .fact { min-height: 0; }
    .providers-panel,
    .responsible-panel { padding: 22px; }
    .final-cta { padding: 42px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
}
