/* -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@400;500;700&display=swap');

:root {
    --primary-color: #D4AF37;
    --primary-light: #FFD700;
    --secondary-color: #4B0082;
    --secondary-dark: #3A006A;
    --tertiary-color: #C0C0C0;
    --dark-color: #1a1a1a;
    --light-color: #f4f4f4;
    --grey-light: #cccccc;
    --grey-dark: #333333;
    --success-color: #01632f;
    --error-color: #dd4d4d;
    --font-primary: 'Cinzel', serif;
    --font-secondary: 'Montserrat', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(75, 0, 130, 0.2);
}

.btn-outlined {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outlined:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.2);
}

/* ------------------------------ HEADER STYLES ----------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--dark-color);
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.header-top-bar {
    background-color: var(--grey-dark);
    padding: 0.4rem 0;
    font-size: 0.75rem;
    text-align: center;
    border-bottom: 1px solid #222;
}

.responsibility-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--grey-light);
}

.age-icon {
    height: 18px;
}

.top-bar-link {
    color: var(--primary-light);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary-light);
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.top-bar-link:hover {
    color: var(--light-color);
    border-bottom-color: var(--light-color);
}

.header-main-bar {
    padding: 0.5rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo-img {
    max-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.nav-list {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    padding: 0.5rem 0;
    color: var(--light-color);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.8rem;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: rotate(90deg);
}

.icon-close {
    display: none;
}

@media (max-width: 1000px) {
    .header-main-bar {
        padding: 1rem 0;
    }

    .site-logo-img {
        max-height: 55px;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(to bottom, #1c1c1c, #111);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 0;
        transition: right 0.5s cubic-bezier(0.7, 0, 0.3, 1);
        border-left: 2px solid var(--primary-color);
    }

    .nav-list.active {
        right: 0;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        display: block;
        font-size: 1.2rem;
        padding: 1rem;
        border-bottom: 1px solid var(--grey-dark);
        width: 100%;
        transition: background-color 0.3s ease, padding-left 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(212, 175, 55, 0.1);
        padding-left: 1.5rem;
        text-shadow: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .icon-close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2rem;
        cursor: pointer;
        color: var(--light-color);
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .icon-close:hover {
        color: var(--primary-color);
    }
}

/* ------------------------------ FOOTER STYLES ----------------------------- */
.site-footer {
    background-color: #111;
    color: var(--grey-light);
    padding: 4rem 0 0;
    border-top: 3px solid var(--primary-color);
    font-size: 0.9rem;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--grey-dark);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo img {
    max-height: 70px;
    opacity: 0.9;
}

