/* ============================================================
   Casinolistado — "Light & Luxury" theme
   Ivory backgrounds · gold + deep-green accents · serif headings
   (Visual redesign only — no content/layout structure changed)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --ivory:      #FAF7F0;   /* page background */
    --cream:      #FFFFFF;   /* cards */
    --sand:       #F4EEE1;   /* subtle alt background */
    --ink:        #1C2A22;   /* primary text (deep green-black) */
    --muted:      #5E6B62;   /* secondary text */
    --green:      #0F3D2A;   /* deep emerald (header/footer/primary) */
    --green-2:    #1C6B45;   /* mid green */
    --gold:       #C6A046;   /* primary gold */
    --gold-deep:  #A8842F;
    --gold-light: #E3C877;
    --line:       #E7DFCF;   /* borders */
    --shadow:     0 12px 34px rgba(15, 61, 42, 0.10);
    --shadow-sm:  0 4px 14px rgba(15, 61, 42, 0.08);
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans:  'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--sans);
    line-height: 1.6;
    color: var(--ink);
    background-color: var(--ivory);
}

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

h1, h2, h3,
.section-title,
.hero-content h1,
.legal-header h1,
.page-header h1 {
    font-family: var(--serif);
    letter-spacing: 0.2px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #0F3D2A 0%, #0B2C1F 100%);
    color: var(--cream);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 18px rgba(11, 44, 31, 0.28);
    border-bottom: 1px solid rgba(198, 160, 70, 0.55);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cream);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    position: absolute;
    right: 0;
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--gold-light);
    margin: 5px 0;
    transition: 0.3s;
}

.nav-menu {
    transition: all 0.3s ease;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold-light);
}

/* Regulation Section (card variant) */
.regulation-section {
    padding: 80px 0;
    background: var(--sand);
}

.regulation-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 20px;
    margin-top: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.regulation-card h2 {
    color: var(--green);
    margin-bottom: 20px;
    font-size: 28px;
}

.regulation-card ul {
    list-style: none;
    padding-left: 0;
}

.regulation-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--muted);
}

.regulation-card li::before {
    content: '\25B6';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 12px;
}

/* Opt-out page button styles */
.btn-cancel, .btn-keep {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
    min-width: 150px;
}

.btn-cancel {
    background: linear-gradient(135deg, #b1442f, #8f3222);
    color: #fff;
}

.btn-cancel:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(143, 50, 34, 0.28);
}

.btn-keep {
    background: linear-gradient(135deg, var(--green-2), var(--green));
    color: #fff;
}

.btn-keep:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 61, 42, 0.28);
}

.button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Hero Section */
.hero {
    background:
        radial-gradient(1100px 420px at 50% -120px, rgba(198,160,70,0.16), transparent 70%),
        var(--ivory);
    color: var(--ink);
    padding: 120px 0 0px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    padding-top: 3rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--green);
    max-width: 82%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.15;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--muted);
}

.age-verification {
    display: inline-block;
    background: var(--sand);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    border: 1px solid var(--gold-light);
    color: var(--green);
}

/* Casino Ranking Section */
.casino-ranking {
    padding: 24px 0 10px;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 56px;
    color: var(--green);
    position: relative;
    padding-bottom: 18px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 92px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.casino-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
}

.casino-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--gold-light);
}

.ranking-number {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.casino-logo {
    width: 100px;
    height: 80px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
    border: 1px solid rgba(198,160,70,0.5);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
    color: var(--gold-light);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.casino-logo-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.casino-logo-link:hover {
    transform: scale(1.05);
}

.casino-logo-link:hover .casino-logo {
    box-shadow: 0 10px 25px rgba(15, 61, 42, 0.3);
}

.casino-info {
    flex: 1;
}

.casino-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--ink);
}

.casino-subtitle {
    color: var(--muted);
    margin-bottom: 15px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #EAF3ED;
    color: var(--green);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(28,107,69,0.25);
}

.offer-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--ink);
}

.pwr-score {
    margin-bottom: 15px;
}

.pwr-label {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #ECE6D8;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--green-2));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.feature-tags {
    display: flex;
    gap: 8px;
}

