/* -------------------------------------------------------------------------- */
/* GLOBAL STYLES                                                              */
/* -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

:root {
    --background-light: #f5f5f5;
    --background-surface: #ffffff;
    --text-dark: #1f2937;
    --primary-accent: #0c4a6e;
    --primary-light: #0ea5e9;
    --secondary-accent: #2a3a52;
    --tertiary-accent: #1a1b1d;
    --gold-accent: #d97706;
    --red-accent: #dc2626;
    --glow-primary: rgba(12, 74, 110, 0.3);
    --divider-color: rgb(0, 0, 0);
    --border-radius-base: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: url('/assets/backgrounds/bg7.png');
    background-position: center;
    overflow-x: hidden;
    position: relative;
    z-index: -1;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-accent);
    opacity: 0.25;
    z-index: -2;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-accent), var(--primary-light));
    color: #fff;
    box-shadow: 0 4px 20px var(--glow-primary);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--primary-light), var(--primary-accent));
    box-shadow: 0 8px 30px var(--glow-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-accent);
    border: 2px solid var(--primary-accent);
}

.btn-secondary:hover {
    background-color: var(--primary-accent);
    color: var(--background-light);
    box-shadow: 0 4px 20px var(--glow-primary);
}

.btn-tertiary {
    background-color: var(--tertiary-accent);
    color: var(--text-dark);
}

.btn-tertiary:hover {
    background-color: #c4c9d1;
}

.btn-casino {
    font-family: 'Staatliches', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--gold-accent);
    background: linear-gradient(45deg, var(--gold-accent), var(--red-accent));
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.btn-casino:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.7) inset;
    border-color: #fff;
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.divider {
    border-top: 1px solid var(--divider-color);
    margin: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-accent);
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--secondary-accent);
    max-width: 600px;
    margin: 0 auto;
}

/* -------------------------------------------------------------------------- */
/* NAVBAR STYLES                                                              */
/* -------------------------------------------------------------------------- */
header {
    width: 100%;
    padding: 0.5rem 0;
    position: relative;
    top: 0;
    z-index: 100;
    background-color: var(--background-surface);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 85px;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
.logo img {
    height: 65px;
}
}
.logo:hover img {
    transform: scale(1.1);
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--primary-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-contact-btn {
    font-size: 1rem;
    padding: 12px 24px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 10px;
    z-index: 200;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-accent);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--background-surface);
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 250;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
}

.mobile-nav-list li {
    margin-bottom: 1.5rem;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-accent);
}

.menu-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
}

@media (max-width: 768px) {

    .nav-links,
    .nav-contact-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* -------------------------------------------------------------------------- */
/* HERO SECTION STYLES                                                        */
/* -------------------------------------------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 15px;
    overflow: hidden;
    background-image: url('/assets/backgrounds/bg4.jpg');
    background-size: cover;
    background-position: bottom;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-accent);
    opacity: 0.8;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-content-container {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.hero-content-pro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 2rem 1.5rem;
}

.hero-content-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-headline {
    font-family: 'Staatliches', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--primary-accent);
    margin-bottom: 1rem;
    position: relative;
    animation: slide-in-top 1s ease-out;
}

.hero-headline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: var(--primary-light);
    opacity: 0.5;
    animation: ripple 2s infinite ease-in-out;
}

@keyframes ripple {

    0%,
    100% {
        transform: translateX(-50%) scaleX(0.8);
    }

    50% {
        transform: translateX(-50%) scaleX(1.2);
    }
}

@keyframes slide-in-top {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--secondary-accent);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fade-in-up 1s ease-out 0.5s forwards;
}

@keyframes fade-in-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fade-in-up 1s ease-out 1s forwards;
}

.hud-button {
    font-family: 'Staatliches', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 18px;
    padding: 16px 32px;
}

.hero-update-notice {
    font-size: 0.875rem;
    color: var(--tertiary-accent);
    margin-top: 2rem;
    opacity: 0;
    animation: fade-in 1s ease-out 1.5s forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.payment-methods-wrapper {
    padding-top: 1.5rem;
    border-top: 1px solid var(--divider-color);
    opacity: 0;
    animation: fade-in 1s ease-out 2s forwards;
    margin-top: 1rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.payment-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.payment-icons img {
    height: 35px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.payment-icons img:hover {
    filter: drop-shadow(0 0 10px var(--primary-light));
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
}

/* -------------------------------------------------------------------------- */
/* REVIEW OPERATOR SECTION                                                    */
/* -------------------------------------------------------------------------- */
.review-operator-section {
    padding: 6rem 0 3rem 0;
}

.review-operator-section.cr-page {
    border-bottom: 2px solid var(--secondary-accent);
}

.review-operator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .review-operator-grid {
        grid-template-columns: 1fr;
    }
}