.tag-responsible-gaming {
    background-color: var(--grey-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tag-18-plus {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    width: 40px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-box {
    line-height: 1.8;
}

.footer-title {
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-disclaimer span {
    display: block;
    margin-bottom: 1rem;
    color: #aaa;
}

.footer-disclaimer strong {
    color: var(--light-color);
}

.footer-link-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #aaa;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-link:hover,
.footer-link.active {
    color: var(--primary-color);
}

.footer-secondary-content {
    padding: 2rem 0;
    border-top: 1px solid var(--grey-dark);
}

.legal-text p {
    margin-bottom: 1.5rem;
    color: #aaa;
    font-size: 0.85rem;
}

.legal-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.logo-item img {
    max-height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
}

.footer-bottom {
    background-color: #000;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer-header {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------- AGE VERIFICATION STYLES ------------------------ */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-verification-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-verification-modal {
    background: #1c1c1c;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--grey-dark);
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.5s ease;
}

.age-verification-overlay.active .age-verification-modal {
    transform: scale(1);
}

.modal-title {
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--grey-light);
    margin-bottom: 2rem;
}

.date-inputs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.input-group label {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: var(--grey-light);
}

.input-group input {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--grey-dark);
    border: 1px solid #444;
    border-radius: 6px;
    color: var(--light-color);
    font-size: 1rem;
    text-align: center;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.error-message {
    color: var(--error-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: none;
}

#verifyAgeBtn {
    width: 100%;
}

.decline-message {
    display: none;
}

.decline-title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modal-disclaimer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #aaa;
}

.modal-disclaimer a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* -------------------------- COOKIE BANNER STYLES -------------------------- */
#cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    transition: bottom 0.5s ease-in-out;
    z-index: 2000;
    border-top: 1px solid var(--grey-dark);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

#cookie-banner.active {
    bottom: 0;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-message {
    flex: 1;
    min-width: 300px;
    color: var(--grey-light);
}

.cookie-link {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
}

.btn-tertiary {
    background-color: var(--grey-dark);
    color: var(--light-color);
    border-color: var(--grey-dark);
}

.btn-tertiary:hover {
    background-color: transparent;
    color: var(--grey-light);
    border-color: var(--grey-light);
}

@media (max-width: 576px) {
    .age-verification-modal {
        padding: 2rem;
        width: 95%;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 400px) {
    .date-inputs {
        flex-direction: column;
    }
}

/* ------ */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

@media (max-width: 576px) {

    .diamond1,
    .diamond2,
    .trophy1,
    .trophy2,
    .star1,
    .star2{
        display: none !important;
    }
}

.float {
    position: absolute;
    color: gold;
    opacity: 0.15;
    animation: floatUp 6s ease-in-out infinite;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.dice1 {
    top: 5%;
    left: 5%;
    animation-delay: 0.2s;
}


.diamond1 {
    top: 16%;
    left: 15%;
    animation-delay: 0s;
}

.queen1 {
    top: 25%;
    left: 10%;
    animation-delay: 1s;
}

.trophy1 {
    top: 50%;
    left: 2%;
    animation-delay: 1.5s;
}

.crown1 {
    top: 75%;
    left: 10%;
    animation-delay: 0.8s;
}

.star1 {
    top: 84%;
    left: 15%;
    animation-delay: 2s;
}

.chip1 {
    top: 90%;
    left: 5%;
    animation-delay: 3.2s;
}

.dice2 {
    top: 5%;
    right: 5%;
    animation-delay: 0.2s;
}

.diamond2 {
    top: 16%;
    right: 15%;
    animation-delay: 0.5s;
}

.queen2 {
    top: 25%;
    right: 10%;
    animation-delay: 1.3s;
}

.trophy2 {
    top: 50%;
    right: 2%;
    animation-delay: 2.2s;
}

.crown2 {
    top: 75%;
    right: 10%;
    animation-delay: 2.8s;
}

.star2 {
    top: 84%;
    right: 15%;
    animation-delay: 3s;
}

.chip2 {
    top: 90%;
    right: 5%;
    animation-delay: 1.8s;
}


@keyframes pan-background {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-section-pro {
    position: relative;
    overflow: hidden;
    background-color: #111;
    padding: 8rem 0;
    text-align: center;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--grey-dark);
    animation: pan-background 90s linear infinite;
}

.hero-section-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(26, 26, 26, 0.6) 0%, rgba(17, 17, 17, 1) 75%);
    z-index: 1;
}

.hero-section-pro .hero-content-pro {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px dotted var(--primary-light);
}

.hero-section-pro .hero-headline::before {
    content: '♦︎ ♠︎ ♥︎ ♣︎';
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 0.5rem;
    opacity: 0.5;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.hero-section-pro .hero-headline {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gradient-text-primary {
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section-pro .hero-subheadline {
    font-size: 1.1rem;
    color: var(--grey-light);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-section-pro .hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-section-pro .hero-update-notice {
    font-size: 0.8rem;
    color: #aaa;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero-section-pro {
        padding: 6rem 0;
        text-align: left;
    }

    .hero-section-pro .hero-headline {
        font-size: 2.5rem;
    }

    .hero-section-pro .hero-content-pro {
        margin: 0;
    }

    .hero-section-pro .hero-subheadline {
        margin: 0 0 2.5rem;
    }

    .hero-section-pro .hero-actions {
        justify-content: flex-start;
    }

    .hero-section-pro .hero-headline::before {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .hero-section-pro .hero-headline {
        font-size: 2rem;
    }

    .hero-section-pro .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .hero-section-pro .hero-actions .btn {
        width: 100%;
    }
}

.payment-icons {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.payment-icons img {
    max-height: 24px;
    filter: invert(1);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.payment-icons img:hover {
    transform: scale(1.1) translateY(-3px);
}

/* ---------------------------- Home Page Styles ---------------------------- */
@keyframes rating-pulse {
    0% {
        box-shadow: 0 0 5px var(--primary-color);
    }

    50% {
        box-shadow: 0 0 15px var(--primary-light);
    }

    100% {
        box-shadow: 0 0 5px var(--primary-color);
    }
}

.home-pro-casinos-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: #111;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg fill='%23222' fill-opacity='0.4'%3E%3Cpath d='M0 0h10v10H0V0zm10 10h10v10H10V10z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 15px;
    animation: pan-background 90s linear infinite;
}

.section-corner {
    position: absolute;
    width: 160px;
    height: 160px;
    border-color: var(--primary-color);
    border-style: solid;
    opacity: 0.3;
}


@media (max-width: 576px) {
    .section-corner {
        width: 40px;
        height: 40px;
    }
}

.section-corner.top-left {
    top: 2rem;
    left: 1rem;
    border-width: 3px 0 0 3px;
}

.section-corner.top-right {
    top: 2rem;
    right: 1rem;
    border-width: 3px 3px 0 0;
}

.section-corner.bottom-left {
    bottom: 2rem;
    left: 1rem;
    border-width: 0 0 3px 3px;
}

.section-corner.bottom-right {
    bottom: 2rem;
    right: 1rem;
    border-width: 0 3px 3px 0;
}

@media (max-width: 576px) {
    .section-corner {
        width: 40px;
        height: 40px;
    }

    .section-corner.top-left {
        top: 1rem;
        left: 1rem;
        border-width: 3px 0 0 3px;
    }

    .section-corner.top-right {
        top: 1rem;
        right: 1rem;
        border-width: 3px 3px 0 0;
    }

    .section-corner.bottom-left {
        bottom: 1rem;
        left: 1rem;
        border-width: 0 0 3px 3px;
    }

    .section-corner.bottom-right {
        bottom: 1rem;
        right: 1rem;
        border-width: 0 3px 3px 0;
    }
}


.home-pro-casinos-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.home-pro-casinos-section .section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.home-pro-casinos-section .section-header p {
    color: var(--grey-light);
    line-height: 1.8;
}

.home-pro-casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    perspective: 1500px;
}

.data-card {
    border: 1px solid var(--grey-dark);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    background: #1a1a1a;
    transform-style: preserve-3d;
}

.data-card:hover {
    transform: translateY(-10px) rotateY(-8deg) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.data-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, var(--secondary-dark), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.data-card:hover::before {
    opacity: 0.5;
}

.data-card>* {
    position: relative;
    z-index: 2;
}

.data-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(17, 17, 17, 0.8);
    border-bottom: 1px solid var(--grey-dark);
}

.data-card-logo-wrapper {
    position: relative;
    background-color: var(--dark-color);
    padding: 1rem;
    border-radius: 8px;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.data-card:hover .data-card-logo-wrapper {
    transform: scale(1.05);
}

.data-card-logo {
    height: 50px;
    width: auto;
    max-width: 100px;
}

.corner {
    position: absolute;
    width: 1px;
    height: 1px;
    border-color: var(--primary-color);
    border-style: solid;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.data-card:hover .corner {
    opacity: 1;
    width: 15px;
    height: 15px;
}

.top-left {
    top: -2px;
    left: -2px;
    border-width: 2px 0 0 2px;
}

.top-right {
    top: -2px;
    right: -2px;
    border-width: 2px 2px 0 0;
}

.bottom-left {
    bottom: -2px;
    left: -2px;
    border-width: 0 0 2px 2px;
}

.bottom-right {
    bottom: -2px;
    right: -2px;
    border-width: 0 2px 2px 0;
}

.data-card-rating {
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: rating-pulse 3s infinite ease-in-out;
}

.data-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    background-color: rgba(26, 26, 26, 0.8);
}

.data-card-bonus-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (max-width: 576px) {

    .data-card-bonus-stats {
        grid-template-columns: 1fr;
    }

}


.data-card-stat-item {
    background-color: var(--grey-dark);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.data-card:hover .data-card-stat-item {
    background-color: #2a2a2a;
    border-color: #444;
    transform: translateY(-3px);
}

.data-card-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--grey-light);
    margin-bottom: 0.5rem;
}

.data-card-stat-label i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.data-card:hover .data-card-stat-label i {
    transform: scale(1.1);
}

.data-card-stat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--light-color);
}

.data-card-description {
    font-size: 0.9rem;
    color: var(--grey-light);
    line-height: 1.7;
}

.data-card-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--grey-dark);
    background-color: rgba(17, 17, 17, 0.8);
}

.data-card-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.data-card-btn svg {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.data-card-btn:hover svg {
    transform: translateX(8px) scale(1.1);
}

.data-card-disclaimer {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
}

.section-footer {
    text-align: center;
    margin-top: 4rem;
}

/* ------ */
@keyframes cta-glow-1 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-45%, -55%) scale(1.1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
}

@keyframes cta-glow-2 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-55%, -45%) scale(1.1);
        opacity: 0.2;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
}

