/* -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Poppins:wght@400;600&display=swap');

:root {
    --color-gold: #FFD700;
    --color-gold-dark: #CCA300;
    --color-primary-glow: rgba(255, 215, 0, 0.5);
    --color-secondary: #00BFFF;
    --color-background: #121212;
    --color-surface: #1e1e1e;
    --color-text: #E0E0E0;
    --color-text-muted: #A0A0A0;
    --color-border: #333333;
    --color-success: #4CAF50;
    --color-error: #F44336;
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    --container-width: 1280px;
    --spacing-unit: 1rem;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    --box-shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.5);
    --transition-speed: 0.3s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: var(--line-height-base);
    overflow-x: hidden;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }

p {
    margin-bottom: var(--spacing-unit);
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--color-gold-dark);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 1.5);
}

.btn {
    display: inline-block;
    padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 2);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    user-select: none;
}

.btn-primary {
    background: linear-gradient(180deg, var(--color-gold), var(--color-gold-dark));
    color: #111;
    box-shadow: 0 4px 10px var(--color-primary-glow);
    animation: primary-glow 2.5s infinite ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-3px);
        color: #111;
    box-shadow: 0 6px 20px var(--color-primary-glow);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: white;
}

.btn-secondary:hover {
        color: white;
    background-color: #0099CC;
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: #111;
}

.card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-heavy);
    border-color: var(--color-gold);
}

.card-body {
    padding: calc(var(--spacing-unit) * 1.5);
}

.card-title {
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.form-group {
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.form-label {
    display: block;
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.form-control {
    display: block;
    width: 100%;
    padding: calc(var(--spacing-unit) * 0.75);
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-muted { color: var(--color-text-muted); }

@keyframes primary-glow {
    0% { box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(255, 215, 0, 0.7); }
    100% { box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .container {
        padding: 0 calc(var(--spacing-unit));
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    .btn {
        width: 100%;
        padding: calc(var(--spacing-unit)) 0;
    }
}

/* -------------------------------------------------------------------------- */
.header-top-bar {
    background-color: #000;
    padding: calc(var(--spacing-unit) * 0.5) 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-align: center;
    position: relative;
    z-index: 1;
}

.responsibility-notice {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--spacing-unit) * 0.75);
}

.age-icon {
    width: 20px;
    height: 20px;
}

.top-bar-link {
    color: var(--color-text);
    text-decoration: underline;
    font-weight: 600;
}

.top-bar-link:hover {
    color: var(--color-gold);
}

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-main-bar {
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, transparent, var(--color-gold), transparent);
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 2;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.site-logo-img {
    max-height: 100px;
    transition: transform var(--transition-speed) ease;
    display: flex;
    justify-content: center;
    align-items: center; 
}


@media (max-width: 768px) {
    .header-container{
        height: 80px;
    }
.site-logo-img {
    max-height: 70px;
}
}

.site-logo-img:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: calc(var(--spacing-unit) * 2);
}

.nav-link {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--color-text);
    padding: calc(var(--spacing-unit) * 0.5);
    position: relative;
    transition: color var(--transition-speed);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition-speed) ease-out;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle,
.nav-list .icon-close {
    display: none;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--color-text);
        font-size: 1.5rem;
        cursor: pointer;
        padding: calc(var(--spacing-unit) * 0.5);
    }

    .mobile-menu-toggle:hover {
        color: var(--color-gold);
    }

  .nav-list {
        position: fixed;     
        top: 0;
        left: 0;       
        width: 100vw;    
        height: 100vh; 
        z-index: 2000; 
        display: flex; 
        flex-direction: column;
        align-items: center;     
        justify-content: center;   
        gap: calc(var(--spacing-unit) * 2);
        padding: calc(var(--spacing-unit) * 2);
        background-color: var(--color-background);
        box-shadow: var(--box-shadow-heavy);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .nav-list.active {
        transform: translateX(0);
    }
    
    .nav-list .icon-close {
        display: block;
        position: absolute;
        top: var(--spacing-unit);
        right: var(--spacing-unit);
        color: var(--color-text-muted);
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .nav-list .icon-close:hover {
        color: var(--color-gold);
    }

    .nav-link {
        font-size: 1.5rem;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* -------------------------------------------------------------------------- */
/* --- Modals and Banners --- */
.gate-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
}

.gate-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.gate-modal-content {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: calc(var(--spacing-unit) * 3);
    text-align: center;
    max-width: 500px;
    margin: calc(var(--spacing-unit) * 2);
    box-shadow: var(--box-shadow-heavy);
    transform: scale(0.9);
    opacity: 0;
    transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
}

@media (max-width: 768px) {
    .gate-modal-content {
    padding: calc(var(--spacing-unit) * 2);
    }
}

.gate-modal-overlay.active .gate-modal-content {
    transform: scale(1);
    opacity: 1;
}

.gate-modal-icon {
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.gate-modal-icon img {
    height: 80px;
    margin: 0 auto;
}

.gate-modal-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: calc(var(--spacing-unit));
}

.gate-modal-content p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.gate-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: calc(var(--spacing-unit) * 1.5) 0;
    z-index: 999;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition-speed) ease-in-out, opacity var(--transition-speed) ease-in-out, visibility var(--transition-speed) ease;
}