.casino-card {
    background: var(--background-light);
    border-radius: var(--border-radius-base);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.casino-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.casino-card-main {
    padding: 4rem 2rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--divider-color);
}

.op-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-best-bonus {
    background: var(--gold-accent);
}

.badge-recommended {
    background: var(--primary-accent);
}

.casino-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.op-logo {
    max-width: 150px;
    height: auto;
    background-color: var(--secondary-accent);
}

.op-card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-accent);
}

.op-card-rating .fas {
    color: var(--gold-accent);
}

.op-bonus-highlight {
    text-align: center;
}

.op-bonus-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-accent);
    display: block;
    line-height: 1;
}

.op-bonus-desc {
    font-size: 0.875rem;
    color: var(--secondary-accent);
    display: block;
}

.casino-card-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.data-card-description {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.op-card-features {
    list-style: none;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.op-card-features li {
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.op-card-features li .fas {
    color: var(--primary-light);
    margin-right: 0.5rem;
}

.op-card-btn {
    width: 100%;
    margin: auto;
}

.op-bonus-highlight {
    margin-bottom: 2rem;
}

.op-card-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.op-card-actions .btn {
    flex: 1;
}

.op-card-terms {
    font-size: 0.75rem;
    color: var(--secondary-accent);
    line-height: 1.4;
    margin-top: 1rem;
}

.review-operator-section .section-footer {
    text-align: center;
    margin-top: -1rem;
}

.review-operator-section .section-footer .btn {
    padding: 18px 36px;
    font-size: 18px;
}

@media (max-width: 768px) {

    .review-operator-grid {
        gap: 1.5rem;
    }
}

/* -------------------------------------------------------------------------- */
/* CALL TO ACTION (CTA) SECTION                                               */
/* -------------------------------------------------------------------------- */
.cta-section-pro {
    background-color: var(--background-surface);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 3rem 0;
}

.cta-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-glow-element-1,
.cta-glow-element-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    transform: scale(1.5);
    animation: cta-glow 15s infinite ease-in-out;
}

.cta-glow-element-1 {
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--primary-light);
    animation-delay: 0s;
}

.cta-glow-element-2 {
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: var(--primary-light);
    animation-delay: -7.5s;
}

@keyframes cta-glow {
    0% {
        transform: scale(1.5) translate(0, 0);
    }

    25% {
        transform: scale(1.6) translate(50px, -50px);
    }

    50% {
        transform: scale(1.5) translate(0, 0);
    }

    75% {
        transform: scale(1.6) translate(-50px, 50px);
    }

    100% {
        transform: scale(1.5) translate(0, 0);
    }
}

.cta-container {
    position: relative;
    z-index: 10;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.cta-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-accent);
}

.cta-subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-action .btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .cta-section-pro {
        padding: 0 15px;
    }
}

/* -------------------------------------------------------------------------- */
/* REVIEW OPERATOR SECTION                                                    */
/* -------------------------------------------------------------------------- */
.review-operator-section .section-surface {
    background: var(--background-surface);
    border-radius: var(--border-radius-base);
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.review-operator-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.review-operator-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-accent);
}

.review-operator-section .section-header p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--secondary-accent);
    max-width: 600px;
    margin: 0 auto;
}

