* {
    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;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.logo span {
    color: #ffd700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffd700;
}

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

.btn-login {
    padding: 10px 20px;
    border: 2px solid #ffd700;
    color: #ffd700;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #ffd700;
    color: #000;
}

.btn-signup {
    padding: 10px 20px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-signup:hover {
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('/banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-banner {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #ffd700;
    backdrop-filter: blur(10px);
}

.bonus-offer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bonus-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bonus-percent {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.bonus-spins {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: bold;
    color: #ff6b35;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.welcome-text {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 10px;
}

.btn-bonus {
    padding: 18px 40px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.btn-bonus:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
}

/* Intro Section */
.intro {
    padding: 80px 0;
    background: #111;
}

.intro p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

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

.feature-card {
    background: rgba(255, 215, 0, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 15px;
}

.feature-text {
    color: #ccc;
    line-height: 1.6;
}

/* Games Section */
.games {
    padding: 80px 0;
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-subtitle {
    font-size: 18px;
    color: #ccc;
}

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

.game-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #333;
}

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

.game-image {
    height: 180px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    position: relative;
}

.game-info {
    padding: 20px;
}

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

.game-provider {
    color: #ffd700;
    font-size: 14px;
}

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

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

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

.seo-content h2 {
    font-size: 28px;
    color: #ffd700;
    margin: 40px 0 20px;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
}

.seo-content h3 {
    font-size: 24px;
    color: #ff6b35;
    margin: 30px 0 15px;
}

.seo-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ccc;
    text-align: justify;
}

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

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

.seo-content th {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
    font-weight: bold;
}

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

.seo-content tr:hover td {
    background: rgba(255, 215, 0, 0.1);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.btn-cta {
    padding: 18px 40px;
    background: #000;
    color: #ffd700;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

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

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

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.footer-logo span {
    color: #ffd700;
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu,
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-banner {
        padding: 30px 20px;
    }
    
    .bonus-percent {
        font-size: 32px;
    }
    
    .bonus-spins {
        font-size: 24px;
    }
    
    .features-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .seo-content h1 {
        font-size: 24px;
    }
    
    .seo-content h2 {
        font-size: 22px;
    }
    
    .seo-content h3 {
        font-size: 20px;
    }
    
    .seo-content table {
        font-size: 14px;
    }
    
    .seo-content th,
    .seo-content td {
        padding: 10px 8px;
    }
    
    .cta-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 20px 15px;
    }
    
    .btn-bonus,
    .btn-cta {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .seo-content table {
        font-size: 12px;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}