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

body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.breadcrumb {
    background: #1a1a1a;
    padding: 8px 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
    margin-right: 8px;
}

.breadcrumb span {
    color: #fff;
}

.breadcrumb a:hover {
    color: #fff;
}

.header {
    background: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.logo-text {
    color: #fff;
}

.logo-accent {
    color: #ffd700;
}

.promo-badge {
    background: #ffd700;
    color: #000;
    padding: 8px;
    border-radius: 8px;
}

.header-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-secondary {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #555;
}

.btn-primary {
    background: #4a9eff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #3a8eef;
}

.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 20px;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?w=800&h=600') center/cover;
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.welcome-bonus {
    max-width: 500px;
}

.bonus-amount {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}

.bonus-description {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 30px;
}

.btn-claim {
    background: #333;
    color: #fff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-claim:hover {
    background: #555;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.hero-image img {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
}

.rewards-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 60px 20px;
    margin: 20px 0;
}

.rewards-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.rewards-text {
    flex: 1;
}

.rewards-title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.rewards-subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.btn-claim-dark {
    background: #444;
    color: #fff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-claim-dark:hover {
    background: #666;
    transform: translateY(-2px);
}

.rewards-image img {
    max-width: 250px;
    height: auto;
    border-radius: 15px;
}

.categories-nav {
    background: #1a1a1a;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.categories-nav.sticky {
    position: sticky;
    top: 70px;
    z-index: 99;
}

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

.categories-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.nav-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-btn {
    background: #333;
    color: #ccc;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.nav-btn:hover,
.nav-btn.active {
    background: #555;
    color: #fff;
}

.search-section {
    padding: 20px 0;
    background: #0a0a0a;
}

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

.search-box {
    background: #1a1a1a;
    border-radius: 25px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #333;
}

.search-icon {
    color: #888;
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.search-box input::placeholder {
    color: #888;
}

.filter-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 5px;
}

.filter-btn:hover {
    color: #fff;
}

.games-section {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
}

.section-count {
    color: #888;
    font-size: 14px;
}

.section-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    cursor: pointer;
}

.section-nav:hover {
    color: #fff;
}

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

.game-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

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

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

.game-info {
    padding: 15px;
}

.game-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}

.game-provider {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.seo-content {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    line-height: 1.8;
}

.seo-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.seo-content h2 {
    font-size: 26px;
    margin: 30px 0 15px 0;
    color: #fff;
    line-height: 1.3;
}

.seo-content h3 {
    font-size: 20px;
    margin: 25px 0 15px 0;
    color: #ffd700;
    line-height: 1.3;
}

.seo-content p {
    margin-bottom: 15px;
    color: #ccc;
    text-align: justify;
}

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

.seo-content li {
    margin-bottom: 8px;
    color: #ccc;
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #2d2d2d;
    border-radius: 10px;
    overflow: hidden;
}

.seo-content th,
.seo-content td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #444;
}

.seo-content th {
    background: #333;
    font-weight: bold;
    color: #fff;
}

.seo-content td {
    color: #ccc;
}

.seo-content tr:last-child td {
    border-bottom: none;
}

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

.language-container {
    display: flex;
    justify-content: center;
}

.language-selector {
    background: #333;
    border-radius: 25px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.language-selector:hover {
    background: #555;
}

.flag-icon {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    overflow: hidden;
}

.dropdown-arrow {
    color: #888;
}

.help-section {
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.help-container {
    max-width: 400px;
    margin: 0 auto;
}

.help-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.livechat-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    transition: background 0.3s;
    width: 100%;
    justify-content: center;
}

.livechat-btn:hover {
    background: #555;
}

.footer {
    background: #0a0a0a;
    padding: 40px 20px 20px;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

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

.footer-column a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-buttons {
    display: flex;
    gap: 10px;
}

.btn-footer-secondary {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-footer-secondary:hover {
    background: #555;
}

.btn-footer-primary {
    background: #4a9eff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-footer-primary:hover {
    background: #3a8eef;
}

.footer-logos {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.logo-item img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logo-item:hover img {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    text-align: center;
}

.footer-disclaimer p {
    color: #888;
    font-size: 12px;
    line-height: 1.5;
}

.footer-badges {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

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

.age-number {
    background: #fff;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-text {
    font-size: 12px;
    color: #888;
    line-height: 1.3;
}

.cga-badge img {
    height: 60px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero::before {
        width: 100%;
        height: 50%;
        top: 50%;
    }
    
    .bonus-amount {
        font-size: 36px;
    }
    
    .rewards-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-buttons {
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .footer-badges {
        flex-direction: column;
        gap: 20px;
    }
    
    .seo-content {
        padding: 25px;
    }
    
    .seo-content h1 {
        font-size: 26px;
    }
    
    .seo-content h2 {
        font-size: 22px;
    }
    
    .seo-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .bonus-amount {
        font-size: 28px;
    }
    
    .rewards-title {
        font-size: 28px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .search-box {
        padding: 12px 15px;
    }
    
    .seo-content {
        padding: 20px;
    }
    
    .categories-nav.sticky {
        top: 60px;
    }
}