.review-operator-section .gradient-text-primary {
    background: linear-gradient(45deg, var(--primary-accent), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.review-operator-section .review-operator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .review-operator-section .review-operator-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------------------- */
/* TESTIMONIALS SECTION                                                       */
/* -------------------------------------------------------------------------- */
.testimonials-section {
    padding: 3rem 0;
}

.testimonials-section .section-header {
    margin-bottom: 0;
}

.testimonials-section .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonials-section .testimonial-card {
    position: relative;
    border-radius: var(--border-radius-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background-color: var(--background-surface);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonials-section .testimonial-card-inner {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

.testimonials-section .testimonial-quote-icon {
    font-family: serif;
    font-size: 5rem;
    color: var(--primary-accent);
    position: absolute;
    top: 5px;
    right: 10px;
    line-height: 1;
}

.testimonials-section .testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonials-section .testimonial-author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonials-section .author-name {
    font-weight: 700;
    color: var(--primary-accent);
}

.testimonials-section .author-rating {
    color: var(--gold-accent);
    font-size: 0.9rem;
}

.testimonials-section .author-rating .fas {
    margin-left: 0.25rem;
}

/* -------------------------------------------------------------------------- */
/* LICENSED CASINOS SECTION                                                   */
/* -------------------------------------------------------------------------- */
.home-licensed-casinos-section {
    padding: 0 15px;
    border-top: 2px solid var(--primary-accent);
    margin: 3rem 0;
    padding: 6rem 0;
}

.home-licensed-casinos-section .licensed-casinos-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.home-licensed-casinos-section .casino-dossier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
}

.home-licensed-casinos-section .logo-grid-item {
    padding: 2rem;
    background-color: var(--secondary-accent);
    border-radius: var(--border-radius-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-licensed-casinos-section .logo-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.home-licensed-casinos-section .logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.home-licensed-casinos-section .logo-wrapper img {
    width: 100%;
    object-fit: contain;
}

.home-licensed-casinos-section .home-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--divider-color);
}

.home-licensed-casinos-section .home-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.home-licensed-casinos-section .home-trust-item .fas {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .home-licensed-casinos-section {
        padding-left: 0;
        padding-right: 0;
    }

    .home-licensed-casinos-section .casino-dossier-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

.home-licensed-casinos-section .section-header {
    margin-bottom: 0;
}

/* -------------------------------------------------------------------------- */
.faq-section {
    position: relative;
    background-color: #f0f4f8;
    padding:  0 0 3rem 0;
    overflow: hidden;
    width: 95%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-radius: 1.5rem;
    margin: 2rem auto;
}

.faq-section .section-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--primary-accent);
}

.faq-section .top-left {
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transform: none;
}

.faq-section .top-right {
    top: 0;
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    transform: none;
}

.faq-section .bottom-left {
    bottom: 0;
    left: 0;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    transform: none;
}

.faq-section .bottom-right {
    bottom: 0;
    right: 0;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    transform: none;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.faq-section .section-header p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #7f8c8d;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

.faq-section .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-section .faq-item {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--secondary-accent);
}

.faq-section .faq-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-accent);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-section .faq-button:hover,
.faq-section .faq-button:focus {
    background-color: #e3f2fd;
}

.faq-section .faq-question-text {
    flex-grow: 1;
    padding-right: 1rem;
}

.faq-section .faq-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.faq-section .faq-icon {
    font-size: 2rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-section .faq-button[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-section .faq-button[aria-expanded="true"]+.faq-content {
    display: block;
}

.faq-section .faq-content {
    display: none;
    padding: 1.5rem;
    color: #555;
}

.faq-section .faq-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.faq-section .faq-answer p {
    margin-bottom: 1rem;
}

.faq-section .faq-answer ul {
    padding-left: 1.5rem;
    margin: 0;
    list-style: disc;
}

.faq-section .faq-answer li {
    margin-bottom: 0.5rem;
}

/* -------------------------------------------------------------------------- */
.support-grid-section {
    background-color: transparent;
    padding: 5rem 0;
    border-radius: 1.5rem;
    margin: 0 auto;
}

.support-grid-section .section-header {
    text-align: center;
    margin-bottom: 0;
}

.support-grid-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.support-grid-section .section-header p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--secondary-accent);
    max-width: 600px;
    margin: 0.5rem auto 0;
}

.support-grid-section .support-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.support-grid-section .support-grid-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--secondary-accent);
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    min-height: 100px;
}

.support-grid-section .support-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.support-grid-section .support-logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-grid-section .support-logo-wrapper img {
    width: 80%;
    height: auto;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--background-light);
    color: var(--background-light);
    padding: 3rem 15px;
    font-family: 'Inter', sans-serif;
    border-top: 5px solid var(--secondary-accent);
}

.site-footer .footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.site-footer .footer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.site-footer .footer-logo img {
    max-width: 220px;
    height: auto;
}

.site-footer .footer-responsibility-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.site-footer .tag-responsible-gaming {
    background-color: var(--secondary-accent);
    color: var(--background-surface);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-footer .tag-18-plus {
    background-color: var(--primary-light);
    color: var(--background-surface);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
}

.site-footer .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .site-footer .footer-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .site-footer .footer-content {
        grid-template-columns: 1.5fr 1fr;
    }

}

