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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

.header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.logo .tagline {
    font-size: 0.9rem;
    opacity: 0.8;
}

.logo a {
    color: white;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav a:hover {
    color: #cccccc;
    border-bottom: 2px solid #cccccc;
}

.cta-button {
    background: white;
    color: black;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.age-warning {
    background: #333;
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
}

.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: #000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-cta {
    background: #000;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.hero-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    font-weight: bold;
}

.welcome {
    padding: 4rem 0;
    text-align: center;
    background: white;
}

.welcome h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.welcome > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

.entertainment-notice {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    color: #666;
    font-weight: bold;
    border-left: 4px solid #000;
}

.loyalty {
    padding: 4rem 0;
    background: #f8f9fa;
}

.loyalty h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.loyalty > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.loyalty-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tier {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.tier.featured {
    border-color: #000;
    position: relative;
    transform: scale(1.05);
}

.tier.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: white;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 15px;
}

.tier h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.tier ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.tier li {
    padding: 0.5rem 0;
    color: #555;
}

.tier-notice {
    font-size: 0.8rem;
    color: #666;
    font-weight: bold;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 3px;
}

.comparison {
    padding: 4rem 0;
    background: white;
}

.comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #000;
    color: white;
    font-weight: bold;
}

.comparison-header > div {
    padding: 1rem;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 1rem;
    text-align: center;
}

.feature {
    text-align: left;
    font-weight: 500;
    background: #f8f9fa;
}

.us {
    background: #e8f5e8;
    color: #2d5c2d;
    font-weight: bold;
}

.them {
    background: #fff5f5;
    color: #8b5a5a;
}

.comparison-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    font-weight: bold;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    max-width: 800px;
    margin: 0 auto;
}

.benefits {
    padding: 4rem 0;
    background: #f8f9fa;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
}

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

.benefit {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000;
}

.benefit p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.benefit small {
    background: #000;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.news {
    padding: 4rem 0;
    background: white;
}

.news h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
}

.news-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.news-item {
    display: none;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    text-align: center;
}

.news-item.active {
    display: block;
}

.news-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.news-item p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.news-item small {
    background: #000;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.carousel-controls {
    text-align: center;
}

.carousel-btn {
    background: #000;
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    font-size: 1.2rem;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #333;
    transform: scale(1.1);
}

.age-restriction-banner {
    background: #000;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.restriction-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.restriction-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.restriction-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.restriction-links a {
    color: #ccc;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.restriction-links a:hover {
    color: white;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem 0;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: white;
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

.legal-page {
    padding: 2rem 0;
    background: white;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-notice {
    background: #000;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #555;
}

.age-warning-text {
    background: #000;
    color: white;
    padding: 0.8rem;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
}

.responsible-gaming {
    background: #f8f9fa;
    color: #000;
    padding: 0.8rem;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
    border-left: 4px solid #000;
}

.no-purchase-notice {
    background: #e8f5e8;
    color: #2d5c2d;
    padding: 0.8rem;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
    border-left: 4px solid #2d5c2d;
}

.virtual-currency-notice {
    background: #fff5f5;
    color: #8b5a5a;
    padding: 0.8rem;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
    border-left: 4px solid #8b5a5a;
}

.legal-footer {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border: 2px solid #000;
}

.legal-footer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #000;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .loyalty-tiers {
        grid-template-columns: 1fr;
    }
    
    .tier.featured {
        transform: none;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        text-align: left;
        border-bottom: 1px solid #e9ecef;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .restriction-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
}