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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #BF0A30;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8B0000;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-narrow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #002868;
    box-shadow: 0 2px 10px rgba(0, 40, 104, 0.1);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.navbar-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #FFFFFF;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #002868 0%, #003A8C 100%);
    color: #FFFFFF;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-title {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #BF0A30;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background: #8B0000;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(191, 10, 48, 0.3);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Casino Showcase */
.casino-showcase {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #002868;
}

.casino-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.casino-card-horizontal {
    background: linear-gradient(135deg, #FFFFFF 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 40, 104, 0.08);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
    border: 1px solid #e8f0fe;
    position: relative;
    overflow: hidden;
}

.casino-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #002868 0%, #BF0A30 50%, #FFD700 100%);
}

.casino-card-horizontal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 40, 104, 0.15);
    background: linear-gradient(135deg, #FFFFFF 0%, #e3f2fd 100%);
}

.casino-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.casino-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.casino-name {
    font-size: 1.1rem;
    margin: 0;
    color: #002868;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.casino-bonus-section {
    display: flex;
    align-items: center;
    background: rgba(191, 10, 48, 0.05);
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid #BF0A30;
}

.casino-bonus {
    font-weight: 600;
    color: #BF0A30;
    font-size: 0.95rem;
    text-align: center;
    width: 100%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.casino-deposit-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.deposit-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #002868;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(0, 40, 104, 0.1);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.casino-features-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-features-horizontal {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.casino-features-horizontal li {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    padding: 0.4rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #002868;
    border: 1px solid #e0e0e0;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.casino-features-horizontal li:hover {
    background: linear-gradient(135deg, #002868 0%, #003A8C 100%);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.casino-action-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-now-btn {
    background: linear-gradient(135deg, #BF0A30 0%, #8B0000 100%);
    color: #FFFFFF;
    padding: 0.75rem 1.75rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    min-width: 100px;
    box-shadow: 0 3px 10px rgba(191, 10, 48, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.play-now-btn:hover {
    background: linear-gradient(135deg, #8B0000 0%, #BF0A30 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(191, 10, 48, 0.4);
}

/* Table of Contents */
.toc-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.toc-compact {
    text-align: center;
}

.toc-title {
    color: #002868;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.toc-nav-compact {
    margin: 0 auto;
}

.toc-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 1000px;
    margin: 0 auto;
}

.toc-link-compact {
    background: #FFFFFF;
    color: #002868;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #e0e0e0;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.toc-link-compact:hover {
    background: #002868;
    color: #FFFFFF;
    border-color: #BF0A30;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 40, 104, 0.2);
}

.toc-link-compact.active {
    background: #BF0A30;
    color: #FFFFFF;
    border-color: #8B0000;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
    margin-top: 0;
}

.article-content {
    max-width: 1000px;
    margin: 0 auto;
}

.article-content section {
    margin-bottom: 3rem;
}

/* Tables */
.rating-table-wrapper,
.bonus-table-wrapper,
.casino-specs-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.rating-table,
.bonus-table,
.casino-specs-table table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rating-table th,
.bonus-table th,
.casino-specs-table th {
    background: #002868;
    color: #FFFFFF;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.rating-table td,
.bonus-table td,
.casino-specs-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.rating-table tr:last-child td,
.bonus-table tr:last-child td,
.casino-specs-table tr:last-child td {
    border-bottom: none;
}

/* Casino Review Cards */
.casino-review {
    margin: 3rem 0;
}

.casino-info-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.casino-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.casino-screenshot {
    width: 200px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.casino-title-section h3 {
    margin-bottom: 0.5rem;
    color: #002868;
}

.casino-tagline {
    color: #666;
    font-style: italic;
    margin-bottom: 0;
}

.key-features {
    margin: 2rem 0;
}

.key-features h4 {
    color: #002868;
    margin-bottom: 1rem;
}

.key-features ul {
    list-style: none;
}

.key-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.key-features li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.join-casino-btn {
    display: inline-block;
    background: #BF0A30;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.join-casino-btn:hover {
    background: #8B0000;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Lists */
.advantages-list,
.safety-tips {
    list-style: none;
    padding-left: 0;
}

.advantages-list li,
.safety-tips li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.advantages-list li:last-child,
.safety-tips li:last-child {
    border-bottom: none;
}

.advantages-list li::before,
.safety-tips li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #BF0A30;
    font-weight: bold;
}

.bonus-steps {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.bonus-steps li {
    counter-increment: step-counter;
    padding: 1rem 0;
    position: relative;
    padding-left: 3rem;
    border-left: 3px solid #BF0A30;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.bonus-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    background: #BF0A30;
    color: #FFFFFF;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Pros and Cons */
.pros-cons-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros-section,
.cons-section {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pros-section {
    border-left: 4px solid #28a745;
}

.cons-section {
    border-left: 4px solid #dc3545;
}

.pros-section h3 {
    color: #28a745;
}

.cons-section h3 {
    color: #dc3545;
}

/* FAQ Accordion */
.faq-accordion {
    margin: 2rem 0;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f0fe;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: none;
    padding: 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #002868;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    border-bottom-color: #e0e0e0;
}

.faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, #002868 0%, #003A8C 100%);
    color: #FFFFFF;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.faq-question[aria-expanded="true"]:hover {
    background: linear-gradient(135deg, #BF0A30 0%, #8B0000 100%);
}

.faq-icon {
    font-size: 1.8rem;
    color: #BF0A30;
    transition: all 0.3s ease;
    font-weight: bold;
    min-width: 2rem;
    text-align: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: #FFFFFF;
}

.faq-answer {
    background: #FFFFFF;
    overflow: hidden;
    transition: all 0.4s ease;
    max-height: 0;
    opacity: 0;
}

.faq-answer.open {
    max-height: 300px;
    opacity: 1;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

/* Footer */
.footer {
    background: #002868;
    color: #FFFFFF;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-link {
    color: #FFFFFF;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    color: #FFFFFF;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icon {
    width: 40px;
    height: 25px;
    object-fit: contain;
    background: #FFFFFF;
    padding: 4px;
    border-radius: 4px;
}

.footer-legal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    opacity: 0.8;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .casino-card-horizontal {
        grid-template-columns: 180px 2fr 140px 2fr 120px;
        gap: 1.5rem;
        align-items: center;
        padding: 1.5rem 2rem;
    }
    
    .casino-logo-section {
        justify-self: start;
    }
    
    .casino-bonus-section {
        justify-self: center;
    }
    
    .casino-deposit-section {
        justify-self: center;
    }
    
    .casino-features-section {
        justify-self: center;
    }
    
    .casino-action-section {
        justify-self: end;
    }
    
    .toc-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 800px;
    }
    
    .casino-header {
        align-items: center;
    }
    
    .casino-screenshot {
        width: 250px;
        height: 160px;
    }
    
    .pros-cons-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        align-items: start;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .casino-card-horizontal {
        grid-template-columns: 200px 3fr 160px 3fr 140px;
        gap: 2rem;
        padding: 1.75rem 2.5rem;
    }
    
    .casino-logo {
        width: 60px;
        height: 60px;
    }
    
    .casino-name {
        font-size: 1.2rem;
    }
    
    .casino-bonus {
        font-size: 1rem;
    }
    
    .play-now-btn {
        padding: 0.85rem 2rem;
        font-size: 1rem;
        min-width: 110px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus States */
button:focus,
a:focus,
input:focus {
    outline: 2px solid #BF0A30;
    outline-offset: 2px;
}

/* Legal Pages Styles */
.legal-page {
    margin-top: 80px;
    padding: 2rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #002868;
}

.legal-header h1 {
    color: #002868;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #002868;
}

.legal-section h2 {
    color: #002868;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.legal-section h3 {
    color: #BF0A30;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h4 {
    color: #002868;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.important-notice,
.liability-notice,
.rights-contact {
    background: #f8f9fa;
    border: 1px solid #BF0A30;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #BF0A30;
}

.important-notice h3,
.liability-notice h3,
.rights-contact h4 {
    color: #BF0A30;
    margin-top: 0;
    margin-bottom: 1rem;
}

.disclaimer-list,
.conduct-list,
.data-collection-list,
.data-usage-list,
.disclosure-reasons,
.transfer-safeguards,
.security-measures,
.third-party-cookies,
.support-contacts,
.complaint-contacts,
.summary-points {
    list-style: none;
    padding-left: 0;
}

.disclaimer-list li,
.conduct-list li,
.data-collection-list li,
.data-usage-list li,
.disclosure-reasons li,
.transfer-safeguards li,
.security-measures li,
.third-party-cookies li,
.support-contacts li,
.complaint-contacts li,
.summary-points li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.disclaimer-list li:last-child,
.conduct-list li:last-child,
.data-collection-list li:last-child,
.data-usage-list li:last-child,
.disclosure-reasons li:last-child,
.transfer-safeguards li:last-child,
.security-measures li:last-child,
.third-party-cookies li:last-child,
.support-contacts li:last-child,
.complaint-contacts li:last-child,
.summary-points li:last-child {
    border-bottom: none;
}

.disclaimer-list li::before,
.conduct-list li::before,
.data-collection-list li::before,
.data-usage-list li::before,
.disclosure-reasons li::before,
.transfer-safeguards li::before,
.security-measures li::before,
.third-party-cookies li::before,
.support-contacts li::before,
.complaint-contacts li::before,
.summary-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #BF0A30;
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.cookie-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-type {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.cookie-type h4 {
    color: #002868;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.retention-periods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.retention-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #002868;
}

.retention-item h4 {
    color: #002868;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.responsible-gambling-footer,
.privacy-summary {
    background: linear-gradient(135deg, #002868 0%, #003A8C 100%);
    color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.responsible-gambling-footer h2,
.privacy-summary h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.responsible-gambling-footer a,
.privacy-summary a {
    color: #FFD700;
}

.responsible-gambling-footer a:hover,
.privacy-summary a:hover {
    color: #FFFFFF;
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Responsive Legal Pages */
@media (min-width: 768px) {
    .cookie-types {
        grid-template-columns: 1fr 1fr;
    }
    
    .retention-periods {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .legal-content {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .legal-header h1 {
        font-size: 3rem;
    }
    
    .legal-section h2 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .toc-sidebar,
    .carousel-btn,
    .cta-button,
    .play-now-btn,
    .join-casino-btn {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .casino-info-card,
    .legal-section {
        page-break-inside: avoid;
    }
    
    .legal-page {
        margin-top: 0;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #002868;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #002868;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 40, 104, 0.1);
}

.contact-form h2 {
    color: #002868;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #002868;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #BF0A30;
    box-shadow: 0 0 0 3px rgba(191, 10, 48, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #BF0A30;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="submit"],
.form button[type="submit"] {
    background: #BF0A30;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-group input[type="submit"]:hover,
.form button[type="submit"]:hover {
    background: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(191, 10, 48, 0.3);
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #ffffff;
}

.map-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #002868;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 40, 104, 0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* About Page Styles */
.about-section {
    margin-bottom: 3rem;
}

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

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

.value-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 40, 104, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 40, 104, 0.15);
}

.value-item h3 {
    color: #002868;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

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

/* Portfolio Styles */
.portfolio-section {
    margin-bottom: 4rem;
}

.case-study {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 40, 104, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 40, 104, 0.15);
}

.case-study.featured {
    border-left: 4px solid #BF0A30;
}

.case-study-content {
    padding: 2rem;
}

.case-study-category {
    color: #BF0A30;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-title {
    color: #002868;
    margin: 0.5rem 0 1rem 0;
    font-size: 1.8rem;
}

.case-study-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-study-link {
    color: #BF0A30;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.case-study-link:hover {
    color: #8B0000;
}

.case-study-subtitle {
    display: block;
    color: #999;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #002868 0%, #BF0A30 100%);
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section .cta-button {
    background: #ffffff;
    color: #002868;
    font-weight: 600;
}

.cta-section .cta-button:hover {
    background: #f8f9fa;
    color: #002868;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive Contact Styles */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .case-study-content {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
        margin: 2rem 0;
    }
}