:root {
    --color-bg: #090e16;
    --color-surface: #121925;
    --color-primary: #3391ff;
    --color-text: #ffffff;
    --color-text-muted: #838da0;
    --grad-blue: linear-gradient(135deg, #44a1ff 0%, #1d74d5 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none !important;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 12px;
}

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

.header {
    padding: 12px 0;
    background: var(--color-bg);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

.btn--primary {
    background: var(--grad-blue);
    color: #fff;
}

.btn--secondary {
    background: #1c2535;
    color: #fff;
}

.hero {
    padding: 10px 0;
}

.hero__banner {
    background: radial-gradient(circle at top right, #162d4a, #0a111a);
    border-radius: 20px;
    padding: 24px 16px;
    position: relative;
    overflow: hidden;
    
}

.hero__title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero__promo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.promo-card {
    background: rgba(255,255,255,0.06);
    padding: 12px;
    border-radius: 12px;
}

.promo-card__val {
    display: block;
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 800;
}

.promo-card__desc {
    font-size: 12px;
    color: var(--color-text-muted);
}

.hero__character {
    margin: 20px auto 0;
    max-width: 220px;
}

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 16px;
}

.games__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.game-item img {
    border-radius: 14px;
}

.jackpot {
    background: var(--color-surface);
    border-radius: 16px;
    margin: 30px 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.jackpot__box {
    background: rgba(0,0,0,0.2);
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
}

.jackpot__box span {
    display: block;
    font-weight: 800;
    color: #fff;
}

.jackpot__box--gold span {
    color: #ffc107;
}

.seo-section {
    padding: 30px 0;
    color: var(--color-text-muted);
    font-size: 14px;
}

.seo-content h2, .seo-content h3 {
    color: #fff;
    margin-bottom: 12px;
}

.seo-content p, .seo-content ul {
    margin-bottom: 16px;
}

.seo-content ul {
    padding-left: 20px;
}

@media (min-width: 768px) {
    .hero__promo {
        flex-direction: row;
    }
    .games__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero__banner {
       padding: 50px;
        min-height: 420px;
        background: radial-gradient(circle at 30% 50%, rgba(26, 45, 74, 0.7) 0%, rgba(10, 17, 26, 0.9) 100%), 
                    url('img/hero-bg.webp');
        background-size: cover;
        background-position: center;
    }
    .hero__title {
        font-size: 52px;
    }
    .hero__character {
        position: absolute;
        right: 20px;
        bottom: 0;
        max-width: 460px;
        margin: 0;
    }
    .hero__promo {
        max-width: 600px;
    }
    .games__grid {
        grid-template-columns: repeat(7, 1fr);
    }
    .jackpot {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .jackpot__values {
        display: flex;
        gap: 20px;
    }
}
.hero__action {
    margin-top: 24px;
    width: 100%;
}

.btn--hero {
    background: var(--grad-blue);
    color: #fff;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(51, 145, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(51, 145, 255, 0.6);
}

.btn--hero:active {
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .hero__action {
        width: auto;
        display: inline-block;
    }
    
    .btn--hero {
        width: auto;
        padding: 20px 60px;
        font-size: 18px;
    }
}
.hero__banner {
    background: radial-gradient(circle at top right, rgba(26, 45, 74, 0.8), rgba(10, 17, 26, 1)), 
                url('img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 24px 16px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero__banner {
        padding: 50px;
        min-height: 420px;
        background: radial-gradient(circle at 30% 50%, rgba(26, 45, 74, 0.7) 0%, rgba(10, 17, 26, 0.9) 100%), 
                    url('img/hero-bg.webp');
        background-size: cover;
        background-position: center;
    }
}
@media (min-width: 1024px) {
    .hero__character {
        position: absolute;
        right: 0;           
        bottom: 0;
        max-width: 500px;   
        height: 100%;     
        display: flex;
        align-items: flex-end; 
        pointer-events: none;
    }

    .hero__character img {
        height: 100%;     
        width: auto;      
        object-fit: contain;
        object-position: bottom right;
    }
}
.jackpot {
    background: linear-gradient(90deg, #121925 0%, #1c2636 50%, #121925 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.jackpot__main-text {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}

.jackpot__sub-text {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.jackpot__values {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.jackpot__box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.jackpot__box:hover {
    transform: translateY(-3px);
}

.jackpot__icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.jackpot__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-muted);
}

.jackpot__amount {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    font-family: monospace; 
}


.jackpot__box--gold {
    border-color: #ffc107;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
    background: linear-gradient(135deg, rgba(255,193,7,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

.jackpot__box--gold .jackpot__amount {
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

@media (min-width: 1024px) {
    .jackpot {
        flex-direction: row;
        justify-content: space-between;
    }
    .jackpot__values {
        width: auto;
        display: flex;
    }
}

.game-item {
    position: relative; 
    overflow: hidden; 
    display: block;
    width: 100%;
    aspect-ratio: 10 / 14;
    transition: transform 0.2s ease;
}

.game-item:hover {
    transform: translateY(-5px); 
}

.game-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}


.game-item__info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 10px 10px 10px; 
    text-align: center;
    border-radius: 0 0 14px 14px;
    

    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    

    z-index: 2;
}


.game-item__title {
    display: block;
    font-size: 11px; 
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}


.game-item__provider {
    display: block;
    font-size: 8px; /* Еще мельче */
    font-weight: 600;
    color: var(--color-text-muted); /* Твой серый цвет */
    text-transform: uppercase;
}


.game-item img {
    border-radius: 14px;
}
.faq {
    padding: 40px 0;
}

.faq__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq__item {
    background: var(--color-surface);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq__input {
    display: none;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    color: #fff;
    transition: background 0.3s ease;
}

.faq__question:hover {
    background: rgba(255, 255, 255, 0.03);
}


.faq__question::after {
    content: '+';
    font-size: 20px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq__answer p {
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}


.faq__input:checked ~ .faq__answer {
    max-height: 500px; /* Достаточно большое значение для раскрытия */
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq__input:checked ~ .faq__question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq__input:checked ~ .faq__question {
    color: var(--color-primary);
}
