/* Базовые стили */
:root {
    --primary-color: #ff3b30;
    --secondary-color: #00e701;
    --accent-color: #2d2d2d;
    --background-dark: #0c0c0c;
    --text-light: #ffffff;
    --text-gray: #888888;
    --gradient-primary: linear-gradient(45deg, #ff3b30, #ff3b30);
    --gradient-sport: linear-gradient(to right, #ff3b30, #ff6b30);
    --gradient-casino: linear-gradient(to right, #00e701, #00b8ff);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', 'Arial', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* Шапка */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    height: 32px;
    display: flex;
    align-items: center;
    margin-left: -1rem;
}

.header__logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.header__menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header__menu a:hover {
    color: var(--primary-color);
}

.header__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header__register {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-light);
    background: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.header__login {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    transition: all 0.3s ease;
}

.header__burger {
    display: none;
}

/* Бонусы */
.bonuses {
    padding: 6rem 1rem 2rem;
    background: var(--background-dark);
}

.bonuses__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.bonus-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sport-bonus {
    position: relative;
}

.sport-bonus::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)),
                      url('images/bonus-sport-desk.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.casino-bonus {
    position: relative;
}

.casino-bonus::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)),
                      url('images/bonus-casino-desk.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.bonus-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bonus-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bonus-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    border-radius: 4px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.sport-bonus .bonus-button {
    background: var(--primary-color);
}

.casino-bonus .bonus-button {
    background: #5eccac;
}

/* Спорт */
.sport {
    padding: 4rem 1rem;
    background: linear-gradient(rgba(12, 12, 12, 0.85), rgba(12, 12, 12, 0.95)),
                url('images/sports-desk.webp') center/cover;
    position: relative;
    overflow: hidden;
}

.sport::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 59, 48, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sport__container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sport h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ea3f25, #ea3f25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sport__subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.sport__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.sport__stat {
    text-align: center;
}

.sport__stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ea3f25;
    margin-bottom: 0.5rem;
}

.sport__stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sport__button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #ea3f25, #ea3f25);
    border: none;
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(234, 63, 37, 0.3);
}

.sport__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.sport__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 63, 37, 0.4);
}

.sport__button:hover::before {
    left: 100%;
}

.sport__button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(234, 63, 37, 0.3);
}

/* Мобильные стили для секции спорт */
@media (max-width: 768px) {
    .sport {
        padding: 3rem 1rem;
        background: linear-gradient(rgba(12, 12, 12, 0.9), rgba(12, 12, 12, 0.95)),
                    url('images/sports-mob.webp') center/cover;
    }

    .sport h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .sport__subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .sport__stats {
        flex-direction: column;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .sport__stat-value {
        font-size: 2rem;
    }

    .sport__stat-label {
        font-size: 0.9rem;
    }

    .sport__button {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Казино */
.casino {
    padding: 6rem 1rem 4rem;
    background: var(--background-dark);
}

.casino__container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.casino h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
}

.casino__categories {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 16px 0;
    margin: 0 auto;
    max-width: 1200px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
}

.casino__categories::-webkit-scrollbar {
    display: none;
}

.category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.category:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transform: translateY(-1px);
}

.category:hover i {
    transform: scale(1.1);
}

.category.active {
    background: #ea3f25;
    color: var(--text-light);
    border-color: #ea3f25;
    box-shadow: 0 4px 15px rgba(234, 63, 37, 0.2);
}

.category.active i {
    color: var(--text-light);
}

.casino__games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.game-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    color: var(--text-light);
}

.game-info title {
    display: block;
    font-size: 14px;
    margin: 0 0 5px 0;
    font-weight: 600;
    color: var(--text-light);
}

.game-info p {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
}

/* Мобильные стили для категорий */
@media (max-width: 768px) {
    .casino__categories {
        gap: 8px;
        padding: 12px 0;
        margin: 0 -12px;
        padding-left: 12px;
        padding-right: 12px;
        justify-content: flex-start;
    }

    .category {
        padding: 8px 16px;
        font-size: 12px;
    }

    .category i {
        font-size: 14px;
    }

    .casino__games {
        margin: 2rem 0;
    }
}

