/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0D1117;
    color: #FFFFFF;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка */
.header {
    background: #161B22;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid #30363D;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.nav-link:hover {
    color: #FFA500;
}

.header-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #FFA500;
    color: #000000;
}

.btn-primary:hover {
    background: #FF8C00;
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #30363D;
}

.btn-outline:hover {
    border-color: #FFA500;
    color: #FFA500;
}

.btn-secondary {
    background: #30363D;
    color: #FFFFFF;
}

.btn-secondary:hover {
    background: #40464D;
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #FFFFFF;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: #161B22;
    padding: 20px;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 99;
    border-bottom: 1px solid #30363D;
}

.mobile-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

/* Баннер */
.banner {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1A1F2E 0%, #0D1117 100%);
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.banner-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-description {
    font-size: 20px;
    color: #B0B8C0;
    margin-bottom: 30px;
}

.banner-buttons {
    display: flex;
    gap: 15px;
}

.banner-image img {
    width: 100%;
    border-radius: 12px;
}

/* Секции */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

/* Преимущества */
.advantages {
    background: #161B22;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    background: #1F2937;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.advantage-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.advantage-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.advantage-text {
    color: #B0B8C0;
    font-size: 15px;
}

/* Игры */
.games {
    background: #0D1117;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.game-card {
    background: #1F2937;
    border-radius: 12px;
    overflow: hidden;
}

.game-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-info {
    padding: 15px;
}

.game-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.game-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #FFA500;
    color: #000000;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
}

.game-btn:hover {
    background: #FF8C00;
}

.games-more {
    text-align: center;
}

/* Категории */
.categories {
    background: #161B22;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.category-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.category-title {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    z-index: 2;
}

/* Бонусы */
.bonuses {
    background: #0D1117;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: #1F2937;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.bonus-main {
    background: linear-gradient(135deg, #FFA500 0%, #FF6B35 100%);
    grid-column: 1 / -1;
}

.bonus-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.bonus-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.bonus-value {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 15px;
}

.bonus-text {
    color: #B0B8C0;
    margin-bottom: 20px;
}

.bonus-main .bonus-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Провайдеры */
.providers {
    background: #161B22;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.provider-item {
    background: #1F2937;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-item img {
    max-width: 100%;
    height: 50px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #FFA500 0%, #FF6B35 100%);
    text-align: center;
}

.cta-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Футер */
.footer {
    background: #161B22;
    padding: 60px 0 20px;
    border-top: 1px solid #30363D;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-about {
    color: #B0B8C0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-link {
    display: block;
    color: #B0B8C0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: #FFA500;
}

.footer-contact {
    color: #B0B8C0;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-social {
    margin-top: 15px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #1F2937;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #30363D;
    text-align: center;
}

.footer-copy {
    color: #B0B8C0;
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-warning {
    color: #B0B8C0;
    font-size: 13px;
}

/* Текстовые секции */
.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #B0B8C0;
    margin-bottom: 20px;
}

.about-casino,
.registration-info,
.bonus-info,
.payments,
.mobile-app,
.betting,
.live-casino-info,
.conclusion {
    background: #0D1117;
}

.about-casino:nth-child(odd),
.registration-info:nth-child(odd),
.bonus-info:nth-child(odd),
.payments:nth-child(odd),
.mobile-app:nth-child(odd),
.betting:nth-child(odd),
.live-casino-info:nth-child(odd) {
    background: #161B22;
}

/* Промо баннеры */
.promo-banner {
    background: #161B22;
    padding: 60px 0;
}

.promo-banner-alt {
    background: #0D1117;
}

.promo-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #1F2937;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #30363D;
}

.promo-banner-img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.promo-banner-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-banner-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* FAQ */
.faq {
    background: #161B22;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #1F2937;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: #B0B8C0;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .banner-image {
        order: -1;
    }

    .promo-banner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav,
    .header-buttons {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .banner {
        padding: 100px 0 60px;
    }

    .banner-title {
        font-size: 36px;
    }

    .banner-description {
        font-size: 18px;
    }

    .banner-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .advantages-grid,
    .games-grid,
    .categories-grid,
    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .bonus-main {
        grid-column: 1;
    }

    .category-card img {
        height: 250px;
    }

    .promo-banner-text h3 {
        font-size: 24px;
    }

    .promo-banner-text p {
        font-size: 16px;
    }

    .promo-banner-content {
        padding: 30px 20px;
    }
}