.cookie-banner.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 1.5);
    gap: calc(var(--spacing-unit));
    text-align: center;
}

.cookie-message {
    margin: 0;
    color: var(--color-text-muted);
}

.cookie-link {
    color: var(--color-gold);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: calc(var(--spacing-unit));
}

.btn-tertiary {
    background-color: transparent;
    color: var(--color-text-muted);
    border: 2px solid var(--color-border);
}

.btn-tertiary:hover {
    color: var(--color-text);
    border-color: var(--color-text);
}

/* Body class to prevent scrolling when modal is active */
body.modal-open {
    overflow: hidden;
}

@media (min-width: 768px) {
    .gate-modal-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .gate-modal-content {
        padding: calc(var(--spacing-unit) * 4);
    }

    .cookie-banner-content {
        flex-direction: row;
        justify-content: space-between;
        gap: calc(var(--spacing-unit) * 2);
        text-align: left;
    }

    .cookie-message {
        flex-grow: 1;
        margin: 0;
    }
}

/* -------------------------------------------------------------------------- */
.hero.hero-section-pro {
    position: relative;
    padding: 80px 0;
    background-color: var(--color-background);
    background-image: linear-gradient(rgba(18, 18, 18, 0.75) 0%, rgba(18, 18, 18, 1) 100%), url('assets/images/hero-bg2.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    border-bottom: 2px solid var(--color-border);
    overflow: hidden;
}

.hero .hero-content-pro {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.hero .hero-headline {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.hero .gradient-text-primary {
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    padding-bottom: 5px;
}

.hero .hero-subheadline {
    color: var(--color-text);
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto calc(var(--spacing-unit) * 2.5);
    line-height: 1.7;
    font-weight: 400;
}

.hero .hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-unit);
    flex-wrap: wrap;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.hero .hero-update-notice {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    opacity: 0.8;
    text-align: center;
    margin: auto;
}

@media (max-width: 768px) {
    .hero.hero-section-pro {
        padding: 100px 0;
        background-attachment: scroll;
    }
    .hero .hero-subheadline {
        font-size: 1.1rem;
    }
    .hero .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero .hero-actions .btn {
        width: 100%;
        max-width: 350px;
    }
}

.payment-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    filter: invert(1);
    margin-top: 1.5rem;
}

/* -------------------------------------------------------------------------- */
.home-pro-casinos-section {
    padding: 100px 0;
}

.home-pro-casinos-section.section-surface {
    background-color: var(--color-surface);
}

.home-pro-casinos-section .section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.home-pro-casinos-section .section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.home-pro-casinos-section .home-pro-casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
}

.home-pro-casinos-section .data-card {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.home-pro-casinos-section .data-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: var(--box-shadow-heavy);
}

.home-pro-casinos-section .data-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--spacing-unit);
    border-bottom: 1px solid var(--color-border);
}

.home-pro-casinos-section .data-card-logo-wrapper {
    position: relative;
    padding: calc(var(--spacing-unit) * 1.5);
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0) 70%);
}

.home-pro-casinos-section .data-card-logo {
    height: 40px;
    max-width: 120px;
    object-fit: contain;
}

.home-pro-casinos-section .corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border-color: var(--color-gold);
    border-style: solid;
    opacity: 0.5;
    transition: opacity var(--transition-speed) ease;
}

.home-pro-casinos-section .data-card:hover .corner {
    opacity: 1;
}

.home-pro-casinos-section .corner.top-left { top: 0; left: 0; border-width: 2px 0 0 2px; }
.home-pro-casinos-section .corner.top-right { top: 0; right: 0; border-width: 2px 2px 0 0; }
.home-pro-casinos-section .corner.bottom-left { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.home-pro-casinos-section .corner.bottom-right { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.home-pro-casinos-section .data-card-rating {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) / 2);
    background-color: var(--color-surface);
    padding: calc(var(--spacing-unit) / 2) var(--spacing-unit);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
}

.home-pro-casinos-section .data-card-rating .fa-star {
    color: var(--color-gold);
}

.home-pro-casinos-section .data-card-body {
    padding: var(--spacing-unit);
    flex-grow: 1;
}

.home-pro-casinos-section .data-card-bonus-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-unit);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-unit);
    margin-bottom: var(--spacing-unit);
}

.home-pro-casinos-section .data-card-stat-item {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) / 4);
}

.home-pro-casinos-section .data-card-stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) / 2);
}

.home-pro-casinos-section .data-card-stat-label .fas {
    color: var(--color-gold);
}

.home-pro-casinos-section .data-card-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
}

.home-pro-casinos-section .data-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.home-pro-casinos-section .data-card-footer {
    padding: var(--spacing-unit);
    border-top: 1px solid var(--color-border);
}