/* Тематические разделы */
.thematic {
    padding: 4rem 1rem;
    background: var(--background-dark);
}

.thematic__container {
    max-width: 1400px;
    margin: 0 auto;
}

.thematic h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.thematic__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.thematic-card {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thematic-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.thematic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
    z-index: 1;
}

.thematic-card:nth-child(1) {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('images/live-poster-desk.webp') center/cover;
}

.thematic-card:nth-child(2) {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('images/crash-poster-desk.webp') center/cover;
}

.thematic-card:nth-child(3) {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('images/virtual-poster-desk.webp') center/cover;
}

.thematic-card:nth-child(4) {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('images/cyber-poster-desk.webp') center/cover;
}

/* Зеркало */
.mirror {
    padding: 4rem 1rem;
    background: rgba(255, 255, 255, 0.02);
}

.mirror__container {
    max-width: 1200px;
    margin: 0 auto;
}

.mirror__content {
    margin-top: 2rem;
}

.mirror__content ul {
    list-style: none;
    margin: 1rem 0;
}

.mirror__content li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.mirror__content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* FAQ */
.faq {
    padding: 4rem 1rem;
}

.faq__container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq__item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
}

/* Футер */
.footer {
    background-color: #1a1a1a;
    padding: 40px 0;
    margin-top: 60px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-left: 280px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.footer__column ul li {
    margin-bottom: 12px;
}

.footer__column ul li:first-child {
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer__column ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer__column ul li a:hover {
    color: #ea3f25;
}

.footer__support {
    color: #fff;
}

.footer__support h2 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer__support ul li {
    margin-bottom: 12px;
}

.footer__support ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.footer__support ul li a:hover {
    color: #ea3f25;
}

.footer__support ul li a i {
    font-size: 16px;
}

.footer__legal {
    color: #999;
}

.footer__legal h2 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

.footer__legal p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer__legal .age-restriction {
    font-size: 24px;
    font-weight: 600;
    color: #ea3f25;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-left: 0;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer__column ul li:first-child {
        margin-bottom: 15px;
    }

    .footer__support h2,
    .footer__legal h2 {
        margin-bottom: 15px;
    }
}

/* Нижняя панель - базовые стили */
.bottom-panel {
    position: fixed;
    left: 0;
    bottom: 0;
    background: var(--background-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.bottom-panel__container {
    display: flex;
    align-items: center;
}

.bottom-panel__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 12px;
    padding: 8px;
    transition: all 0.3s ease;
}

.bottom-panel__item i {
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.bottom-panel__item:hover {
    color: var(--text-light);
}

.bottom-panel__item:hover i {
    transform: translateY(-2px);
    color: var(--primary-color);
}

/* Десктопная версия нижней панели */
@media (min-width: 769px) {
    .bottom-panel {
        width: 240px;
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        background: var(--background-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .bottom-panel__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .bottom-panel__item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 8px;
        color: var(--text-gray);
        text-decoration: none;
        font-size: 13px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .bottom-panel__item:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--text-light);
    }

    .bottom-panel__item i {
        font-size: 16px;
        width: 20px;
        text-align: center;
    }

    .bottom-panel__item span {
        white-space: nowrap;
    }
}

/* Мобильная версия нижней панели */
@media (max-width: 768px) {
    .bottom-panel {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        background: var(--background-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px;
        z-index: 100;
        transform: translateY(0);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .bottom-panel--hidden {
        transform: translateY(100%);
    }

    .bottom-panel__container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .bottom-panel__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        font-size: 10px;
        padding: 6px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .bottom-panel__item:active {
        transform: scale(0.95);
    }

    .bottom-panel__item i {
        font-size: 20px;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .bottom-panel__item:active i {
        transform: scale(0.9);
    }
}

/* Мобильные стили */
@media (max-width: 768px) {
    .bonuses {
        padding: 140px 12px 24px;
    }

    .bonuses__container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 30px;
    }

    .bonus-card {
        min-height: 280px;
        border-radius: 12px;
        padding: 12px;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .sport-bonus::before,
    .casino-bonus::before {
        content: '';
        position: absolute;
        inset: 0;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.85;
        z-index: 0;
    }

    .sport-bonus::before {
        background-image: url('images/bonus-sport-mob.webp');
    }

    .casino-bonus::before {
        background-image: url('images/bonus-casino-mob.webp');
    }

    .bonus-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        gap: 6px;
    }

    .bonus-card h2 {
        font-size: 16px;
        line-height: 1.2;
        font-weight: 700;
        margin: 0;
    }

    .bonus-value {
        font-size: 24px;
        font-weight: 700;
        color: #FFD700;
        margin: 0;
    }

    .bonus-button {
        background: var(--primary-color);
        width: 100%;
        padding: 6px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        text-transform: uppercase;
        margin-top: auto;
        white-space: nowrap;
        letter-spacing: 0.5px;
    }

    .sport-bonus::after,
    .casino-bonus::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, 
            rgba(0,0,0,0.4) 0%, 
            rgba(0,0,0,0.6) 50%, 
            rgba(0,0,0,0.8) 100%);
        z-index: 1;
    }

    .bottom-panel {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        background: var(--background-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.5rem;
        z-index: 100;
    }

    .bottom-panel__container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        align-items: center;
        justify-items: center;
    }

    .support,
    .language {
        font-size: 0.8rem;
    }

    /* Мобильное меню */
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #fff;
        z-index: 1000;
        padding: 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
    }

    .mobile-menu--active {
        right: 0;
    }

    .mobile-menu__close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 24px;
        height: 24px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
    }

    .mobile-menu__close::before,
    .mobile-menu__close::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #333;
    }

    .mobile-menu__close::before {
        transform: rotate(45deg);
    }

    .mobile-menu__close::after {
        transform: rotate(-45deg);
    }

    .mobile-menu__list {
        list-style: none;
        padding: 0;
        margin: 40px 0 0;
    }

    .mobile-menu__item {
        margin-bottom: 15px;
    }

    .mobile-menu__link {
        display: block;
        padding: 10px 0;
        color: #333;
        text-decoration: none;
        font-size: 16px;
        transition: color 0.2s;
    }

    .mobile-menu__link:hover {
        color: #007bff;
    }

    .header__burger {
        display: none;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
    }

    .header__burger span {
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #333;
        transition: all 0.3s;
    }

    .header__burger span:nth-child(1) { top: 0; }
    .header__burger span:nth-child(2) { top: 9px; }
    .header__burger span:nth-child(3) { bottom: 0; }

    .header__nav {
        display: none;
    }

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

    .game-card {
        aspect-ratio: 4/3;
    }

    .sport {
        padding: 2rem 0;
        margin: 0 -1rem;
        width: calc(100% + 2rem);
    }

    .sport__container {
        padding: 0 1rem;
    }

    .sport h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .sport__subtitle {
        font-size: 1rem;
    }

    .sport__stats {
        font-size: 1.5rem;
        margin: 1rem 0;
    }

    .sport__button {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
        font-size: 0.9rem;
        background: var(--primary-color);
        border: none;
        border-radius: 4px;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 360px) {
    .header__register,
    .header__login {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .bonus-card h2 {
        font-size: 1.5rem;
    }

    .bonus-value {
        font-size: 2rem;
    }

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

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

.mobile-menu__logo {
    height: 32px;
}

.mobile-menu__logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Платежные методы и провайдеры */
.providers-payments {
    padding: 4rem 1rem;
    background: var(--background-dark);
    overflow: hidden;
}

.providers-payments__container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.providers-payments h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payments,
.providers {
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    padding-left: 280px;
}

.payments h3,
.providers h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: calc(100% - 280px);
    margin-left: auto;
    margin-right: auto;
}

/* Стили для слайдера */
.payments__slider,
.providers__slider {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.payments__track,
.providers__track {
    display: flex;
    width: fit-content;
}

.payments__row,
.providers__row {
    display: flex;
    gap: 4rem;
    padding: 0 2rem;
    animation: scroll 30s linear infinite;
}

.payments__row img,
.providers__row img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.payments__row img:hover,
.providers__row img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Анимация прокрутки */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Эффект затухания по краям */
.payments__slider::before,
.payments__slider::after,
.providers__slider::before,
.providers__slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.payments__slider::before,
.providers__slider::before {
    left: 0;
    background: linear-gradient(to right, var(--background-dark), transparent);
}

.payments__slider::after,
.providers__slider::after {
    right: 0;
    background: linear-gradient(to left, var(--background-dark), transparent);
}

/* Мобильные стили */
@media (max-width: 768px) {
    .providers-payments {
        padding: 2rem 0;
    }

    .providers-payments h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .payments h3,
    .providers h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .payments__row,
    .providers__row {
        gap: 2rem;
        padding: 0 1rem;
    }

    .payments__row img,
    .providers__row img {
        height: 30px;
    }

    .payments,
    .providers {
        padding-left: 0;
    }

    .payments h3,
    .providers h3 {
        width: 100%;
    }

    .payments__slider::before,
    .payments__slider::after,
    .providers__slider::before,
    .providers__slider::after {
        width: 50px;
    }
}

/* Приостановка анимации при наведении */
.payments__slider:hover .payments__row,
.providers__slider:hover .providers__row {
    animation-play-state: paused;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bonus-card,
.sport__container,
.casino__container,
.thematic__container,
.mirror__container,
.faq__container {
    animation: fadeIn 0.6s ease-out;
}

/* Боковая навигация - десктопная версия */
@media (min-width: 769px) {
    .header {
        padding-left: 280px;
    }

    .header__container {
        padding: 0 2rem;
        max-width: none;
        margin: 0;
    }

    .header__logo {
        margin-left: -18rem;
    }

    .header__actions {
        margin-left: auto;
    }

    .side-nav {
        position: fixed;
        left: 0;
        top: 0;
        width: 280px;
        height: 100vh;
        background: var(--background-dark);
        backdrop-filter: blur(10px);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 90;
        padding-top: 85px;
        padding-bottom: 85px;
        overflow-y: auto;
    }

    .side-nav::-webkit-scrollbar {
        width: 4px;
    }

    .side-nav::-webkit-scrollbar-track {
        background: transparent;
    }

    .side-nav::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 2px;
    }

    .side-nav__menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .side-nav__menu li {
        margin: 3px 0;
    }

    .side-nav__menu li a {
        display: flex;
        align-items: center;
        padding: 11px 20px;
        color: var(--text-light);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 14.5px;
        font-weight: 500;
        border-radius: 8px;
        margin: 0 10px;
        white-space: nowrap;
    }

    .side-nav__menu li a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--primary-color);
    }

    .side-nav__menu li a i {
        margin-right: 14px;
        font-size: 17px;
        width: 20px;
        text-align: center;
        color: var(--text-gray);
        transition: color 0.3s ease;
    }

    .side-nav__menu li a:hover i {
        color: var(--primary-color);
    }

    /* Обновляем отступы для основного контента */
    .bonuses,
    .sport,
    .casino,
    .thematic {
        margin-left: 280px;
        padding: 2rem;
        padding-top: 85px;
    }

    .bottom-panel {
        width: 280px;
    }
}

/* Мобильные стили */
@media (max-width: 768px) {
    .side-nav {
        display: none;
    }

    .bonuses,
    .sport,
    .casino,
    .thematic {
        margin-left: 0;
        padding: 1rem;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--background-dark);
        height: 56px;
        padding: 0;
        z-index: 1000;
    }

    .header__container {
        height: 100%;
        padding: 0 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header__burger {
        display: block;
        width: 24px;
        height: 24px;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
    }

    .header__burger i {
        font-size: 24px;
        color: var(--text-light);
    }

    .header__logo {
        height: 24px;
        margin-left: 0;
    }

    .header__actions {
        display: flex;
        gap: 8px;
    }

    .header__register,
    .header__login {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 4px;
    }

    /* Обновляем отступы для основного контента */
    .bonuses,
    .sport,
    .casino,
    .thematic {
        margin-left: 0;
        padding: 1rem;
        padding-top: 72px;
    }

    .header__logo {
        height: 28px;
    }

    .mobile-menu__logo {
        height: 28px;
    }
}

/* Дополнительные анимации */
.game-card {
    position: relative;
    overflow: hidden;
}

.game-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Мобильные стили */
@media (max-width: 768px) {
    /* Общие стили для всех секций */
    .bonuses,
    .sport,
    .casino,
    .thematic,
    .providers-payments {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .bonuses__container,
    .sport__container,
    .casino__container,
    .thematic__container,
    .providers-payments__container {
        padding: 0 12px;
        margin: 0;
        width: 100%;
    }

    /* Шапка */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--background-dark);
        height: 56px;
        padding: 0;
        z-index: 1000;
    }

    .header__container {
        height: 100%;
        padding: 0 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header__logo {
        height: 24px;
        margin-left: 0;
    }

    .header__actions {
        display: flex;
        gap: 8px;
    }

    .header__register,
    .header__login {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 4px;
    }

    /* Бонусы */
    .bonuses {
        padding-top: 72px;
    }

    .bonuses__container {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .bonus-card {
        aspect-ratio: 16/10;
        padding: 12px;
    }

    .bonus-content {
        gap: 8px;
    }

    .bonus-card h2 {
        font-size: 16px;
        line-height: 1.2;
    }

    .bonus-value {
        font-size: 24px;
    }

    .bonus-button {
        padding: 8px;
        font-size: 12px;
    }

    /* Спорт */
    .sport {
        padding-top: 72px;
        background-size: cover;
        background-position: center;
    }

    .sport__container {
        text-align: center;
    }

    .sport h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .sport__subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .sport__stats {
        font-size: 18px;
        margin: 16px 0;
    }

    .sport__button {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        border-radius: 4px;
    }

    /* Казино */
    .casino {
        padding-top: 72px;
    }

    .casino h2 {
        font-size: 24px;
        margin-bottom: 8px;
        text-align: center;
    }

    .casino__subtitle {
        font-size: 14px;
        margin-bottom: 16px;
        text-align: center;
    }

    .casino__categories {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding: 12px 0;
        margin: 0 -12px;
        padding-left: 12px;
        padding-right: 12px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .casino__categories::-webkit-scrollbar {
        display: none;
    }

    .category {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        color: var(--text-gray);
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        white-space: nowrap;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .category i {
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    .category:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-light);
        transform: translateY(-1px);
    }

    .category:hover i {
        transform: scale(1.1);
    }

    .category.active {
        background: #ea3f25;
        color: var(--text-light);
        border-color: #ea3f25;
        box-shadow: 0 4px 15px rgba(234, 63, 37, 0.2);
    }

    .category.active i {
        color: var(--text-light);
    }

    /* Тематические разделы */
    .thematic {
        padding-top: 72px;
    }

    .thematic h2 {
        font-size: 24px;
        margin-bottom: 8px;
        text-align: center;
    }

    .thematic__subtitle {
        font-size: 14px;
        margin-bottom: 16px;
        text-align: center;
    }

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

    .thematic-card {
        aspect-ratio: 1;
        padding: 12px;
    }

    .thematic-card h3 {
        font-size: 14px;
    }

    /* Платежные методы и провайдеры */
    .providers-payments {
        padding-top: 72px;
    }

    .providers-payments h2 {
        font-size: 24px;
        margin-bottom: 16px;
        text-align: center;
    }

    .payments h3,
    .providers h3 {
        font-size: 18px;
        margin-bottom: 12px;
        text-align: center;
    }

    .payments__row,
    .providers__row {
        gap: 16px;
    }

    .payments__row img,
    .providers__row img {
        height: 24px;
    }

    /* Нижняя панель */
    .bottom-panel {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        background: var(--background-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px;
        z-index: 100;
    }

    .bottom-panel__container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .bottom-panel__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        font-size: 10px;
    }

    .bottom-panel__item i {
        font-size: 20px;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 360px) {
    .header__register,
    .header__login {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .bonus-card h2 {
        font-size: 1.5rem;
    }

    .bonus-value {
        font-size: 2rem;
    }

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

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

.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--background-dark);
        z-index: 1001;
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .mobile-menu--active {
        right: 0;
    }
}

/* Боковая навигация - десктопная версия */
@media (min-width: 769px) {
    .header {
        padding-left: 280px;
    }

    .header__container {
        padding: 0 2rem;
    }
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--background-dark);
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu--active {
    right: 0;
}

.mobile-menu__header {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__logo {
    height: 20px;
}

.mobile-menu__close {
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--text-light);
    font-size: 16px;
}

.mobile-menu__nav {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-menu__item i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.mobile-menu__item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu__item:hover i {
    color: var(--primary-color);
}

.mobile-menu__footer {
    margin-top: auto;
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu__support,
.mobile-menu__language {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-gray);
    font-size: 12px;
}

.mobile-menu__support i,
.mobile-menu__language i {
    font-size: 14px;
}

/* Стили для бургер-кнопки */
.header__burger {
    display: none;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--text-light);
    font-size: 16px;
}

@media (max-width: 768px) {
    .header__burger {
        display: block;
    }

    .mobile-menu {
        display: flex;
    }
}

.casino__button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #ea3f25, #ea3f25);
    border: none;
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(234, 63, 37, 0.3);
    margin-top: 2rem;
}

.casino__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.casino__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 63, 37, 0.4);
}

.casino__button:hover::before {
    left: 100%;
}

.casino__button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(234, 63, 37, 0.3);
}