.feature-tag {
    background: var(--sand);
    color: var(--green);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    border: 1px solid var(--gold-light);
}

.casino-cta {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
    color: var(--green);
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 6px 18px rgba(168, 132, 47, 0.28);
}

.casino-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(168, 132, 47, 0.42);
}

/* Regulation Section (text variant) */
.regulation-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--green);
}

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

.regulation-item {
    background: var(--cream);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold);
    border-top: 1px solid var(--line);
}

.regulation-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--green);
}

.regulation-item p {
    color: var(--muted);
    line-height: 1.8;
}

.regulation-item ul {
    margin: 0.5rem 0 0.5rem 0;
    padding-left: 1.2rem;
    color: var(--muted);
}

.regulation-item li {
    margin-bottom: 0.5rem;
    color: var(--muted);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--ivory);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--green);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.faq-item {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 8px 26px rgba(198, 160, 70, 0.22);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--sand);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
    color: var(--cream);
}

.faq-question h3 {
    font-family: var(--sans);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    color: var(--ink);
}

.faq-item.active .faq-question h3 {
    color: var(--cream);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
    color: var(--gold);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--gold-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.answer-content {
    padding: 1.5rem;
    background: var(--sand);
}

.answer-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.answer-content h4:before {
    content: "\1F4CB";
    margin-right: 0.5rem;
}

.answer-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.answer-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.answer-content li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.answer-content li:last-child {
    border-bottom: none;
}

.answer-content strong {
    color: var(--ink);
}

.answer-content p {
    background: var(--cream);
    border-left: 4px solid var(--gold);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0 6px 6px 0;
    color: var(--muted);
}

/* FAQ Links */
.faq-links {
    text-align: center;
}

.faq-links h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--green);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-link {
    display: block;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
    color: var(--cream);
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 61, 42, 0.25);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0F3D2A 0%, #0A2418 100%);
    color: var(--cream);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--gold);
}

