* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: #091525;
    color: #fff;
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65
}

a {
    color: inherit;
    text-decoration: none
}

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

.site-shell {
    display: grid;
    grid-template-columns: 230px 1fr;
    min-height: 100vh
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 230px;
    background: #07111f;
    border-right: 1px solid #1e2e44;
    padding: 18px 14px;
    z-index: 10
}

.brand img {
    width: 165px;
    margin: 0 auto 26px
}

.nav a {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 13px 14px;
    border-radius: 8px;
    margin: 5px 0;
    color: #c7d2e2;
    font-weight: 700
}

.nav a:hover,
.nav a.active {
    background: #14243b;
    color: #fff
}

.nav small {
    width: 24px;
    text-align: center;
    font-size: 28px;
}

.main {
    grid-column: 2;
    min-width: 0
}

.topbar {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 5vw;
    gap: 12px;
    background: #0b1728
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 900;
    cursor: pointer;
    background: #20c8ff;
    color: #06111e
}

.btn.yellow {
    background: #ffdc1f
}

.btn.ghost {
    background: transparent;
    border: 1px solid #33445e;
    color: #fff
}

.hero {
    position: relative;
    min-height: 520px;
    background-image: url('https://images.unsplash.com/photo-1767215560223-5d6f16347069?q=80&w=2847&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 70px 30px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 8, 18, 0.94) 0%,
            rgba(5, 8, 18, 0.82) 42%,
            rgba(5, 8, 18, 0.38) 72%,
            rgba(5, 8, 18, 0.18) 100%
        );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    color: #ffffff;
}

.hero-content > * {
    max-width: 680px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    width: auto;
    padding: 8px 15px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 30px;
    background: #20C8FF;
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 20px;
    font-size: 46px;
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.45);
}

.hero p {
    margin: 0;
    max-width: 650px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    margin-top: 30px;
}

.hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 175px;
    min-height: 50px;
    padding: 12px 24px;
    margin: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero .btn-primary {
    background: #f7c948;
    border-color: #f7c948;
    color: #111111;
}

.hero .btn-primary:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.hero .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.75);
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.hero .btn-outline:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero {
        min-height: 580px;
        padding: 65px 20px;
        background-position: 62% center;
    }

    .hero-overlay {
        background: rgba(5, 8, 18, 0.78);
    }

    .hero-content {
        text-align: center;
    }

    .hero-content > * {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 620px;
        padding: 55px 16px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero .btn {
        width: 100%;
    }
    .btn {
        font-size: 12px;
    }
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.section {
    padding: 30px 0
}

.section-title {
    font-family: Impact, Arial Black, sans-serif;
    font-style: italic;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #ffd51d;
    font-size: 20px;
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    gap: 12px
}

.section-title:before {
    content: '✦';
    font-size: 25px
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.review {
    background: #0e1d31;
    border: 1px solid #263a55;
    padding: 20px;
    border-radius: 10px
}

.stars {
    color: #43e195;
    letter-spacing: 2px
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px
}

.game-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #101d30;
    border: 1px solid #253650;
    transition: .25s
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px #0008
}

.game-card img {
    object-fit: cover
}

.game-card .play {
    position: absolute;
    inset: auto 12px 12px;
    background: #20c8ff;
    color: #04111f;
    border-radius: 30px;
    text-align: center;
    padding: 8px;
    font-weight: 900;
    opacity: 0;
    transform: translateY(12px);
    transition: .2s
}

.game-card:hover .play {
    opacity: 1;
    transform: none
}

.providers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px
}

.provider {
    background: #13233a;
    border: 1px solid #2c405e;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 14px;
}

.banner {
    border-radius: 18px;
    overflow: hidden
}

.content-card {
    background: #0d1b2d;
    border: 1px solid #223750;
    padding: 32px;
    border-radius: 14px
}

.content-card h2,
.content-card h3 {
    color: #fff;
    margin-top: 28px
}

.content-card h2 {
    font-size: 18px
}

.content-card h3 {
    font-size: 19px
}

.content-card p,
.content-card li {
    color: #c5d0df
}

.content-card a {
    color: #ffd51d
}

.faq details {
    border-bottom: 1px solid #263b57;
    padding: 14px 0
}

.faq summary {
    font-weight: 800;
    cursor: pointer
}

.page-hero {
    padding: 84px 0 55px;
    background: linear-gradient(135deg, #142b50, #0a1628);
    border-bottom: 1px solid #29405e
}

.page-hero h1 {
    font-family: Impact, Arial Black;
    font-size: 32px;
    margin: 0;
    color: #ffd51d;
    text-transform: uppercase
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.promo-card {
    background: #10213a;
    border: 1px solid #2b4365;
    border-radius: 14px;
    padding: 24px
}

.promo-card strong {
    color: #ffd51d;
    font-size: 28px
}

.footer {
    background: #050d18;
    border-top: 1px solid #22334c;
    padding: 44px 0 24px;
    margin-top: 40px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    gap: 30px
}

.footer h4 {
    color: #ffd51d
}

.footer a {
    display: block;
    color: #b9c7da;
    margin: 7px 0
}

.legal-note {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #24344c;
    color: #8091a8;
    font-size: 12px
}

.mobile-toggle {
    display: none;
    position: fixed;
    left: 12px;
    top: 12px;
    z-index: 20;
    background: #20c8ff;
    color: #06111f;
    border: 0;
    border-radius: 7px;
    padding: 9px 12px;
    font-weight: 900
}

@media(max-width:1000px) {
    .site-shell {
        display: block
    }

    .sidebar {
        transform: translateX(-100%);
        transition: .25s
    }

    .sidebar.open {
        transform: none
    }

    .main {
        grid-column: auto
    }

    .mobile-toggle {
        display: block
    }

    .topbar {
        padding-left: 65px
    }

    .game-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .review-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:700px) {
    .hero {
        min-height: 330px
    }

    .game-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .providers {
        grid-template-columns: repeat(2, 1fr)
    }

    .review-grid,
    .promo-cards,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .page-hero h1 {
        font-size: 40px
    }

    .section {
        padding: 36px 0
    }

    .container {
        width: min(100% - 24px, 1180px)
    }
}