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

body {
    font-family: 'Arial', sans-serif;
    background: #2B1810;
    color: #FFFFFF;
    overflow-x: hidden;
}

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

.breadcrumb {
    background: #1a0f08;
    padding: 8px 0;
    font-size: 12px;
}

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

.breadcrumb span {
    color: #999;
}

.header {
    background: #2B1810;
    padding: 15px 0;
    border-bottom: 1px solid #4A3429;
}

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

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

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

.logo svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-login {
    background: #FFD700;
    color: #2B1810;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-signup {
    background: rgba(139, 69, 19, 0.8);
    color: #FFD700;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #8B4513;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background: #8B4513;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.categories-bar {
    background: #1a0f08;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.categories-bar.scrolled {
    background: rgba(26, 15, 8, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #4A3429;
}

.categories {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #999;
}

.category.active,
.category:hover {
    color: #FFD700;
}

.category svg {
    transition: all 0.3s ease;
}

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

.category span {
    font-size: 12px;
    font-weight: 500;
}

.hero {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 24, 16, 0.8) 0%, rgba(139, 69, 19, 0.6) 100%);
}

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

.hero-text {
    flex: 1;
    max-width: 500px;
}

.bonus-title {
    font-size: 48px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 5px;
}

.bonus-subtitle {
    font-size: 24px;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 20px;
}

.bonus-description {
    font-size: 28px;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
}

.bonus-terms {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-style: italic;
}

.btn-deposit {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #2B1810;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-deposit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
}

.hero-image {
    flex: 0 0 300px;
    text-align: center;
}

.character-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.payment-methods {
    background: #1a0f08;
    padding: 30px 0;
    text-align: center;
    border: 1px solid #4A3429;
    margin: 20px;
    border-radius: 10px;
}

.payment-title {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.payment-logos img {
    height: 30px;
    width: auto;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.payment-logos img:hover {
    transform: scale(1.1);
    filter: brightness(1.5);
}

.btn-deposit-methods {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #2B1810;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-deposit-methods:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.search-section {
    padding: 30px 0;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    fill: #999;
}

.search-box input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: #1a0f08;
    border: 1px solid #4A3429;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

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

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

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

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
}

.section-title svg {
    fill: #FFD700;
}

.view-all {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.view-all:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

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

.game-card {
    background: #1a0f08;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #4A3429;
    position: relative;
}

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

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

.game-title {
    padding: 15px;
    font-weight: bold;
    color: #FFFFFF;
    font-size: 16px;
}

.game-subtitle {
    padding: 0 15px;
    color: #FFD700;
    font-size: 12px;
    font-weight: bold;
}

.game-feature {
    padding: 0 15px 15px;
    color: #999;
    font-size: 12px;
}

.daily-offers {
    padding: 40px 0;
}

.offers-content {
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.offers-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 24, 16, 0.7) 0%, rgba(139, 69, 19, 0.5) 100%);
}

.offers-text {
    position: relative;
    z-index: 2;
}

.offers-title {
    font-size: 36px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.offers-subtitle {
    font-size: 18px;
    color: #FFD700;
    line-height: 1.4;
}

.content-section {
    padding: 60px 0;
    background: #1a0f08;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.content h1 {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.content h2 {
    font-size: 24px;
    color: #FFD700;
    margin: 40px 0 20px;
    font-weight: bold;
}

.content h3 {
    font-size: 20px;
    color: #FFC107;
    margin: 30px 0 15px;
    font-weight: bold;
}

.content p {
    margin-bottom: 20px;
    color: #E0E0E0;
    text-align: justify;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #2B1810;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.content table th {
    background: #FFD700;
    color: #2B1810;
    padding: 15px;
    font-weight: bold;
    text-align: left;
}

.content table td {
    padding: 15px;
    border-bottom: 1px solid #4A3429;
    color: #E0E0E0;
}

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

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

.content ol {
    margin: 20px 0;
    padding-left: 20px;
}

.content ol li {
    margin-bottom: 10px;
    color: #E0E0E0;
}

.content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content ul li {
    margin-bottom: 10px;
    color: #E0E0E0;
    list-style-type: disc;
}

.footer {
    background: #0d0704;
    padding: 60px 0 20px;
    border-top: 1px solid #4A3429;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

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

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

.footer-links a:hover {
    color: #FFD700;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 20px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.payment-icons img:hover {
    opacity: 1;
}

.banking-partners {
    margin-bottom: 30px;
}

.banking-title {
    color: #FFD700;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.banking-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.banking-logos span {
    color: #999;
    font-size: 12px;
    font-weight: 500;
}

.crypto-section {
    margin-bottom: 30px;
}

.crypto-title {
    color: #FFD700;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.crypto-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.crypto-icon {
    width: 35px;
    height: 35px;
    background: #2B1810;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-weight: bold;
    border: 1px solid #4A3429;
    transition: all 0.3s ease;
}

.crypto-icon:hover {
    background: #FFD700;
    color: #2B1810;
    transform: scale(1.1);
}

.age-verification {
    margin-bottom: 20px;
}

.age-badge {
    width: 60px;
    height: 60px;
    border: 3px solid #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #2B1810;
}

.age-number {
    color: #FFD700;
    font-size: 18px;
    font-weight: bold;
}

.copyright {
    color: #666;
    font-size: 12px;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a0f08;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid #4A3429;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    padding: 10px;
}

.nav-item.active,
.nav-item:hover {
    color: #FFD700;
}

.nav-item.center {
    position: relative;
}

.center-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    border: 3px solid #1a0f08;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.center-icon svg {
    fill: #2B1810;
}

.nav-item span {
    font-size: 10px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-image {
        flex: none;
        max-width: 250px;
    }
    
    .bonus-title {
        font-size: 36px;
    }
    
    .bonus-description {
        font-size: 22px;
    }
    
    .categories {
        gap: 15px;
    }
    
    .category span {
        font-size: 10px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .content h1 {
        font-size: 26px;
    }
    
    .content h2 {
        font-size: 20px;
    }
    
    .content h3 {
        font-size: 18px;
    }
    
    .offers-content {
        padding: 40px 20px;
    }
    
    .offers-title {
        font-size: 28px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .payment-logos {
        gap: 10px;
    }
    
    .payment-logos img {
        height: 25px;
    }
    
    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .bonus-title {
        font-size: 28px;
    }
    
    .bonus-description {
        font-size: 18px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .search-box input {
        padding: 12px 12px 12px 45px;
        font-size: 14px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .content {
        padding: 0 10px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}