.cta-section-pro {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-color);
    border-top: 1px solid var(--grey-dark);
    border-bottom: 1px solid var(--grey-dark);
}

.cta-section-pro .cta-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-section-pro .cta-glow-element-1,
.cta-section-pro .cta-glow-element-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-section-pro .cta-glow-element-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    animation: cta-glow-1 15s infinite ease-in-out;
}

.cta-section-pro .cta-glow-element-2 {
    width: 600px;
    height: 600px;
    background: var(--secondary-color);
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    animation: cta-glow-2 20s infinite ease-in-out;
}

.cta-section-pro .cta-container {
    position: relative;
    z-index: 2;
}

.cta-section-pro .cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--grey-dark);
}

.cta-section-pro .cta-headline {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.cta-section-pro .cta-subheadline {
    color: var(--grey-light);
    line-height: 1.8;
    max-width: 600px;
}

.cta-section-pro .btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-section-pro .btn-lg i {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .cta-section-pro .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-section-pro .cta-subheadline {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .cta-section-pro {
        padding: 4rem 0;
    }

    .cta-section-pro .cta-content {
        padding: 2rem;
    }

    .cta-section-pro .cta-headline {
        font-size: 2rem;
    }
}

/* ------ */
@keyframes infinite-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.home-licensed-casinos-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-color);
    border-top: 1px solid var(--grey-dark);
}