.home-pro-casinos-section .data-card-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--spacing-unit) / 2);
}

.home-pro-casinos-section .data-card-btn svg path {
    transition: transform var(--transition-speed) ease;
}

.home-pro-casinos-section .data-card-btn:hover svg path {
    transform: translateX(4px);
}

.home-pro-casinos-section .data-card-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
    opacity: 0.7;
    margin-top: var(--spacing-unit);
}

.home-pro-casinos-section .section-footer {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 400px) {
    .home-pro-casinos-section .home-pro-casinos-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------------------- */
.cta-section-pro .btn-lg {
    padding: calc(var(--spacing-unit) * 1.2) calc(var(--spacing-unit) * 3);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.cta-section-pro {
    position: relative;
    padding: 80px 0;
    background-color: var(--color-background);
    background-image:
        linear-gradient(rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.95) 100%),
        url('assets/images/hero-bg3.jpg');
    background-size: cover;
    background-position: center center;
    border-top: 1px solid var(--color-gold-dark);
    border-bottom: 1px solid var(--color-gold-dark);
    overflow: hidden;
    text-align: center;
}

.cta-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto; 
    padding: 0 calc(var(--spacing-unit) * 1.5);
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
    align-items: center;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.cta-subheadline {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 60ch;
    margin: 0 auto calc(var(--spacing-unit) * 2);
}

.cta-action .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-unit);
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.5; }
}

@media (max-width: 768px) {
    .cta-section-pro {
        padding: 100px 0;
    }
    .cta-headline {
        font-size: 2.8rem;
    }
    .cta-subheadline {
        font-size: 1rem;
    }
    .cta-action .btn {
        width: 100%;
    }
}

/* -------------------------------------------------------------------------- */
.home-licensed-casinos-section {
    padding: 100px 0;
}

.home-licensed-casinos-section.section-surface {
    background-color: var(--color-surface);
}

.home-licensed-casinos-section .section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.home-licensed-casinos-section .section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.casino-dossier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
}

.casino-dossier-grid .logo-grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: calc(var(--spacing-unit) * 2);
    box-shadow: var(--box-shadow);
    text-decoration: none;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.casino-dossier-grid .logo-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-heavy);
}

.casino-dossier-grid .logo-wrapper {
    position: relative;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.casino-dossier-grid .logo-wrapper img {
    max-height: 60px;
    max-width: 150px;
}

.casino-dossier-grid .corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border-style: solid;
    border-color: var(--color-primary);
    opacity: 0.3;
}
.casino-dossier-grid .corner.top-left { top: -5px; left: -5px; border-width: 2px 0 0 2px; }
.casino-dossier-grid .corner.top-right { top: -5px; right: -5px; border-width: 2px 2px 0 0; }
.casino-dossier-grid .corner.bottom-left { bottom: -5px; left: -5px; border-width: 0 0 2px 2px; }
.casino-dossier-grid .corner.bottom-right { bottom: -5px; right: -5px; border-width: 0 2px 2px 0; }

.home-licensed-casinos-section .home-trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(var(--spacing-unit) * 3);
    margin-top: 60px;
    color: var(--color-text-muted);
}

.home-licensed-casinos-section .home-trust-item {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) / 2);
    font-weight: 600;
}

.home-licensed-casinos-section .home-trust-item .fas {
    color: var(--color-gold);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .home-licensed-casinos-section .casino-dossier-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "id"
            "info"
            "disclaimer";
    }
    .home-licensed-casinos-section .dossier-id-column {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }
}



/* -------------------------------------------------------------------------- */
.testimonials-section {
    padding: calc(var(--spacing-unit) * 4) 0;
    background-color: var(--color-background);
    border-bottom: 3px dotted var(--color-border);
}

.section-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.section-header h2 {
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    position: relative;
    display: inline-block;
    padding-bottom: calc(var(--spacing-unit) * 0.5);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    border-radius: 2px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-muted);
}

.gradient-text-primary {
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
}

.testimonial-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, border-color var(--transition-speed) ease;
    padding: calc(var(--spacing-unit) * 2);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--color-gold);
}

.testimonial-card-inner {
    position: relative;
    height: 100%;
}

