/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2c7;
    color: white;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #25a65a;
}

.btn-red {
    background-color: #e74c3c;
}

.btn-red:hover {
    background-color: #c0392b;
}

/* Age Verification Popup */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.age-verification-popup {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.age-verification-popup h2 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.age-verification-popup p {
    margin-bottom: 15px;
}

.age-verification-popup ul {
    text-align: left;
    margin-bottom: 20px;
}

.age-verification-popup li {
    margin-bottom: 10px;
}

.age-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.age-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.age-option:hover {
    border-color: #3498db;
}

.option-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.age-note {
    font-size: 14px;
    color: #7f8c8d;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.breadcrumb {
    background-color: #f8f9fa;
    padding: 10px 0;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb a {
    color: #3498db;
}

/* Main Content Styles */
.main-headline {
    text-align: center;
    padding: 40px 0;
    background-color: white;
    margin-bottom: 30px;
}

.main-headline h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.main-headline p {
    font-size: 18px;
    color: #7f8c8d;
}

.warning-banner {
    background-color: #e74c3c;
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.warning-banner h2 {
    margin-bottom: 15px;
    font-size: 24px;
}

.warning-banner p {
    margin-bottom: 15px;
}

.casino-recommendations {
    margin-bottom: 40px;
}

.casino-recommendations h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.casino-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.casino-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    position: relative;
    transition: transform 0.3s;
}

.casino-card:hover {
    transform: translateY(-5px);
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #3498db;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.casino-logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.rating {
    margin-bottom: 10px;
    color: #f39c12;
}

.license {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.features {
    list-style: none;
    margin-bottom: 15px;
}

.features li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7;
}

.bonus {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
}

.info-section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.info-section h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.info-section p {
    margin-bottom: 15px;
}

.criteria-list {
    list-style: none;
    margin: 15px 0;
}

.criteria-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.criteria-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #3498db;
    font-weight: bold;
}

.faq-section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.faq-section h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-question {
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
}

.faq-answer {
    display: none;
    padding-top: 10px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question:after {
    content: "-";
}

.responsible-gaming {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.responsible-gaming h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.responsible-gaming p {
    margin-bottom: 20px;
}

.affiliations {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.affiliation-logo {
    background-color: #f8f9fa;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
}

.help-support {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.help-support h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.support-contacts {
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 10px;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.copyright {
    margin-bottom: 15px;
    font-weight: bold;
}

.legal-disclaimer p {
    margin-bottom: 10px;
    font-size: 14px;
}

.legal-disclaimer a {
    color: #3498db;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .top-nav {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 5px 10px;
    }
    
    .age-options {
        flex-direction: column;
    }
    
    .casino-cards {
        grid-template-columns: 1fr;
    }
}