.site-footer .footer-box {
    background-color: var(--secondary-accent);
    padding: 1.5rem;
    border-radius: 1rem;

}

@media (max-width: 768px) {
    .site-footer .footer-box {
        text-align: center;
    }
}

.site-footer .footer-title {
    color: var(--background-light);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.site-footer .footer-disclaimer span {
    display: block;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--background-light);
}

.site-footer .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.site-footer .footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-link-list li {
    margin-bottom: 0.5rem;
}

.site-footer .footer-link {
    color: var(--background-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer .footer-link:hover {
    color: var(--background-surface);
}

.site-footer .footer-secondary-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.site-footer .legal-text p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--background-light);
    text-align: center;
}

.site-footer .legal-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.site-footer .legal-logos .logo-item img {
    height: 30px;
    object-fit: contain;
}

.site-footer .footer-bottom {
    border-top: 1px solid var(--secondary-accent);
    padding-top: 2rem;
    text-align: center;
}

.site-footer .copyright-text {
    font-size: 0.875rem;
    color: var(--secondary-accent);
    margin: 0;
}

/* -------------------------------------------------------------------------- */
.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;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.age-verification-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-verification-overlay .age-verification-modal {
    background-color: var(--secondary-accent);
    color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-base);
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.age-verification-overlay.active .age-verification-modal {
    transform: scale(1);
}

.age-verification-overlay .modal-title {
    color: var(--primary-light);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.age-verification-overlay .modal-subtitle {
    font-size: 1rem;
    color: var(--background-light);
    margin-bottom: 1.5rem;
}

.age-verification-overlay .form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.age-verification-overlay .date-inputs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    justify-content: center;
}

.age-verification-overlay .input-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.age-verification-overlay .input-group label {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: var(--background-light);
}

.age-verification-overlay .date-inputs input {
    background-color: var(--tertiary-accent);
    border: 1px solid var(--secondary-accent);
    border-radius: var(--border-radius-base);
    padding: 0.75rem;
    color: var(--background-light);
    font-size: 1rem;
    text-align: center;
    width: 100%;
}

.age-verification-overlay .date-inputs input::placeholder {
    color: #555;
}

.age-verification-overlay .error-message {
    color: var(--red-accent);
    font-size: 0.875rem;
    margin-top: -1rem;
    margin-bottom: 1rem;
    display: none;
}

.age-verification-overlay .decline-message {
    display: none;
}

.age-verification-overlay .decline-title {
    color: var(--red-accent);
    font-size: 1.5rem;
    font-weight: 700;
}

.age-verification-overlay .modal-disclaimer {
    font-size: 0.875rem;
    color: #a0a0a0;
    margin-top: 1.5rem;
}

.age-verification-overlay .modal-disclaimer a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.age-verification-overlay .modal-disclaimer a:hover {
    color: var(--primary-accent);
}

.age-verification-overlay .date-inputs input::-webkit-outer-spin-button,
.age-verification-overlay .date-inputs input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.age-verification-overlay .date-inputs input[type=number] {
    -moz-appearance: textfield;
}

/* -------------------------------------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-accent);
    color: var(--background-light);
    padding: 1.5rem;
    z-index: 900;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner .cookie-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    width: 100%;
}

.cookie-banner .cookie-message {
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
    margin: 0;
    color: var(--background-light);
}

.cookie-banner .cookie-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
}

.cookie-banner .cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-verification-overlay .btn,
.cookie-banner .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.age-verification-overlay .btn-primary,
.cookie-banner .btn-primary {
    background-color: var(--primary-light);
    color: var(--background-surface);
}

.age-verification-overlay .btn-primary:hover,
.cookie-banner .btn-primary:hover {
    background-color: var(--primary-accent);
    transform: translateY(-2px);
}

.age-verification-overlay .btn-tertiary,
.cookie-banner .btn-tertiary {
    background-color: transparent;
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
}

.age-verification-overlay .btn-tertiary:hover,
.cookie-banner .btn-tertiary:hover {
    background-color: rgba(14, 165, 233, 0.1);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .cookie-banner .cookie-banner-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-banner .cookie-message {
        text-align: left;
    }
}

/* -------------------------------------------------------------------------- */
.principles-section {
    padding: 4rem 1rem;
    background-color: var(--background-light);
    color: var(--text-dark);
}

.principles-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.principles-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.principles-section .gradient-text-primary {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--primary-accent), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.principles-card-cont {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: auto;
}

