/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

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

body {
    font-family: 'Cabin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

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

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: black;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    font-size: 14px;
}

.nav-menu ul li {
    margin-left: 30px;
}

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

.nav-menu ul li a:hover {
    color: #2563eb;
}

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

.burger-menu .line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px 0 rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
    }
    
    .nav-menu ul li {
        margin: 15px 0;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: #f59e0b;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #e6900a;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #000;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.about p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #8d8d8d;
}

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

.feature {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e40af;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #fff;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 20px;
    position: relative;
}

.step:not(:last-child):after {
    content: "";
    position: absolute;
    top: 40px;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: #2563eb;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1e40af;
}

/* Casinos Section */
.casinos {
    padding: 80px 0;
    background-color: #f8fafc;
}

.casinos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.casino-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Removed reverse class as we're using alternating layout */

.casino-image {
    flex: 1;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-image-2 {
    display: none;
    flex: 1;
    height: 300px;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.casino-content {
    flex: 1;
    padding: 30px;
}

.casino-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #1e40af;
}

.rating {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.casino-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.casino-content ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.casino-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.bonus {
    background-color: #eff6ff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-secondary {
    display: inline-block;
    background-color: #10b981;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #0da271;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #fff;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

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

.feature-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1e40af;
}

/* Problem Awareness Section */
.problem-awareness {
    padding: 80px 0;
    background-color: #f8fafc;
}

.problem-awareness h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1e293b;
}

.problem-awareness p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #64748b;
}

.responsible-gaming {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.responsible-gaming h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1e40af;
}

.responsible-gaming ul {
    list-style: none;
    margin-bottom: 30px;
}

.responsible-gaming ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.responsible-gaming ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 1.5rem;
    top: -5px;
}

.help-resources {
    background-color: #eff6ff;
    padding: 25px;
    border-radius: 10px;
}

.help-resources h3 {
    margin-top: 0;
}

.help-resources a {text-decoration: none;}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #fff;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e40af;
}

/* Disclaimer Section */
.disclaimer {
    padding: 60px 0;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    text-align: center;
}

.disclaimer-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.disclaimer-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-content a {
    text-decoration: none;
}

.age-limit {
    font-size: 3rem;
    font-weight: bold;
    border: 3px solid white;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background-color: #1e293b;
    text-align: center;
}

.partners h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.partner-logos img {
    max-width: 150px;
    height: auto;
}

/* Footer Section */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #f59e0b;
}

.footer-info p {
    color: #cbd5e1;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #f59e0b;
}

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

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

.footer-links ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #f59e0b;
}

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 10px;
}

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

/* Wavy Section Dividers */
.wavy-divider {
    position: relative;
    width: 100%;
    height: 100px;
    background: #000;
    overflow: hidden;
}

.wavy-divider-2 {
    position: relative;
    width: 100%;
    height: 134px;
    background: #fff;
    overflow: hidden;
}

.wavy-divider-3 {
    position: relative;
    width: 100%;
    height: 100px;
    background: #000;
    overflow: hidden;
}

.wavy-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    fill: currentColor;
}

.wavy-divider.top {
    transform: rotate(180deg);
}

.wavy-divider.bottom {
    margin-top: -1px;
}

/* Divider Colors */
.hero + .wavy-divider {
    color: #2563eb;
}

.about + .wavy-divider,
.how-it-works + .wavy-divider.top {
    color: #333;
}

.how-it-works + .wavy-divider.bottom,
.casinos + .wavy-divider.top {
    color: #333;
}

.casinos + .wavy-divider.bottom,
.why-choose-us + .wavy-divider.top {
    color: #f8fafc;
}

.why-choose-us + .wavy-divider.bottom,
.problem-awareness + .wavy-divider.top {
    color: #fff;
}

.problem-awareness + .wavy-divider.bottom,
.faq + .wavy-divider.top {
    color: #f8fafc;
}

.faq + .wavy-divider.bottom,
.disclaimer + .wavy-divider.top {
    color: #1e293b;
}

.disclaimer + .wavy-divider.bottom,
.partners + .wavy-divider.top {
    color: #dc2626;
}

.partners + .wavy-divider.bottom {
    color: #f8fafc;
}

/* Content Pages */
.content-page {
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1e40af;
    text-align: center;
}

.content-page h2 {
    font-size: 1.8rem;
    margin: 30px 0 20px;
    color: #2563eb;
}

.content-page h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: #1e40af;
}

.content-page p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #334155;
}

.content-page ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-page ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.back-link {
    margin-top: 40px;
    text-align: center;
}

.back-link a {
    display: inline-block;
    background-color: #2563eb;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.back-link a:hover {
    background-color: #1d4ed8;
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
    max-width: 400px;
}

.cookie-consent.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent h3 {
    margin-top: 0;
    color: #1e40af;
    font-size: 1.3rem;
}

.cookie-consent p {
    margin: 10px 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}


.cookie-consent-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    flex: 1;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.cookie-consent-btn.accept {
    background-color: #1e40af;
    color: white;
}

.cookie-consent-btn.accept:hover {
    background-color: #1e3a8a;
}

.cookie-consent-btn.decline {
    background-color: #e2e8f0;
    color: #333;
}

.cookie-consent-btn.decline:hover {
    background-color: #cbd5e1;
}

.cookie-consent-btn.learn-more {
    background-color: transparent;
    color: #1e40af;
    text-decoration: none;
    padding: 10px 0;
    font-size: 0.9rem;
}

.cookie-consent-btn.learn-more:hover {
    background-color: transparent;
    color: #1e3a8a;
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 15px;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
}

/* Age Verification Popup */
.age-popup {
    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: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.age-popup.active {
    opacity: 1;
    visibility: visible;
}

.age-popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.age-popup-content h2 {
    color: #dc2626;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.age-popup-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.age-popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-popup-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    min-width: 150px;
}

.age-popup-btn.accept {
    background-color: #10b981;
    color: white;
}

.age-popup-btn.accept:hover {
    background-color: #0da271;
}

.age-popup-btn.decline {
    background-color: #ef4444;
    color: white;
}

.age-popup-btn.decline:hover {
    background-color: #dc2626;
}

@media (max-width: 576px) {
    .age-popup-content {
        padding: 20px;
    }
    
    .age-popup-content h2 {
        font-size: 1.5rem;
    }
    
    .age-popup-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .age-popup-btn {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .casino-item {
        flex-direction: column;
    }
    
    /* For the second casino, show image first on mobile */
    .casino-item.image-second .casino-content {
        order: 2;
    }
    
    .casino-item.image-second .casino-image {
        order: 1;
    }

    .casino-image {
        width: 100%;
        height: 250px;
    }
    
    .step:not(:last-child):after {
        display: none;
    }
    
    .steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .content-page h1 {
        font-size: 2rem;
    }
    
    .content-page h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about h2,
    .how-it-works h2,
    .casinos h2,
    .why-choose-us h2,
    .problem-awareness h2,
    .faq h2,
    .partners h2 {
        font-size: 2rem;
    }
    
    .partner-logos {
        gap: 30px;
    }
    
    .content-page {
        padding: 30px 0;
    }
    
    .content-page h1 {
        font-size: 1.8rem;
    }
    
    .content-page h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        padding: 15px 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .feature,
    .feature-card,
    .faq-item {
        padding: 20px;
    }
    
    .casino-content {
        padding: 20px;
    }
    
    .content-page h1 {
        font-size: 1.6rem;
    }
    
    .content-page h2 {
        font-size: 1.4rem;
    }
}