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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    line-height: 1.6;
}

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

.header {
    background: rgba(0, 20, 60, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.menu-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.header-center .gift-icon {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

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

.btn-primary {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    border: none;
}

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

.hero {
    margin-top: 80px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.welcome-bonus {
    max-width: 600px;
    margin: 0 auto;
}

.bonus-text {
    margin-bottom: 30px;
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-desc {
    font-size: 1.2rem;
    opacity: 0.9;
}

.btn-cta {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.categories-sticky {
    background: rgba(0, 20, 60, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 80px;
    z-index: 999;
    transition: all 0.3s ease;
}

.categories-sticky.scrolled {
    top: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.categories-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.categories-nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
    background: rgba(74, 144, 226, 0.8);
    color: white;
    border-color: #4A90E2;
}

.main {
    padding: 30px 0;
}

.search-bar {
    margin-bottom: 30px;
}

.search-input-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
}

.search-input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    font-size: 16px;
    outline: none;
    backdrop-filter: blur(10px);
}

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

.search-input:focus {
    border-color: #4A90E2;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}

.filter-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

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

.promo-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promo-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.promo-subtitle {
    font-size: 16px;
    opacity: 0.8;
}

.games-section {
    margin-bottom: 40px;
}

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

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

.section-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #4A90E2;
}

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

.game-info {
    padding: 15px;
}

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

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

.seo-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FFD700;
    text-align: center;
}

.seo-content h2 {
    font-size: 2rem;
    margin: 30px 0 15px 0;
    color: #4A90E2;
    border-bottom: 2px solid rgba(74, 144, 226, 0.3);
    padding-bottom: 10px;
}

.seo-content h3 {
    font-size: 1.5rem;
    margin: 25px 0 15px 0;
    color: #FFB347;
}

.seo-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 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(74, 144, 226, 0.3);
    font-weight: 600;
    color: #FFD700;
}

.seo-content table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.seo-content ol li,
.seo-content ul li {
    margin: 10px 0;
    line-height: 1.6;
}

.seo-content ol li strong,
.seo-content ul li strong {
    color: #4A90E2;
}

.rewards-section {
    margin: 50px 0;
}

.rewards-banner {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.rewards-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.rewards-text {
    flex: 1;
}

.rewards-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.rewards-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.btn-rewards {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.bof-logo {
    font-size: 24px;
    font-weight: bold;
    opacity: 0.7;
}

.language-section {
    margin: 30px 0;
    text-align: center;
}

.language-selector {
    display: inline-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: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.help-section {
    text-align: center;
    margin: 40px 0;
}

.help-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.livechat-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(74, 144, 226, 0.8);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.livechat-btn:hover {
    background: rgba(74, 144, 226, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.license-info {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer {
    background: rgba(0, 10, 30, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.provider-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.age-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

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

.age-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.breadcrumb {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.breadcrumb ol li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.breadcrumb ol li a {
    color: #4A90E2;
    text-decoration: none;
}

.breadcrumb ol li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .header-center {
        order: 3;
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }
    
    .bonus-amount {
        font-size: 2rem;
    }
    
    .categories-nav {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
    
    .category-btn {
        flex-shrink: 0;
    }
    
    .rewards-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .seo-content {
        padding: 20px;
    }
    
    .seo-content h1 {
        font-size: 2rem;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
    }
    
    .age-warning {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .bonus-amount {
        font-size: 1.8rem;
    }
    
    .btn-cta {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-content {
        padding: 15px;
    }
    
    .seo-content table {
        font-size: 12px;
    }
    
    .seo-content table th,
    .seo-content table td {
        padding: 10px 8px;
    }
}