.home-licensed-casinos-section::before,
.home-licensed-casinos-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
}

.home-licensed-casinos-section::before {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    animation: cta-glow-1 15s infinite ease-in-out;
}

.home-licensed-casinos-section::after {
    width: 600px;
    height: 600px;
    background: var(--secondary-color);
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    animation: cta-glow-2 20s infinite ease-in-out;
}

.home-licensed-casinos-section .container {
    position: relative;
    z-index: 2;
}

.home-licensed-casinos-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.home-licensed-casinos-section .section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.home-licensed-casinos-section .section-header p {
    color: var(--grey-light);
    line-height: 1.8;
}

.licensed-casinos-content-wrapper {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--grey-dark);
}

.casino-dossier-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.casino-dossier-grid {
    display: flex;
    width: 200%;
    animation: infinite-scroll 30s linear infinite;
}

@media (max-width: 576px) {
    .casino-dossier-grid {
        display: flex;
        width: 200%;
        animation: infinite-scroll 10s linear infinite;
    }
}

.casino-dossier-slider:hover .casino-dossier-grid {
    animation-play-state: paused;
}

.logo-grid-item {
    flex: 1;
    min-width: 250px;
    padding: 0 1rem;
}

.logo-wrapper {
    position: relative;
    background-color: var(--grey-dark);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.logo-wrapper:hover {
    background-color: #2a2a2a;
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.logo-wrapper img {
    max-height: 60px;
    max-width: 100%;
    transition: all 0.4s ease;
}

.logo-wrapper .corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: var(--primary-color);
    border-style: solid;
    opacity: 0;
    transition: all 0.4s ease;
}

.logo-wrapper:hover .corner {
    opacity: 1;
}

.top-left {
    top: 10px;
    left: 10px;
    border-width: 2px 0 0 2px;
}

.top-right {
    top: 10px;
    right: 10px;
    border-width: 2px 2px 0 0;
}

.bottom-left {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 2px 2px;
}

.bottom-right {
    bottom: 10px;
    right: 10px;
    border-width: 0 2px 2px 0;
}

.home-trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--grey-dark);
    flex-wrap: wrap;
    color: var(--grey-light);
}

.home-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.home-trust-item i {
    color: var(--success-color);
}

@media (max-width: 768px) {
    .home-licensed-casinos-section .section-header h2 {
        font-size: 2rem;
    }

    .licensed-casinos-content-wrapper {
        padding: 2rem;
    }

    .home-trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* ------ */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: #111;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg fill='%23222' fill-opacity='0.4'%3E%3Cpath d='M0 0h10v10H0V0zm10 10h10v10H10V10z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 15px;
    animation: pan-background 90s linear infinite;
}

.testimonials-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.testimonials-section .section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonials-section .section-header p {
    color: var(--grey-light);
    line-height: 1.8;
}

.testimonials-section .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonials-section .testimonial-card {
    background: linear-gradient(145deg, #222, #1a1a1a);
    border-radius: 12px;
    padding: 2px;
    background-clip: padding-box;
    position: relative;
    z-index: 1;
}

.testimonials-section .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(145deg, var(--grey-dark), var(--dark-color));
}