.testimonial-quote-icon {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-gold-dark);
    line-height: 1;
    position: absolute;
    top: -15px;
    left: -10px;
    opacity: 0.2;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    position: relative;
    z-index: 1;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: calc(var(--spacing-unit));
    border-top: 1px solid var(--color-border);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-gold);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.author-title {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.author-rating {
    color: var(--color-gold);
}

.author-rating .fas {
    margin-right: 2px;
}

.author-rating .far {
    color: var(--color-text-muted);
}

/* -------------------------------------------------------------------------- */
.faq-section {
    padding: calc(var(--spacing-unit) * 4) 0;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid var(--color-border);
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s forwards;
    animation-delay: var(--animation-delay);
}

.faq-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-button {
    background-color: transparent;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    padding: calc(var(--spacing-unit) * 1.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    border: none;
    cursor: pointer;
    transition: color var(--transition-speed) ease;
}

.faq-button:hover,
.faq-button:focus {
    color: var(--color-gold);
    outline: none;
}

.faq-button.active {
    color: var(--color-gold);
}

.faq-question-text {
    flex-grow: 1;
    margin-right: calc(var(--spacing-unit) * 1);
}

.faq-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-text-muted);
    border-radius: 50%;
    transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.faq-button:hover .faq-icon-wrapper {
    border-color: var(--color-gold);
}

.faq-icon {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform var(--transition-speed) ease, color var(--transition-speed) ease;
    color: var(--color-text-muted);
}

.faq-button.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-gold);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer {
    padding: 0 calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 1.5);
    color: var(--color-text-muted);
}

.faq-answer p {
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.faq-answer ul li {
    position: relative;
    padding-left: calc(var(--spacing-unit) * 1.5);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.faq-answer ul li::before {
    content: '•';
    color: var(--color-gold);
    font-size: 1.5rem;
    line-height: 1;
    position: absolute;
    left: 0;
    top: -4px;
}

.faq-answer strong {
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .faq-button {
        font-size: 1rem;
        padding: calc(var(--spacing-unit) * 1);
    }

    .faq-icon-wrapper {
        width: 20px;
        height: 20px;
    }

    .faq-icon {
        font-size: 1.2rem;
    }

    .faq-answer {
        padding: 0 calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 1);
    }
}

/* -------------------------------------------------------------------------- */
.support-grid-section {
    padding: calc(var(--spacing-unit) * 5) 0;
    background-color: var(--color-background);
}

.support-grid-section .section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto calc(var(--spacing-unit) * 4) auto;
}

.support-grid-section .section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.support-grid-section .support-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
}

.support-grid-section .support-grid-item {
    display: block;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-gold-dark);
    background-color: var(--color-background);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.support-grid-section .support-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-heavy);
}

.support-grid-section .support-logo-wrapper {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-unit);
}

.support-grid-section .support-logo-wrapper img {
    height: 45px;
    max-width: 150px;
    transition: filter var(--transition-speed) ease;
}

.support-grid-section .support-grid-item:hover .support-logo-wrapper img {
    filter: none;
}

/* -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--color-background);
    color: var(--color-text-muted);
    padding: calc(var(--spacing-unit) * 4) 0 calc(var(--spacing-unit) * 2);
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-wrapper {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 1.5);
}

.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.footer-logo img {
    height: 100px;
}

.footer-responsibility-tags {
    display: flex;
    gap: calc(var(--spacing-unit) * 1);
    align-items: center;
}

.tag-responsible-gaming {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: calc(var(--spacing-unit) * 0.5) calc(var(--spacing-unit));
    border-radius: var(--border-radius-md);
    display: inline-flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 0.5);
    font-weight: 600;
}

.tag-18-plus {
    background-color: var(--color-gold);
    color: #111;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 2px 6px;
    border-radius: var(--border-radius-sm);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: calc(var(--spacing-unit) * 2);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--spacing-unit) * 2);
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: calc(var(--spacing-unit));
}

.footer-disclaimer {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit));
}

.footer-disclaimer strong {
    color: var(--color-gold);
}

.footer-link-list {
    list-style: none;
    padding: 0;
}

.footer-link-list li {
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.footer-link {
    color: var(--color-text-muted);
    transition: color var(--transition-speed) ease;
}

.footer-link:hover,
.footer-link.active {
    color: var(--color-gold);
}

.footer-secondary-content {
    border-top: 1px solid var(--color-border);
    padding-top: calc(var(--spacing-unit) * 2);
    margin-top: calc(var(--spacing-unit) * 2);
}

.footer-legal-title {
    color: var(--color-gold);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.legal-text p {
    margin-bottom: calc(var(--spacing-unit));
}

.legal-text p:last-child {
    margin-bottom: 0;
}

.legal-logos {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--spacing-unit));
    margin-top: calc(var(--spacing-unit) * 1.5);
}

.logo-item {
    display: block;
    height: 40px;
    border: 1px solid var(--color-border);
    padding: calc(var(--spacing-unit) * 0.5);
    border-radius: var(--border-radius-sm);
    transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.logo-item:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold);
}

.logo-item img {
    height: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter var(--transition-speed) ease, opacity var(--transition-speed) ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    margin-top: calc(var(--spacing-unit) * 2);
    padding-top: calc(var(--spacing-unit) * 1.5);
    text-align: center;
}

.copyright-text {
    font-size: 0.8rem;
    margin: 0;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer-header {
        flex-direction: column;
        gap: calc(var(--spacing-unit) * 1.5);
        align-items: flex-start;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-box {
        margin-bottom: calc(var(--spacing-unit) * 2);
    }

    .footer-secondary-content {
        padding-top: calc(var(--spacing-unit) * 1.5);
        margin-top: calc(var(--spacing-unit) * 1.5);
    }
}

/* -------------------------------------------------------------------------- */
.principles-section {
    padding: calc(var(--spacing-unit) * 4) 0;
}