/* Мобильные стили для кнопки */
@media (max-width: 768px) {
    .casino__button {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 2rem;
        font-size: 1rem;
        margin-top: 1.5rem;
    }
}

/* Зеркало казино */
.mirror-info {
    padding: 4rem 1rem;
    background: var(--background-dark);
}

.mirror-info__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-left: 280px;
}

.mirror-info h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ea3f25, #ea3f25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mirror-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-light);
    text-align: center;
}

.mirror-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mirror-info ul {
    list-style: none;
    margin: 1.5rem auto;
    padding-left: 0;
    max-width: 800px;
}

.mirror-info li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
}

.mirror-info li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ea3f25;
    font-size: 1.5rem;
}

.mirror-info__table {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.mirror-info__table th,
.mirror-info__table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mirror-info__table th {
    background: rgba(234, 63, 37, 0.1);
    color: var(--text-light);
    font-weight: 600;
}

.mirror-info__table td {
    color: var(--text-gray);
}

.mirror-info__reviews {
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    max-width: 800px;
}

.mirror-info__review {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid #ea3f25;
}

.mirror-info__review:last-child {
    margin-bottom: 0;
}

.mirror-info__review-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.mirror-info__review-author {
    color: var(--text-light);
    font-weight: 500;
}

/* Мобильные стили */
@media (max-width: 768px) {
    .mirror-info {
        padding: 2rem 1rem;
    }

    .mirror-info__container {
        padding-left: 0;
    }

    .mirror-info h2 {
        font-size: 22px;
        margin-bottom: 1.5rem;
    }

    .mirror-info h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 1rem;
    }

    .mirror-info p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
    }

    .mirror-info li {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .mirror-info__table {
        display: table;
        width: 100%;
        border-collapse: collapse;
        margin: 2rem 0;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mirror-info__table tr {
        display: table-row;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mirror-info__table th,
    .mirror-info__table td {
        display: table-cell;
        padding: 1rem;
        text-align: left;
        vertical-align: top;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mirror-info__table th {
        background: transparent;
        color: #ea3f25;
        font-weight: 600;
        font-size: 1rem;
        width: 40%;
    }

    .mirror-info__table td {
        color: var(--text-light);
        font-size: 1rem;
        line-height: 1.5;
        background: transparent;
        width: 60%;
    }

    .mirror-info__table tr:last-child {
        border-bottom: none;
    }

    .mirror-info__reviews {
        margin: 2rem 0;
        padding: 1rem;
    }

    .mirror-info__review {
        padding: 0.8rem;
    }
} 