.testimonials-section .testimonial-card-inner {
    background: #1c1c1c;
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-section .testimonial-quote-icon {
    font-family: var(--font-primary);
    font-size: 5rem;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.2;
    margin-bottom: -1.5rem;
}

.testimonials-section .testimonial-text {
    font-style: italic;
    color: var(--grey-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonials-section .testimonial-author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--grey-dark);
    padding-top: 1.5rem;
}

.testimonials-section .author-details {
    display: flex;
    flex-direction: column;
}

.testimonials-section .author-name {
    font-weight: bold;
    color: var(--light-color);
}

.testimonials-section .author-title {
    font-size: 0.8rem;
    color: var(--grey-light);
}

.testimonials-section .author-rating {
    color: var(--primary-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-section .section-header h2 {
        font-size: 2rem;
    }
}

/* ------ */
.faq-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: #111;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg fill='%23222' fill-opacity='0.4'%3E%3Cpath d='M0 0h10v10H0V0zm10 10h10v10H10V10z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 15px;
    animation: pan-background 90s linear infinite;
}

.faq-section::before {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    animation: cta-glow-1 15s infinite ease-in-out;
}

.faq-section::after {
    width: 600px;
    height: 600px;
    background: var(--secondary-color);
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    animation: cta-glow-2 20s infinite ease-in-out;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.faq-section .section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-color);
    margin: 0;
}

.faq-section .header-decoration {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    opacity: 0.5;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(34, 34, 34, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid var(--grey-dark);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(42, 42, 42, 0.7);
}

.faq-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.faq-icon-wrapper {
    border: 2px solid var(--grey-light);
    border-radius: 50%;
    min-width: 30px;
    min-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.faq-icon {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.4s ease;
}

.faq-button.active .faq-icon-wrapper {
    border-color: var(--primary-color);
    transform: rotate(180deg);
}

.faq-button.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--grey-light);
    line-height: 1.8;
}

.faq-answer ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

/* ------ */
.support-grid-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-color);
    border-top: 1px solid var(--grey-dark);
}

.support-grid-section::before,
.support-grid-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
}

.support-grid-section::before {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    animation: cta-glow-1 15s infinite ease-in-out;
}

.support-grid-section::after {
    width: 600px;
    height: 600px;
    background: var(--secondary-color);
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    animation: cta-glow-2 20s infinite ease-in-out;
}

.support-grid-section .container {
    position: relative;
    z-index: 2;
}

.support-grid-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.support-grid-section .section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.support-grid-section .section-header p {
    color: var(--grey-light);
    line-height: 1.8;
}

.support-grid {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--grey-dark);
}

.support-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.support-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.support-logo-wrapper img {
    max-height: 50px;
    max-width: 100%;
    transition: all 0.4s ease;
}

/* --------------------- Responsible Gaming Page Stylea --------------------- */
.principles-section-v2 {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: #111;
    background-size: 15px;
    animation: pan-background 90s linear infinite;
}

.principles-section-v2 .section-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--primary-color);
    border-style: solid;
    opacity: 0.3;
}

.principles-section-v2 .section-corner.top-left {
    top: 2rem;
    left: 2rem;
    border-width: 3px 0 0 3px;
}

.principles-section-v2 .section-corner.top-right {
    top: 2rem;
    right: 2rem;
    border-width: 3px 3px 0 0;
}

.principles-section-v2 .section-corner.bottom-left {
    bottom: 2rem;
    left: 2rem;
    border-width: 0 0 3px 3px;
}

.principles-section-v2 .section-corner.bottom-right {
    bottom: 2rem;
    right: 2rem;
    border-width: 0 3px 3px 0;
}

.principles-section-v2 .section-header {
    text-align: start;
    margin: 0 0 3rem 0;
}

@media (max-width: 768px) {
    .principles-section-v2 .section-header {
        text-align: center;
        margin: 0 0 3rem 0;
    }
}

.principles-section-v2 .section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.principles-section-v2 .section-header p {
    color: var(--grey-light);
    line-height: 1.8;
}