.principle-card {
  background: var(--background-surface);
  border: 2px solid var(--secondary-accent);
  border-radius: var(--border-radius-base);
  padding: 2rem;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: auto;
}

.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.principle-card i {
  font-size: 2.5rem;
  color: var(--primary-accent);
  margin-bottom: 1rem;
  display: block;
}

.principle-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-accent);
  margin-bottom: 0.75rem;
}

.principle-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.principle-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.principle-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--secondary-accent);
}

.principle-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-accent);
  font-size: 1.2rem;
}

.point-list li::before {
  color: var(--gold-accent);
}
.column-list{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1rem;
}

/* -------------------------------------------------------------------------- */
.review-page {
    padding: 4rem 1rem;
    color: var(--text-dark);
}

.review-page .review-datacard {
    background-color: var(--background-light);
    border-radius: var(--border-radius-xl);
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 2px solid var(--primary-accent);
}

.review-page .datacard-header {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    color: var(--background-light);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.review-page .datacard-logo {
    grid-area: logo;
    width: 100%;
    height: 100px;
    background-color: var(--secondary-accent);
    border-radius: var(--border-radius-base);
    border: 1px solid var(--background-surface);
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.review-page .datacard-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.review-page .datacard-main-info {
    grid-area: title;
    text-align: left;
}

.review-page .datacard-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.review-page .datacard-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.review-page .datacard-bonus,
.review-page .datacard-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-page .datacard-bonus {
    grid-area: bonus;
}

.review-page .datacard-rating {
    grid-area: rating;
}

.review-page .datacard-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.review-page .datacard-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.review-page .btn-primary {
    grid-area: cta;
    background-color: var(--primary-light);
    color: var(--background-surface);
    padding: 0.8rem 1.8rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.review-page .btn-primary:hover {
    background-color: var(--primary-accent);
    transform: translateY(-2px);
}

.review-page .datacard-body {
    padding: 2rem;
}

.review-page .datacard-section {
    margin-bottom: 2rem;
}

.review-page .datacard-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-accent);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.review-page .datacard-section-title span {
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0.2;
    line-height: 1;
}

.review-page .datacard-section-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-page .datacard-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    border: 1px solid var(--primary-accent);
}

.review-page .review-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 568px) {
    .review-page .review-details-grid {
        grid-template-columns: 1fr;
    }
}

.review-page .review-detail-card {
    background-color: var(--background-light);
    border: 1px solid var(--primary-accent);
    padding: 1.5rem;
    border-radius: var(--border-radius-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-page .review-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.review-page .review-detail-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-accent);
    margin-bottom: 0.5rem;
}

.review-page .review-pros-cons-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-page .pros-cons-block {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--primary-accent);
    ;
}

.review-page .pros-cons-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.review-page .pros-cons-block .pros-title {
    color: green;
}

.review-page .pros-cons-block .cons-title {
    color: var(--red-accent);
}

.review-page .pros-cons-block ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.review-page .pros-cons-block ul li {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.review-page .pros-cons-block ul li::before {
    position: absolute;
    left: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.9rem;
}

.review-page .pros-cons-block .pros-title+ul li::before {
    content: '\f00c';
    color: var(--green-accent);
}

.review-page .pros-cons-block .cons-title+ul li::before {
    content: '\f00d';
    color: var(--red-accent);
}

@media (min-width: 768px) {
    .review-page .review-pros-cons-layout {
        flex-direction: row;
    }
}

/* -------------------------------------------------------------------------- */
.contact-content.section-surface {
    padding: 4rem 0;
    color: var(--text-dark);
}

.contact-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content .contact-page-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.contact-content .contact-info-panel {
    background-color: var(--secondary-accent);
    color: var(--background-light);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-content .contact-info-header {
    margin-bottom: 2rem;
}

.contact-content .contact-info-header i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.contact-content .contact-info-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.contact-content .contact-info-header p {
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 400px;
    margin: 0 auto;
}

.contact-content .contact-info-list {
    width: 100%;
}

.contact-content .ci-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.contact-content .ci-item:last-child {
    border-bottom: none;
}

.contact-content .ci-icon {
    font-size: 1.5rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

.contact-content .ci-details {
    display: flex;
    flex-direction: column;
}

.contact-content .ci-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.contact-content .ci-link {
    font-size: 1rem;
    color: var(--background-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-content .ci-link:hover {
    color: var(--primary-accent);
}

.contact-content .ci-link.static {
    font-size: 1rem;
    color: var(--background-light);
    text-decoration: none;
}

.contact-content .contact-form-panel {
    background-color: var(--background-light);
    padding: 2.5rem 2rem;
    border: 1px solid var(--primary-accent);
}

.contact-content .form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-content .form-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark-secondary);
}

.contact-content .main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-content .form-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-content .form-group {
    display: flex;
    flex-direction: column;
}

.contact-content .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark-secondary);
    margin-bottom: 0.5rem;
}

.contact-content .form-input,
.contact-content .form-textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid var(--primary-accent);
    border-radius: var(--border-radius-base);
    background-color: var(--background-surface);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.contact-content .form-input:focus,
.contact-content .form-textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(var(--primary-accent-rgb), 0.1);
}