.footer-disclaimer {
    margin-bottom: 2rem;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer p {
    margin-bottom: 1rem;
    opacity: 0.92;
    line-height: 1.6;
    font-size: 0.9rem;
    text-align: center;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-grid a {
    display: block;
    background: rgba(255, 255, 255, 0.08);
    color: var(--cream);
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid rgba(198, 160, 70, 0.25);
}

.footer-grid a:hover {
    background: rgba(198, 160, 70, 0.18);
    border-color: rgba(198, 160, 70, 0.55);
    transform: translateY(-2px);
}

.footer-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.age-logo {
    background: #b1442f;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-img {
    width: 100px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    background: rgba(255,255,255,0.92);
    padding: 4px;
}

.logo-btn {
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.logo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gov-logo {
    background: var(--green-2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.ibja-logo {
    background: #17a2b8;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.ja-logo, .moody-logo, .gordon-logo {
    background: #6c757d;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.6rem;
    text-align: center;
    padding: 0.5rem;
}

.trustpilot-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.trustpilot-logo .stars {
    color: var(--gold-light);
    font-size: 1.2rem;
}

.trustpilot-logo span {
    color: var(--cream);
    font-size: 0.8rem;
    font-weight: 600;
}

.logo-item span {
    font-size: 0.8rem;
    opacity: 0.85;
    max-width: 120px;
    text-align: center;
}

.footer-legal {
    margin-bottom: 2rem;
}

.footer-legal p {
    margin-bottom: 1rem;
    opacity: 0.82;
    line-height: 1.8;
    font-size: 0.85rem;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(198, 160, 70, 0.28);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.legal-section a {
    color: var(--gold-deep);
    text-decoration: none;
    font-weight: 500;
}

/* Mobile Styles (320px - 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #0F3D2A 0%, #0A2418 100%);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
    }

    .nav-menu li {
        text-align: center;
        border-bottom: 1px solid rgba(198, 160, 70, 0.2);
    }

    .nav-menu a {
        display: block;
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .casino-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }

    .ranking-number {
        font-size: 40px;
        min-width: auto;
    }

    .casino-logo {
        width: 80px;
        height: 60px;
        font-size: 20px;
        margin: 0 auto;
    }

    .casino-info {
        width: 100%;
    }

    .casino-title {
        font-size: 20px;
    }

    .offer-text {
        font-size: 14px;
    }

    .feature-tags {
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature-tag {
        font-size: 10px;
        padding: 3px 8px;
    }

    .casino-cta {
        margin-top: 15px;
        padding: 12px 25px;
        font-size: 14px;
    }

    .regulation-section {
        padding: 60px 0;
    }

    .regulation-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .regulation-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .regulation-item {
        padding: 1.5rem;
    }

    .regulation-item h3 {
        font-size: 1.1rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .faq-accordion {
        margin-bottom: 2rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
        padding-right: 2rem;
    }

    .faq-icon {
        font-size: 1.2rem;
    }

    .answer-content {
        padding: 1.2rem;
    }

    .answer-content h4 {
        font-size: 1rem;
    }

    .answer-content li {
        font-size: 0.9rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-disclaimer p {
        font-size: 0.8rem;
    }

    .footer-disclaimer {
        max-width: 100%;
    }

    .footer-grid {
        gap: 0.8rem;
    }

    .footer-grid a {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }

    .footer-logos {
        gap: 1rem;
    }

    .logo-img {
        width: 80px;
        height: 50px;
    }

    .footer-legal p {
        font-size: 0.75rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Tablet Styles (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .casino-card {
        padding: 25px;
        gap: 25px;
    }

    .ranking-number {
        font-size: 44px;
        min-width: 70px;
    }

    .casino-logo {
        width: 90px;
        height: 70px;
        font-size: 22px;
    }

    .casino-title {
        font-size: 22px;
    }

    .feature-tag {
        font-size: 10px;
    }

    .regulation-section h2 {
        font-size: 2.2rem;
    }

    .regulation-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .faq-section h2 {
        font-size: 2.2rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .footer-grid {
        justify-content: center;
    }

    .logo-img {
        width: 90px;
        height: 55px;
    }
}

/* Small Desktop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .casino-card {
        padding: 28px;
        gap: 28px;
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* Extra Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-content h1 {
        font-size: 3.4rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .casino-card:hover {
        transform: none;
    }

    .casino-cta:hover {
        transform: none;
    }

    .footer-grid a:hover {
        transform: none;
    }

    .faq-question:hover {
        background: var(--sand);
    }

    .faq-item.active .faq-question {
        background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .casino-card {
        border: 2px solid var(--green);
    }

    .nav-menu a:hover {
        color: var(--gold-light);
    }

    .casino-cta {
        border: 2px solid var(--green);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bonus-card {
    animation: fadeInUp 0.6s ease-out;
}

.bonus-card:nth-child(2) {
    animation-delay: 0.2s;
}

.bonus-card:nth-child(3) {
    animation-delay: 0.4s;
}

.regulation-item {
    animation: fadeInUp 0.6s ease-out;
}

.regulation-item:nth-child(2) {
    animation-delay: 0.1s;
}

.regulation-item:nth-child(3) {
    animation-delay: 0.2s;
}

.regulation-item:nth-child(4) {
    animation-delay: 0.3s;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   Legal / Content Pages
   ============================================================ */
.legal-content {
    padding: 120px 0 80px;
    background: var(--ivory);
    min-height: 100vh;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--gold-deep);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 1rem;
}

.legal-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
}

.legal-subtitle a {
    color: var(--gold-deep);
    text-decoration: none;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    background: var(--cream);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--green);
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-bottom: 1.5rem;
}

.legal-section li {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

/* Special Grids for Legal Pages */
.values-grid, .purpose-grid, .rights-grid, .tips-grid, .warning-signs, .protection-measures, .tools-grid, .help-resources, .prohibited-uses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-item, .purpose-item, .right-item, .tip-item, .warning-item, .measure-item, .tool-item, .resource-item, .prohibited-item {
    background: var(--sand);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.value-item h3, .purpose-item h3, .right-item h3, .tip-item h3, .warning-item h3, .measure-item h3, .tool-item h3, .resource-item h3, .prohibited-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--green);
}

.value-item p, .purpose-item p, .right-item p, .tip-item p, .warning-item p, .measure-item p, .tool-item p, .resource-item p, .prohibited-item p {
    margin-bottom: 0;
    color: var(--muted);
}

.help-alert {
    background: #FBF5E4;
    border: 1px solid var(--gold);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.help-alert p {
    margin: 0;
    color: var(--ink);
    font-weight: 600;
}

.contact-info {
    background: var(--sand);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--muted);
}

.contact-info a {
    color: var(--gold-deep);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact / Opt-out Form Styles */
.contact-form-container, .opt-out-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--cream);
    color: var(--ink);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198, 160, 70, 0.18);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.875rem;
}

.checkbox-label, .radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.checkbox-label input,
.radio-label input {
    margin-right: 0.5rem;
    accent-color: var(--green);
}

.submit-btn {
    background: linear-gradient(135deg, var(--green-2) 0%, var(--green) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 61, 42, 0.28);
}

.submit-btn:disabled {
    background: #cfc9bb;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 2rem;
}

.success-message {
    background: #EAF3ED;
    border: 1px solid rgba(28,107,69,0.35);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.success-message h3 {
    margin-bottom: 0.5rem;
    color: var(--green);
}

.success-message p {
    margin-bottom: 0.5rem;
    color: var(--green);
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-card {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    color: var(--green);
}

.contact-card p {
    margin-bottom: 0;
    color: var(--ink);
}

.contact-card a {
    color: var(--gold-deep);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

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

.hours-item {
    background: var(--sand);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.hours-item h3 {
    margin-bottom: 0.5rem;
    color: var(--green);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--green);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--green-2);
    transform: translateY(-2px);
}

.social-icon {
    font-size: 1.2rem;
}

/* Opt-out Page Specific */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-card {
    background: var(--sand);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--green-2);
}

.info-card h3 {
    margin-bottom: 0.5rem;
    color: var(--green);
}

.contact-alternatives {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-alt-item {
    background: var(--sand);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.contact-alt-item h3 {
    margin-bottom: 0.5rem;
    color: var(--gold-deep);
}

/* Bonus List Page Styles */
.bonus-list-content {
    padding: 120px 0 80px;
    background: var(--ivory);
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--muted);
}

.filter-section {
    background: var(--cream);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

.filter-container h3 {
    margin-bottom: 1.5rem;
    color: var(--green);
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--ink);
}

.filter-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--cream);
    color: var(--ink);
}

.filter-btn {
    background: linear-gradient(135deg, var(--green-2) 0%, var(--green) 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 61, 42, 0.25);
}

.bonus-list-section {
    margin-bottom: 3rem;
}

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

.bonus-item {
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--sand);
    border-bottom: 1px solid var(--line);
}