.principles-section.section-surface {
    background-color: var(--color-surface);
}

.principles-grid {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
}

.principle-card {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    padding: calc(var(--spacing-unit) * 2);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.principle-card-content {
    flex-grow: 1;
}

.principle-title {
    font-size: 1.5rem;
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    color: var(--color-gold);
}

.principle-card p {
    color: var(--color-text-muted);
    margin-bottom: calc(var(--spacing-unit));
}

.principle-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.principle-list li {
    position: relative;
    padding-left: calc(var(--spacing-unit) * 1.5);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    color: var(--color-text);
}

.principle-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 1.2rem;
    font-weight: bold;
}

.point-list li::before {
    content: '•';
    font-size: 1.5rem;
    top: -4px;
}

.simple-list li::before {
    content: '•';
    font-size: 1.5rem;
    top: -4px;
}

.subsection-title {
    font-size: 1.1rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: calc(var(--spacing-unit));
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.two-column-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: calc(var(--spacing-unit) * 1);
}

.styled-link {
    color: var(--color-secondary);
    text-decoration: underline;
    transition: color var(--transition-speed) ease;
}

.styled-link:hover {
    color: #008cba;
}

.strong-notice {
    font-weight: 600;
    text-align: center;
    color: var(--color-gold);
    margin-top: calc(var(--spacing-unit) * 2);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .two-column-list {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------------------- */
.review-operator-section {
    padding: calc(var(--spacing-unit) * 4) 0;
}

.header-badge-cont {
    display: flex;
    justify-content: center;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-gold);
    color: var(--color-background);
    padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 1.5);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--box-shadow);
}

.header-badge .fas {
    color: var(--color-background);
    font-size: 1.2rem;
}

.section-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-muted);
}

.review-operator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
}

.op-row-v5 {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, border-color var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    min-height: 550px;
}

.op-row-v5:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-heavy);
    border-color: var(--color-gold);
}

.op-ranking-tab {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: var(--color-gold);
    color: #111;
    font-family: var(--font-display);
    font-weight: 700;
    padding: calc(var(--spacing-unit) * 0.5);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
}

.op-row-tier {
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 1.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#tier-identity {
    border-bottom: 1px solid var(--color-border);
    padding-top: calc(var(--spacing-unit) * 2.5);
    flex-grow: 0;
}

.op-logo {
    max-height: 80px;
    margin-bottom: 0.75rem;
}

.op-badge-rating-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--spacing-unit) * 0.5);
}

.op-card-badge {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-recommended { background-color: var(--color-gold); }
.badge-popular { background-color: var(--color-secondary); color: white; }
.badge-new { background-color: var(--color-success); color: white; }
.badge-best-bonus { background-color: var(--color-error); color: white; }
.badge-top-pick { background-color: #9370DB; color: white; }

.op-card-rating {
    display: flex;
    align-items: center;
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 600;
}

.op-card-rating i {
    margin-left: 4px;
}

#tier-content {
    background-color: var(--color-background);
    padding: calc(var(--spacing-unit) * 1.5);
    border-bottom: 1px solid var(--color-border);
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.op-bonus-highlight {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px dashed var(--color-gold);
    padding: calc(var(--spacing-unit) * 1.5);
    border-radius: var(--border-radius-md);
    width: 100%;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.op-bonus-value {
    font-size: 2rem;
    font-family: var(--font-display);
    color: white;
    display: block;
    line-height: 1.2;
}

.op-bonus-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.op-main-content {
    padding-bottom: calc(var(--spacing-unit) * 1.5) 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.op-card-description {
    color: var(--color-text-muted);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    flex-grow: 1;
}

.op-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.op-card-features li {
    color: var(--color-text);
    display: flex;
    align-items: center;
}

.op-card-features li i {
    color: var(--color-gold);
    margin-right: 8px;
}

#tier-actions {
    padding: calc(var(--spacing-unit) * 1.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 0;
}

.op-card-footer {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit));
    width: 100%;
}

.op-card-btn {
    width: 100%;
}

.op-card-terms {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
    padding: 0 calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 1.5);
    margin: 0;
}

@media (min-width: 992px) {
    .op-row-v5 {
        min-height: 600px;
    }

    #tier-content {
        padding: calc(var(--spacing-unit) * 2);
    }
    
    .op-card-features {
        justify-content: center;
        gap: 0.5rem;
    }
}

/* -------------------------------------------------------------------------- */
.accent-bg-divider {
    background-color: var(--color-surface);
    position: relative;
    height: 50px;
}

.divider-seal-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-background);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    padding: calc(var(--spacing-unit) * 0.5);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.divider-seal {
    width: 20px;
    height: 20px;
    background-color: var(--color-gold);
    border-radius: 50%;
}

/* -------------------------------------------------------------------------- */
.methodology-interface-section {
    padding: calc(var(--spacing-unit) * 4) 0;
}