.principles-tabs-container {
    display: flex;
    gap: 2rem;
    background-color: var(--panel-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.principles-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
    width: 250px;
    border-right: 1px solid var(--border-color);
    padding-right: 2rem;
}

.principle-tab-btn {
    display: flex;
    align-items: center;

    justify-content: flex-start;
    text-align: left;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--grey-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .principle-tab-btn {
        justify-content: center;
        text-align: center;
    }
}

.principle-tab-btn i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.principle-tab-btn:hover {
    background-color: var(--border-color);
    color: var(--light-color);
}

.principle-tab-btn.active {
    background-color: var(--secondary-color);
    color: var(--light-color);
    font-weight: bold;
    border-color: var(--secondary-dark);
}

.principles-content {
    flex-grow: 1;
}

.principle-panel {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px dotted var(--primary-light);
}

.principle-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.principle-title {
    font-family: var(--font-primary);
    color: var(--primary-light);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.principle-panel p {
    color: var(--grey-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.principle-list {
    list-style: none;
    padding-left: 0;
    color: var(--grey-light);
}

.principle-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.principle-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
    top: 5px;
}

.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.subsection-title {
    color: var(--light-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.styled-link {
    color: var(--primary-light);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.styled-link:hover {
    color: var(--light-color);
}

.strong-notice {
    margin-top: 1.5rem;
    font-weight: bold;
    color: var(--light-color);
}

@media (max-width: 992px) {
    .principles-tabs-container {
        flex-direction: column;
    }

    .principles-tabs-nav {
        flex-direction: column;
        width: 100%;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .two-column-list {
        grid-template-columns: 1fr;
    }
}

/* -------------------------- Análises Page Styles -------------------------- */
.accent-bg-divider {
    height: 100px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-seal-wrapper {
    width: 120px;
    height: 120px;
    background-color: var(--dark-color);
    border-radius: 50%;
    padding: 10px;
    position: absolute;
}

.divider-seal {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23121212' d='M12 2l-2.5 5.5L4 9l4.5 4.5L7 19l5-3.5 5 3.5-1.5-5.5L20 9l-5.5-1.5L12 2z'/%3E%3C/svg%3E");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}

/* ------ */
.review-operator-section {
    padding: 6rem 0;
    background-color: var(--dark-color);
}

.review-operator-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.review-operator-section .header-badge-cont {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.review-operator-section .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.review-operator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}


@media (max-width: 768px) {
    .review-operator-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

.op-row-v5 {
    background: linear-gradient(145deg, #222, #1a1a1a);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--grey-dark);
}

.op-row-v5:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

#tier-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.op-ranking-tab {
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: bold;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.op-logo {
    width: 60%;
    max-height: 200px;
    flex-grow: 1;
    background-color: var(--grey-dark);
    border-radius: 10px;
}

.op-badge-rating-group {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.5rem;
    align-items: flex-end;
    font-size: 0.9rem;
}

.op-card-badge {
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    color: var(--light-color);
}

.badge-best-bonus {
    background-color: var(--secondary-color);
}

.badge-recommended {
    background-color: var(--success-color, #01632f);
}

.badge-popular {
    background-color: #007bff;
}

.badge-top-pick {
    background-color: #dc3545;
}

.badge-new {
    background-color: #ffc107;
    color: var(--dark-color);
}

.op-card-rating {
    font-weight: bold;
}

.op-card-rating i {
    margin-left: 0.3rem;
}

#tier-content {
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.op-bonus-highlight {
    text-align: center;
    background-color: var(--border-color);
    border-radius: 8px;
}

.op-bonus-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-light);
}

.op-bonus-desc {
    font-size: 0.9rem;
    color: var(--grey-light);
}

.op-card-description {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.7;
}

.op-card-features {
    list-style: none;
    font-size: 0.9rem;
    padding: 0;
}

.op-card-features li {
    margin-bottom: 0.5rem;
}

.op-card-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

#tier-actions {
    padding: 1.5rem;
    margin-top: auto;
}

.op-card-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.op-card-btn {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.op-card-btn i {
    transition: transform 0.3s ease;
}

.op-card-btn:hover i {
    transform: translateX(4px);
}

.op-card-terms {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--grey-dark);
}

@media (max-width: 768px) {
    #tier-content {
        grid-template-columns: 1fr;
    }
}

/* ------ */
.methodology-v2-section {
    padding: 6rem 0;
    background-color: var(--dark-color);
    border-top: 1px solid var(--border-color);
}

.methodology-v2-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1rem;
    background-color: var(--panel-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.methodology-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-right: 1px solid var(--border-color);
    padding-right: 2.5rem;
}

.methodology-tabs-nav .nav-header {
    margin-bottom: 1rem;
}

.nav-header h3 {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--grey-light);
    margin-bottom: 0.5rem;
}

.nav-header h2 {
    font-size: 1.8rem;
}

.methodology-tab-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--grey-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.methodology-tab-btn i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.methodology-tab-btn:hover {
    background-color: var(--border-color);
    color: var(--light-color);
}

.methodology-tab-btn.active {
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: bold;
    border-color: #a88d2a;
}

.methodology-content {
    position: relative;
}

.methodology-panel {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}

.methodology-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-body p {
    color: var(--grey-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.methodology-principles-list {
    list-style: none;
    display: grid;
    gap: 1.5rem;
    padding: 0;
}

.methodology-principles-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--border-color);
    padding: 1rem;
    border-radius: 8px;
}

.principle-icon-wrapper {
    background-color: #333;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.interface-metrics-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.metric-pod {
    background-color: var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #444;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-light);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--grey-light);
}

@media (max-width: 992px) {
    .methodology-v2-container {
        grid-template-columns: 1fr;
    }

    .methodology-tabs-nav {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 2rem;
        flex-direction: column;
        overflow-x: auto;
    }

    .methodology-tab-btn {
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .interface-metrics-panel {
        grid-template-columns: 1fr;
    }
}

/* ------ */
@keyframes data-stream-flow {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(100%);
    }
}

.review-header {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background-color: var(--dark-color);
}

.review-header-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at top left, var(--secondary-color), transparent 40%),
        radial-gradient(circle at bottom right, var(--primary-color), transparent 40%);
    opacity: 0.15;
    filter: blur(50px);
}

.data-stream {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.data-stream .packet {
    position: absolute;
    top: 0;
    width: 2px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, var(--primary-color));
    animation: data-stream-flow 8s linear infinite;
    opacity: 0.5;
}

.data-stream .packet:nth-child(1) {
    left: 5%;
    animation-delay: -2s;
}

.data-stream .packet:nth-child(2) {
    left: 25%;
    animation-delay: -5s;
}

.data-stream .packet:nth-child(3) {
    left: 45%;
    animation-delay: -1s;
}

.data-stream .packet:nth-child(4) {
    left: 65%;
    animation-delay: -7s;
}

.data-stream .packet:nth-child(5) {
    left: 85%;
    animation-delay: -4s;
}


.review-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.review-main-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.review-subtitle {
    font-size: 1.2rem;
    color: var(--grey-light);
    max-width: 500px;
    margin-bottom: 2rem;
}

.review-feature-tags {
    list-style: none;
    padding: 0;
}

.review-feature-tags li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.review-feature-tags i {
    color: var(--success-color, #01632f);
    background-color: rgba(1, 99, 47, 0.1);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.review-header-cta-card {
    background: linear-gradient(145deg, #222, #1a1a1a);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    width: 320px;
    flex-shrink: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.review-header-cta-card .corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--primary-color);
    border-style: solid;
    opacity: 0.5;
}

.top-left {
    top: 1rem;
    left: 1rem;
    border-width: 2px 0 0 2px;
}

.top-right {
    top: 1rem;
    right: 1rem;
    border-width: 2px 2px 0 0;
}

.bottom-left {
    bottom: 1rem;
    left: 1rem;
    border-width: 0 0 2px 2px;
}

.bottom-right {
    bottom: 1rem;
    right: 1rem;
    border-width: 0 2px 2px 0;
}


.cta-logo-wrapper {
    background-color: var(--dark-color);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.cta-logo-wrapper img {
    max-height: 50px;
    margin: 0 auto;
}

.cta-logo-wrapper .corner {
    width: 8px;
    height: 8px;
    opacity: 0.3;
}

.cta-bonus-label {
    font-size: 0.9rem;
    color: var(--grey-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-bonus-value {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-light);
    margin: 0.5rem 0 1.5rem;
}

.cta-btn {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

.cta-guarantee {
    font-size: 0.8rem;
    color: var(--grey-light);
}

.cta-guarantee i {
    margin-right: 0.5rem;
    color: var(--success-color, #01632f);
}

.review-page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    padding: 4rem 0;
    align-items: flex-start;
}

.review-section {
    margin-bottom: 4rem;
}

.review-section-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.review-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.review-detail-card {
    background-color: var(--panel-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
}

.review-detail-card h4 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.review-pros-cons-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pros-cons-block ul {
    list-style: none;
    padding: 0;
}

.pros-cons-block li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
}

.pros-cons-block li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
}

.pros-title {
    color: var(--success-color, #28a745);
    margin-bottom: 1rem;
}

.pros-cons-block:first-child li::before {
    content: '\f058';
    color: var(--success-color, #28a745);
}

.cons-title {
    color: #dc3545;
    margin-bottom: 1rem;
}

.pros-cons-block:last-child li::before {
    content: '\f057';
    color: #dc3545;
}

.review-sidebar {
    position: sticky;
    top: 160px;
}

.review-summary-card {
    background: linear-gradient(145deg, #222, #1a1a1a);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.review-summary-card h4 {
    font-family: var(--font-primary);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.summary-item:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-item span {
    color: var(--grey-light);
}

.summary-item strong {
    font-size: 1.1rem;
}

.summary-rating {
    text-align: right;
}

.cta-stars {
    color: var(--primary-color);
}

.review-disclaimer {
    font-size: 0.8rem;
    text-align: center;
    color: #888;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .review-header-content {
        flex-direction: column;
        text-align: center;
    }

    .review-page-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .review-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .review-main-title {
        font-size: 2.5rem;
    }

    .review-details-grid,
    .review-pros-cons-layout {
        grid-template-columns: 1fr;
    }
}

/* --------------------------- Contact Page Style --------------------------- */
.contact-content {
    padding: 6rem 0;
    background-color: var(--dark-color);
    border-top: 1px solid var(--border-color);
}

.contact-page-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    background-color: var(--panel-color);
    border: 1px solid var(--grey-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-info-panel {
    background: linear-gradient(145deg, #222, #1a1a1a);
    border: 1px solid var(--grey-dark);
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info-header .fas.fa-headset {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-header h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    color: var(--grey-light);
    line-height: 1.7;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ci-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ci-icon {
    background-color: var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ci-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey-light);
    margin-bottom: 0.3rem;
    display: block;
}

.ci-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    word-break: break-word;
}

.ci-link:hover {
    color: var(--primary-color);
}

.ci-link.static {
    color: var(--light-color);
    cursor: default;
}

.contact-form-panel {
    border: 1px solid var(--grey-dark);
    padding: 3rem;
}

.form-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-description {
    color: var(--grey-light);
    margin-bottom: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}


.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--border-color);
    border: 1px solid #444;
    border-radius: 8px;
    color: var(--light-color);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-input:focus+.form-label,
.form-input:valid+.form-label,
.form-textarea:focus+.form-label,
.form-textarea:valid+.form-label {
    display: none;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit-button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: rgba(1, 99, 47, 0.2);
    color: #a4e6b3;
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

@media (max-width: 992px) {
    .contact-page-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-panel,
    .contact-info-panel {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 4rem 0;
    }

    .contact-page-layout {
        padding: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .contact-form-panel,
    .contact-info-panel {
        padding: 2rem 1.5rem;
    }

    .form-title,
    .contact-info-header h2 {
        font-size: 1.8rem;
    }

    .ci-item {
        gap: 1rem;
    }
}

/* ---------------------------- Legal Page Styles --------------------------- */
.legal-page {
  padding: 6rem 0;
  background-color: var(--dark-color);
}

.legal-page .container {
  background-color: var(--grey-dark);
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.legal-page h2.gradient-text {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  background: -webkit-linear-gradient(45deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.legal-page h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--light-color);
  line-height: 1.3;
}

.legal-page h3.section-heading {
  color: var(--primary-color);
}

.legal-page p {
  color: var(--grey-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-page p strong {
  color: var(--light-color);
}

.legal-page a.styled-link {
  color: var(--primary-light);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal-page a.styled-link:hover {
  color: var(--tertiary-color);
}

.legal-page .styled-list {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.legal-page .styled-list li {
  position: relative;
  margin-bottom: 0.8rem;
  color: var(--grey-light);
  line-height: 1.8;
}

.legal-page .styled-list li::before {
  content: '\2022';
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1.5rem;
  margin-left: -1.5rem;
}

.legal-page .cookie-types-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.legal-page .cookie-type-box {
  background-color: var(--dark-color);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--grey-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-page .cookie-type-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.legal-page .cookie-type-box h4 {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-page .cookie-type-box h4 i {
  color: var(--primary-color);
}

.legal-page .highlight-box {
  background-color: var(--secondary-dark);
  border-left: 5px solid var(--primary-color);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  border-radius: 8px;
}

.legal-page .highlight-icon {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.legal-page .highlight-text p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .legal-page .container {
    padding: 2rem 1.5rem;
  }

  .legal-page h2.gradient-text {
    font-size: 2rem;
  }

  .legal-page h3 {
    font-size: 1.5rem;
  }

  .legal-page .cookie-types-wrapper {
    grid-template-columns: 1fr;
  }

  .legal-page .highlight-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .legal-page .highlight-text {
    text-align: left;
  }
}