.contact-content .form-textarea {
    resize: vertical;
}

.contact-content .contact-submit-button {
    background: linear-gradient(90deg, var(--primary-accent), var(--primary-light));
    color: var(--background-light);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-content .contact-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-accent-rgb), 0.3);
}

.contact-content .form-message {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: var(--border-radius-base);
}

.contact-content .form-message[aria-live="polite"] {
    background-color: #d4edda;
    color: #155724;
}

.contact-content .form-message[aria-live="assertive"] {
    background-color: #f8d7da;
    color: #721c24;
}

@media (min-width: 768px) {
    .contact-content .contact-page-layout {
        flex-direction: row;
    }

    .contact-content .contact-info-panel,
    .contact-content .contact-form-panel {
        flex: 1;
        padding: 3rem;
    }

    .contact-content .contact-info-panel {
        border-top-left-radius: var(--border-radius-xl);
        border-bottom-left-radius: var(--border-radius-xl);
    }

    .contact-content .contact-form-panel {
        border-top-right-radius: var(--border-radius-xl);
        border-bottom-right-radius: var(--border-radius-xl);
    }

    .contact-content .form-row {
        flex-direction: row;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    .contact-content .contact-info-panel {
        padding: 2.5rem 1.5rem;
    }
}

/* -------------------------------------------------------------------------- */
.legal-page .section-surface {
    padding: 30px 0;
}

.legal-page .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: var(--background-surface);
    border: 2px solid var(--primary-accent);
    margin: 4rem auto;
}

@media (max-width: 768px) {
    .legal-page .container {
        margin: 4rem 15px;
    }
}

.legal-page .cookie-policy-content,
.legal-page .privacy-document-content,
.legal-page .terms-document-content {
    background-color: var(--surface-color);
    padding: 40px 15px;

    border-radius: 12px;
}

.legal-page .cookie-section,
.legal-page .privacy-section,
.legal-page .terms-section {
    margin-bottom: 30px;

}

.legal-page h2,
.legal-page h3,
.legal-page h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 10px;
}

.legal-page h2 {
    font-size: 2.2em;
}

.legal-page h3 {
    font-size: 1.8em;
}

.legal-page h4 {
    font-size: 1.4em;
}

.legal-page .gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    font-size: 2.2em;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-block;
}

.legal-page p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.legal-page strong {
    font-weight: 700;
    color: var(--secondary-accent);
}

.legal-page .styled-list {
    list-style-type: none;
    padding-left: 0;
}

.legal-page .styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.legal-page .styled-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

.legal-page a.styled-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-page a.styled-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-page .cookie-types-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.legal-page .cookie-type-box {
    flex: 1;
    min-width: 250px;
    background-color: #ecf0f1;
    border: 1px solid var(--text-dark);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-page .cookie-type-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.legal-page .cookie-type-box i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.legal-page .highlight-box {
    display: flex;
    align-items: flex-start;
    background-color: var(--highlight-bg-color);
    border: 1px solid var(--highlight-border-color);
    border-left: 5px solid var(--highlight-border-color);
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.legal-page .highlight-icon {
    font-size: 2em;
    color: var(--highlight-icon-color);
    margin-right: 15px;
}

.legal-page .highlight-text {
    flex: 1;
    color: var(--text-dark);
}

@media (max-width: 768px) {

    .legal-page .cookie-policy-content,
    .legal-page .privacy-document-content,
    .legal-page .terms-document-content {
        padding: 20px 0;
    }

    .legal-page h2 {
        font-size: 1.8em;
    }

    .legal-page h3 {
        font-size: 1.5em;
    }

    .legal-page .cookie-types-wrapper {
        flex-direction: column;
    }
}