.interface-grid {
    display: flex;
    flex-direction: column;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
}

.interface-content-panel {
    padding: calc(var(--spacing-unit) * 2);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}

.interface-metrics-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: calc(var(--spacing-unit) * 1.5);
    padding: calc(var(--spacing-unit) * 2);
    background-color: var(--color-surface);
}

.panel-body h3 {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    text-transform: none;
    letter-spacing: normal;
}

.panel-body h2 {
    margin-bottom: calc(var(--spacing-unit));
}

.panel-body p {
    color: var(--color-text-muted);
    margin: 0 auto calc(var(--spacing-unit) * 2);
    max-width: 600px;
}

.methodology-principles-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1.5);
}

.methodology-principles-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--spacing-unit) * 0.5);
    color: var(--color-text);
    font-weight: 600;
    text-align: center;
}

.principle-icon-wrapper {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: calc(var(--spacing-unit) * 1);
    border-radius: var(--border-radius-md);
    color: var(--color-gold);
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-pod {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: calc(var(--spacing-unit) * 1.5);
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: var(--color-gold);
    line-height: 1;
}

@media (min-width: 768px) {
    .interface-grid {
        flex-direction: column; 
    }

    .interface-content-panel {
        border-bottom: none;
        border-right: 1px solid var(--color-border);
        text-align: left;
    }

    .interface-metrics-panel {
        border-top: none;
        border-left: 1px solid var(--color-border);
        grid-template-columns: 1fr 1fr;
    }

    .panel-body {
        text-align: left;
    }

    .panel-body p {
        margin: 0 0 calc(var(--spacing-unit) * 2) 0;
    }

    .methodology-principles-list {
        align-items: flex-start;
        flex-direction: column;
        flex-wrap: wrap;
        gap: calc(var(--spacing-unit) * 2);
    }
    
    .methodology-principles-list li {
        width: 45%;
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
}

/* -------------------------------------------------------------------------- */
.review-page-container {
    background-color: var(--color-background);
}

.review-header {
    position: relative;
    padding: calc(var(--spacing-unit) * 4) 0;
    min-height: 450px;
    display: flex;
    align-items: center;
    background-color: var(--color-surface);
    overflow: hidden;
    border-bottom: 2px solid var(--color-gold);
}

.review-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://via.placeholder.com/1920x1080.png?text=Header+Background) center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.data-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

@keyframes data-flow {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.review-header-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
    align-items: center;
    text-align: center;
}

.review-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.review-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.review-feature-tags {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: calc(var(--spacing-unit));
    margin-top: calc(var(--spacing-unit) * 2);
}

.review-feature-tags li {
    background-color: var(--color-background);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.review-feature-tags li i {
    color: var(--color-success);
}

.review-header-cta-card {
    position: relative;
    background-color: var(--color-surface);
    border: 1px solid var(--color-gold);
    border-radius: var(--border-radius-md);
    padding: calc(var(--spacing-unit) * 2);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    width: 100%;
    max-width: 350px;
    margin-top: calc(var(--spacing-unit) * 2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--spacing-unit));
}

.review-header-cta-card .corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--color-gold);
    transition: all 0.3s ease;
}

.review-header-cta-card .corner.top-left {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}
.review-header-cta-card .corner.top-right {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
}
.review-header-cta-card .corner.bottom-left {
    bottom: -2px;
    left: -2px;
    border-right: none;
    border-top: none;
}
.review-header-cta-card .corner.bottom-right {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.cta-logo-wrapper {
    position: relative;
    background-color: var(--color-background);
    padding: calc(var(--spacing-unit));
    border-radius: var(--border-radius-sm);
    width: 150px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    border: 1px solid var(--color-border);
}
.cta-logo-wrapper .corner {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
}
.cta-logo-wrapper .corner.top-left { top: 0; left: 0; }
.cta-logo-wrapper .corner.top-right { top: 0; right: 0; }
.cta-logo-wrapper .corner.bottom-left { bottom: 0; left: 0; }
.cta-logo-wrapper .corner.bottom-right { bottom: 0; right: 0; }


.cta-bonus {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.cta-bonus-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 4px;
}

.cta-bonus-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--color-gold);
    line-height: 1;
}

.cta-btn {
    width: 100%;
}
.cta-btn i {
    margin-left: 8px;
}

.cta-guarantee {
    font-size: 0.8rem;
    color: var(--color-success);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: calc(var(--spacing-unit));
}


.accent-bg-divider {
    background-color: var(--color-surface);
    position: relative;
    height: 50px;
}

.divider-seal-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-background);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    padding: calc(var(--spacing-unit) * 0.5);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.divider-seal {
    width: 20px;
    height: 20px;
    background-color: var(--color-gold);
    border-radius: 50%;
}

.review-page-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 3);
    padding: calc(var(--spacing-unit) * 3) 0;
}

.review-main-content {
    background-color: var(--color-background);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    padding: calc(var(--spacing-unit) * 2);
}

