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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #2d1b35 0%, #1a0d20 100%);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: rgba(45, 27, 53, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 13, 32, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.burger-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.burger-menu span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.logo {
    font-weight: 800;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 1px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gift-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #e91e63;
    border-radius: 8px;
    cursor: pointer;
    color: #ffffff;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-dark {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.hero {
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1518611012118-696072aa579a?w=1200&h=600') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.hero-banner {
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.3);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.banner-amount {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-bonus {
    font-size: 48px;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 0 2px 15px rgba(251, 191, 36, 0.5);
    margin-top: -10px;
}

.banner-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.banner-visual img {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.categories-nav {
    background: rgba(26, 13, 32, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.categories-nav .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.categories-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.categories-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.category-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-btn.active,
.category-btn:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-color: transparent;
    transform: translateY(-2px);
}

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

.search-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.search-input {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px 15px 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-input svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.search-input input {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    outline: none;
}

.search-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.filter-btn {
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.promo-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.promo-card {
    background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-card.sportsbook {
    background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.promo-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.promo-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.promo-card img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.section-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.view-all-btn {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.view-all-btn:hover {
    color: #f7931e;
}

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

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.game-info {
    padding: 15px;
}

.game-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.game-provider {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.3;
}

.seo-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #ff6b35;
    margin: 40px 0 20px;
    line-height: 1.4;
}

.seo-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fbbf24;
    margin: 30px 0 15px;
    line-height: 1.4;
}

.seo-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.7;
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.seo-content table th,
.seo-content table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-content table th {
    background: rgba(255, 107, 53, 0.2);
    font-weight: 600;
    color: #ffffff;
}

.seo-content table td {
    color: rgba(255, 255, 255, 0.9);
}

.seo-content ul,
.seo-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.seo-content ul li,
.seo-content ol li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    line-height: 1.6;
}

.seo-content ul li::marker {
    color: #ff6b35;
}

.seo-content ol li::marker {
    color: #ff6b35;
    font-weight: 600;
}

.footer {
    background: rgba(26, 13, 32, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.15);
}

.flag-icon {
    width: 24px;
    height: 24px;
}

.help-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.help-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

.chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid #ff6b35;
    border-radius: 8px;
    padding: 12px 20px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chat-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ff6b35;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.footer-providers {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.provider-logos {
    display: flex;
    align-items: center;
    gap: 30px;
}

.provider-logos img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.provider-logos img:hover {
    opacity: 1;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.license-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    line-height: 1.5;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 15px;
}

.age-badge {
    background: #ff6b35;
    color: #ffffff;
    font-weight: 800;
    font-size: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.age-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    max-width: 200px;
}

@media (max-width: 768px) {
    .header-content {
        padding: 12px 0;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .banner-amount {
        font-size: 28px;
    }
    
    .banner-bonus {
        font-size: 36px;
    }
    
    .categories-nav {
        top: 60px;
    }
    
    .categories-list {
        gap: 10px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .promo-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .promo-card {
        padding: 20px;
    }
    
    .search-bar {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-btn {
        align-self: stretch;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .seo-content h1 {
        font-size: 28px;
    }
    
    .seo-content h2 {
        font-size: 24px;
    }
    
    .seo-content h3 {
        font-size: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-actions {
        align-items: center;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .age-restriction {
        justify-content: center;
    }
    
    .seo-content table {
        font-size: 14px;
    }
    
    .seo-content table th,
    .seo-content table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-banner {
        padding: 25px 15px;
    }
    
    .banner-amount {
        font-size: 24px;
    }
    
    .banner-bonus {
        font-size: 30px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .provider-logos {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .provider-logos img {
        height: 30px;
    }
}