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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Breadcrumb */
.breadcrumb {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: #FFD700;
    text-decoration: none;
}

.breadcrumb span {
    color: #888;
}

/* Header */
.header {
    background: #000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

.logo svg {
    height: 40px;
}

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

.btn-signup {
    background: #FFD700;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.btn-login {
    background: #00C851;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.search-btn, .menu-btn {
    background: none;
    border: none;
    color: #fff;
    padding: 10px;
    cursor: pointer;
}

.menu-btn {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.menu-btn span {
    width: 20px;
    height: 2px;
    background: #fff;
}

/* Hero Section */
.hero {
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 200, 81, 0.1) 100%);
    z-index: 1;
}

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

.hero-content {
    text-align: center;
    flex: 1;
}

.welcome-text {
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
    font-style: italic;
}

.bonus-amount {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.bonus-amount span {
    font-size: 24px;
    color: #FFD700;
}

.free-spins {
    font-size: 24px;
    color: #00C851;
    font-weight: bold;
    margin-bottom: 5px;
}

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

.bonus-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.dot.active {
    background: #FFD700;
}

.winner-card {
    background: linear-gradient(135deg, #00C851 0%, #007E33 100%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 200px;
    margin-left: 40px;
    box-shadow: 0 8px 25px rgba(0, 200, 81, 0.3);
}

.winner-icon {
    margin-bottom: 10px;
}

.winner-amount {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.winner-label {
    font-size: 12px;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.winner-details {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

/* Sticky Navigation */
.sticky-nav {
    background: #111;
    padding: 15px 0;
    position: sticky;
    top: 71px;
    z-index: 999;
    border-bottom: 1px solid #333;
}

.nav-items {
    display: flex;
    gap: 30px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

/* Games Section */
.games-section {
    padding: 30px 0;
}

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

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

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

.arrow-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

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

.game-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 16/9;
}

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

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

.game-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 20px 15px 15px;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}

.game-balance {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 200, 81, 0.9);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

/* SEO Content */
.seo-content {
    background: #0f0f0f;
    padding: 40px 0;
}

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

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

.seo-content h2 {
    color: #00C851;
    font-size: 24px;
    margin: 30px 0 15px;
}

.seo-content h3 {
    color: #fff;
    font-size: 20px;
    margin: 25px 0 12px;
}

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

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.seo-content th {
    background: #FFD700;
    color: #000;
    padding: 12px;
    text-align: left;
    font-weight: bold;
}

.seo-content td {
    padding: 12px;
    border-bottom: 1px solid #333;
    color: #fff;
}

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

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

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

.seo-content ol li {
    list-style-type: decimal;
}

.seo-content ul li {
    list-style-type: disc;
}

/* Footer */
.footer {
    background: #000;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #888;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .winner-card {
        margin-left: 0;
    }
    
    .welcome-text {
        font-size: 28px;
    }
    
    .bonus-amount {
        font-size: 36px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .nav-items {
        gap: 20px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .seo-content {
        padding: 20px 0;
    }
    
    .seo-content h1 {
        font-size: 24px;
    }
    
    .seo-content h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-buttons {
        gap: 5px;
    }
    
    .btn-signup,
    .btn-login {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        gap: 20px;
    }
    
    .nav-items {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .sticky-nav {
        top: 65px;
    }
}