.review-section {
    padding-bottom: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 2);
    border-bottom: 1px solid var(--color-border);
}

.review-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.review-section-title {
    font-size: 1.8rem;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.review-section p {
    color: var(--color-text-muted);
}

.review-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit));
}

.review-detail-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: calc(var(--spacing-unit) * 1.5);
    transition: all 0.3s ease;
}
.review-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
    border-color: var(--color-gold);
}

.review-detail-card h4 {
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}
.review-detail-card p {
    margin-bottom: 0;
}

.review-pros-cons-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 2);
}

.pros-cons-block {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: calc(var(--spacing-unit) * 1.5);
}

.pros-title {
    color: var(--color-success);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 0.5);
    margin-bottom: calc(var(--spacing-unit));
}

.cons-title {
    color: var(--color-error);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 0.5);
    margin-bottom: calc(var(--spacing-unit));
}

.pros-cons-block ul {
    list-style: none;
    padding: 0;
}

.pros-cons-block li {
    position: relative;
    padding-left: calc(var(--spacing-unit) * 1.5);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}
.pros-cons-block ul .fas {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}
.pros-cons-block .pros-title .fa-check-circle { color: var(--color-success); }
.pros-cons-block .cons-title .fa-times-circle { color: var(--color-error); }
.pros-cons-block .pros-title i, .pros-cons-block .cons-title i {
    position: static;
    transform: none;
}
.pros-cons-block ul li::before {
    content: none;
}


.review-sidebar {
    position: sticky;
    top:10rem;
    height: fit-content;
}
.review-summary-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    padding: calc(var(--spacing-unit) * 2);
}
.review-summary-card h4 {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    color: var(--color-gold);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(var(--spacing-unit) * 0.75) 0;
    border-bottom: 1px dashed var(--color-border);
}
.summary-item:last-of-type {
    border-bottom: none;
}
.summary-item span {
    font-size: 1rem;
    color: var(--color-text-muted);
}
.summary-item strong {
    color: var(--color-text);
}
.summary-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}
.summary-rating strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold);
}
.cta-stars {
    color: var(--color-gold);
}
.cta-stars .fas.fa-star-half-alt {
    opacity: 0.6;
}

.review-disclaimer {
    border-top: 1px solid var(--color-border);
    padding-top: calc(var(--spacing-unit) * 1.5);
    margin-top: calc(var(--spacing-unit) * 1.5);
    text-align: center;
}
.review-disclaimer p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .review-header-content {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    .review-header-main {
        flex-grow: 1;
    }
    .review-feature-tags {
        justify-content: flex-start;
    }
    .review-header-cta-card {
        margin-top: 0;
    }
    .review-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-pros-cons-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .review-page-layout {
        grid-template-columns: 2fr 1fr;
    }
    .review-main-content {
        padding: calc(var(--spacing-unit) * 3);
    }
}

/* -------------------------------------------------------------------------- */
.contact-content {
    padding: calc(var(--spacing-unit) * 4) 0;
    margin-left: 20px;
    margin-right: 20px;
}

.contact-page-layout {
    display: grid;
    max-width: 1160px;
    margin: auto;
    grid-template-columns: 1fr;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.contact-info-panel {
    background-color: var(--color-surface);
    padding: calc(var(--spacing-unit) * 2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.contact-info-header {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.contact-info-header .fas {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.contact-info-header p {
    color: var(--color-text-muted);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1.5);
    width: 100%;
}

.ci-item {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit));
    text-align: left;
}

.ci-icon {
    background-color: var(--color-background);
    color: var(--color-gold);
    padding: calc(var(--spacing-unit) * 0.75);
    border-radius: var(--border-radius-md);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-details {
    display: flex;
    flex-direction: column;
}

.ci-title {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.ci-link {
    font-size: 1rem;
    color: var(--color-text);
    word-break: break-all;
}

.ci-link.static {
    text-decoration: none;
    cursor: default;
}

.contact-form-panel {
    padding: calc(var(--spacing-unit) * 2);
}

.contact-form-wrapper {
    background-color: var(--color-background);
    padding: calc(var(--spacing-unit) * 1.5);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
}

.form-title {
    font-size: 2rem;
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    text-align: center;
}

.form-description {
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1.5);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1.5);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.form-input,
.form-textarea {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    color: var(--color-text);
    padding: calc(var(--spacing-unit));
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px var(--color-primary-glow);
}

.form-textarea {
    resize: vertical;
}

.contact-submit-button {
    width: 100%;
}

.form-message {
    margin-top: calc(var(--spacing-unit));
    padding: calc(var(--spacing-unit));
    border-radius: var(--border-radius-sm);
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.2);
    color: var(--color-success);
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.2);
    color: var(--color-error);
}

@media (min-width: 768px) {
    .contact-page-layout {
        grid-template-columns: 1fr 1.5fr;
    }

    .contact-info-panel {
        border-bottom: none;
        border-right: 1px solid var(--color-border);
    }
    
    .contact-info-list {
        align-items: flex-start;
        text-align: left;
    }

    .ci-item {
        justify-content: flex-start;
    }

    .form-row {
        flex-direction: row;
        gap: calc(var(--spacing-unit));
    }
    
    .form-group {
        flex: 1;
    }

    .form-title {
        text-align: left;
    }
    
    .form-description {
        text-align: left;
    }
}

/* -------------------------------------------------------------------------- */
.cookie-policy-document-section {
    padding: calc(var(--spacing-unit) * 4) 0;
}

.cookie-policy-document-section .cookie-policy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: calc(var(--spacing-unit) * 2);
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
}

