/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #222;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: #0056b3;
    transition: color 0.3s;
}

a:hover {
    color: #003d82;
}

button {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
    font-family: 'Poppins', sans-serif;
}

button:hover {
    background-color: #003d82;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    color: white;
    padding: 50px 0 30px;
    text-align: center;
    margin-bottom: 40px;
}

.site-header h1 {
    margin-bottom: 20px;
    color: white;
}

.bonus-banner {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 25px;
    max-width: 800px;
    margin: 0 auto;
}

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

.bonus-content h2 {
    color: white;
    margin-bottom: 10px;
}

.welcome-bonus {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fdbb2d;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #ff6b00;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #e05d00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}

/* Main Content Sections */
section {
    margin-bottom: 50px;
}

.intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.highlight-box {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: white;
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
}

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

.highlight-content h3 {
    color: white;
    margin-bottom: 15px;
}

.highlight-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Game Categories */
.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.category {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit h3 {
    color: #0056b3;
    margin-bottom: 15px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
    min-height: 50px;
}

.method {
    background-color: white;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 50px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.method:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.method img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Footer */
.site-footer {
    background-color: #222;
    color: #ccc;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.footer-cta h3 {
    color: white;
    margin-bottom: 15px;
}

.footer-disclaimer {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
}

.footer-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.footer-links a {
    color: #ccc;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Utility Classes */
.casino-name, .welcome-bonus-inline {
    color: #0056b3;
    font-weight: 600;
}

.highlight-box .casino-name, 
.highlight-box .welcome-bonus-inline,
.site-header .casino-name {
    color: #fdbb2d;
}

/* Legal Pages Styles */
.page-content {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.legal-section {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section h2 {
    color: #1a2a6c;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.legal-section h3 {
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }
    
    .welcome-bonus {
        font-size: 1.3rem;
    }
    
    .site-header {
        padding: 30px 0 20px;
    }
    
    .bonus-banner {
        padding: 20px 15px;
    }
    
    .highlight-box {
        padding: 25px 20px;
    }
    
    .page-content {
        padding: 20px;
    }

    .method {
        width: 70px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .site-header {
        padding: 25px 0 15px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .method {
        width: 60px;
        height: 40px;
    }
}

/* Age Verification Popup */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-verification-popup {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.age-verification-popup h2 {
    color: #1a2a6c;
    margin-top: 0;
    margin-bottom: 20px;
}

.age-verification-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.age-verification-button {
    background-color: #ff6b00;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.age-verification-button:hover {
    transform: translateY(-2px);
    background-color: #e05d00;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.age-verification-button.secondary {
    background-color: #6c757d;
}

.age-verification-button.secondary:hover {
    background-color: #5a6268;
}

/* Responsive styles for the age verification popup */
@media (max-width: 480px) {
    .age-verification-popup {
        padding: 20px;
        max-width: 320px;
    }
    
    .age-verification-buttons {
        flex-direction: column;
        gap: 10px;
    }
} 