/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 18+ Disclaimer Header */
.disclaimer-header {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Main Header */
.main-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 2.5em;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.9em;
    color: #ccc;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}

.main-nav a:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="casino" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="2" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23casino)"/></svg>');
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #ccc;
}

.license-info {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ffd700;
}

.license-info strong {
    color: #ffd700;
    font-size: 1.1em;
}

.image-placeholder {
    background: linear-gradient(135deg, #333, #555);
    height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ccc;
    border: 3px dashed #666;
}

.image-placeholder p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.image-placeholder span {
    font-size: 0.9em;
    color: #999;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 3px solid #ffd700;
}

/* Bonuses Section */
.bonuses {
    background: #111;
    padding: 80px 0;
    color: white;
}

.bonuses h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.bonus-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ffd700;
}

.bonus-amount {
    font-size: 2em;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.bonus-card p {
    margin-bottom: 20px;
    color: #ccc;
}

.bonus-card ul {
    list-style: none;
    text-align: left;
}

.bonus-card li {
    padding: 5px 0;
    color: #aaa;
    position: relative;
    padding-left: 20px;
}

.bonus-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

/* Features Section */
.features {
    background: #0a0a0a;
    padding: 80px 0;
    color: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #ffd700;
}

.feature p {
    color: #ccc;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #ff6b6b, #ffd700);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #1a1a2e;
    color: white;
    border: 2px solid #1a1a2e;
}

.btn-primary:hover {
    background: transparent;
    color: #1a1a2e;
}

.btn-secondary {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
}

.btn-secondary:hover {
    background: #1a1a2e;
    color: white;
}

/* Footer */
.main-footer {
    background: #0a0a0a;
    color: white;
    padding: 60px 0 20px;
    border-top: 3px solid #ffd700;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 5px 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.company-info p {
    margin-bottom: 5px;
    color: #ccc;
}

.license-badge {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ffd700;
    margin-top: 15px;
}

.age-restriction {
    background: #ff6b6b;
    color: white;
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 15px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
}

.footer-bottom .disclaimer {
    margin-top: 10px;
    font-weight: bold;
    color: #ff6b6b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h2 {
        font-size: 2em;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .bonuses, .features {
        padding: 40px 0;
    }
    
    .logo h1 {
        font-size: 2em;
    }
    
    .hero h2 {
        font-size: 1.8em;
    }
    
    .bonuses h2, .features h2 {
        font-size: 2em;
    }
}