.cookie-policy-document-section .cookie-section {
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.cookie-policy-document-section .cookie-section h2 {
    margin-bottom: calc(var(--spacing-unit));
}

.cookie-policy-document-section .cookie-section h3 {
    font-size: 1.8rem;
    margin-bottom: calc(var(--spacing-unit));
}

.cookie-policy-document-section .cookie-section p {
    color: var(--color-text-muted);
}

.cookie-policy-document-section .cookie-types-wrapper {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit));
    margin-top: calc(var(--spacing-unit) * 2);
}

.cookie-policy-document-section .cookie-type-box {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: calc(var(--spacing-unit) * 1.5);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cookie-policy-document-section .cookie-type-box h4 {
    font-size: 1.2rem;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 0.5);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.cookie-policy-document-section .cookie-type-box h4 .fas {
    font-size: 1.5rem;
}

.cookie-policy-document-section .cookie-type-box p {
    color: var(--color-text);
    margin-bottom: 0;
}

.cookie-policy-document-section .styled-list {
    list-style: none;
    padding: 0;
    margin-top: calc(var(--spacing-unit));
    color: var(--color-text-muted);
}

.cookie-policy-document-section .styled-list li {
    margin-bottom: calc(var(--spacing-unit));
    position: relative;
    padding-left: calc(var(--spacing-unit) * 1.5);
}

.cookie-policy-document-section .styled-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

.cookie-policy-document-section .styled-list strong {
    color: var(--color-text);
    font-weight: 600;
}

.privacy-document-section {
    padding: calc(var(--spacing-unit) * 4) 0;
}

.privacy-document-section .privacy-document-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: calc(var(--spacing-unit) * 2);
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
}

.privacy-document-section .privacy-section {
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.privacy-document-section .privacy-intro {
    font-size: 1.1rem;
    color: var(--color-text);
}

.privacy-document-section .section-heading {
    font-size: 1.8rem;
    margin-bottom: calc(var(--spacing-unit));
    color: var(--color-gold);
}

.privacy-document-section p {
    color: var(--color-text-muted);
}

.privacy-document-section .styled-list {
    list-style: none;
    padding: 0;
    margin-top: calc(var(--spacing-unit));
    color: var(--color-text-muted);
}

.privacy-document-section .styled-list li {
    margin-bottom: calc(var(--spacing-unit));
    position: relative;
    padding-left: calc(var(--spacing-unit) * 1.5);
}

.privacy-document-section .styled-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

.privacy-document-section .styled-list strong {
    color: var(--color-text);
    font-weight: 600;
}

.privacy-document-section .styled-link {
    color: var(--color-gold);
    text-decoration: underline;
}

.terms-document-section {
    padding: calc(var(--spacing-unit) * 4) 0;
}

.terms-document-section .terms-document-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: calc(var(--spacing-unit) * 2);
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
}

.terms-document-section .terms-intro {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.terms-document-section .highlight-box {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid var(--color-error);
    border-radius: var(--border-radius-md);
    padding: calc(var(--spacing-unit) * 1.5);
    display: flex;
    gap: calc(var(--spacing-unit));
    align-items: flex-start;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.terms-document-section .highlight-icon {
    font-size: 2rem;
    color: var(--color-error);
    flex-shrink: 0;
}

.terms-document-section .highlight-text p {
    color: var(--color-text);
    margin-bottom: 0;
}

.terms-document-section .terms-section {
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.terms-document-section .section-heading {
    font-size: 1.8rem;
    margin-bottom: calc(var(--spacing-unit));
    color: var(--color-gold);
}

.terms-document-section p {
    color: var(--color-text-muted);
}

.terms-document-section .styled-list {
    list-style: none;
    padding: 0;
    margin-top: calc(var(--spacing-unit));
    color: var(--color-text-muted);
}

.terms-document-section .styled-list li {
    margin-bottom: calc(var(--spacing-unit));
    position: relative;
    padding-left: calc(var(--spacing-unit) * 1.5);
}

.terms-document-section .styled-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

.terms-document-section .styled-list strong {
    color: var(--color-text);
    font-weight: 600;
}

.terms-document-section .styled-link {
    color: var(--color-gold);
    text-decoration: underline;
}

@media (min-width: 768px) {
    .cookie-policy-document-section .cookie-types-wrapper {
        flex-direction: row;
    }
}