.casino-logo h3 {
    margin: 0;
    color: var(--green);
    font-size: 1.3rem;
}

.license {
    background: var(--green-2);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bonus-badge {
    background: var(--gold-deep);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bonus-badge.popular {
    background: #b1442f;
}

.bonus-badge.new {
    background: var(--green-2);
}

.bonus-badge.special {
    background: var(--gold);
    color: var(--green);
}

.bonus-content {
    padding: 1.5rem;
    background: var(--cream);
}

.bonus-content h4 {
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-deep);
    margin-bottom: 1rem;
}

.bonus-details {
    margin-bottom: 1rem;
}

.bonus-details p {
    margin-bottom: 0.25rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.bonus-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.bonus-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-deep) 100%);
    color: var(--green);
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.bonus-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(168, 132, 47, 0.35);
}

.info-section {
    margin-bottom: 3rem;
}

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

.info-section .info-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold);
}

.info-section .info-card h3 {
    margin-bottom: 1rem;
    color: var(--green);
}

.info-section .info-card ol,
.info-section .info-card ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.info-section .info-card li {
    margin-bottom: 0.5rem;
    color: var(--muted);
}

/* Responsive for Legal/Content Pages */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-grid,
    .hours-grid,
    .info-cards,
    .contact-alternatives,
    .bonus-list-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
    }

    .legal-content,
    .bonus-list-content {
        padding: 100px 0 60px;
    }

    .legal-header h1,
    .page-header h1 {
        font-size: 2.1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .submit-btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .contact-card {
        padding: 1.2rem;
    }

    .contact-card h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .contact-card p {
        font-size: 0.9rem;
    }
}
