/* --- Global Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Oswald:wght@400;700&display=swap');

:root {
    /* Accent Colors */
    --primary-color: #B22222;
    --primary-light: #DC143C;
    --secondary-color: #553A26;
    --secondary-dark: #3E2C1C;
    --tertiary-color: #808080;

    /* Rambo Theme Palette */
    --dark-color: #2A3F2A;
    --light-color: #F5F5DC;
    --grey-light: #BDB76B;
    --grey-dark: #E9E5D1;

    /* Utility Colors */
    --success-color: #2E8B57;
    --error-color: #dd4d4d;

    /* New Font Family Variables */
    --font-primary: 'Black Ops One', cursive;
    --font-secondary: 'Oswald', 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(--light-color);
    color: var(--dark-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-primary);
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-3px);
}

.btn-outlined {
    background-color: transparent;
    color: var(--dark-color);
    border-color: var(--dark-color);
}

.btn-outlined:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

/* --- HEADER STYLES --- */
.site-header {
    background-color: var(--grey-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top-bar {
    background-color: var(--light-color);
    padding: 0.5rem 0;
    font-size: 0.8rem;
    text-align: center;
    border-bottom: 1px solid var(--grey-light);
}

.responsibility-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary, #555);
}

.age-icon {
    height: 20px;
}

.top-bar-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.3s ease;
}

.top-bar-link:hover {
    color: var(--secondary-dark);
}

.header-main-bar {
    padding: 1rem 0;
    border-bottom: 3px solid var(--grey-light);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo-img {
    max-height: 60px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-in-out;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-menu-toggle,
.icon-close {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--dark-color);
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(5px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .nav-list.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        color: var(--dark-color);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .icon-close {
        display: block;
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 2.5rem;
    }

}

@media (max-width: 1000px) {
    .site-logo-img {
        max-height: 50px;
    }
}

/* --- FOOTER STYLES ---  */
.site-footer {
    background-color: var(--grey-dark);
    color: var(--dark-color);
    padding-top: 4rem;
    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-light);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo img {
    max-height: 70px;
}

.tag-responsible-gaming {
    background-color: var(--grey-light);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tag-18-plus {
    background-color: var(--secondary-color);
    color: #FFFFFF;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    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(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-disclaimer span {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-secondary, #555);
}

.footer-disclaimer strong {
    color: var(--dark-color);
}

.footer-link-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--text-secondary, #555);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-link:hover,
.footer-link.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-secondary-content {
    padding: 2rem 0;
    border-top: 1px solid var(--grey-light);
}

.legal-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary, #555);
    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;
    filter: invert(1);
    transition: opacity 0.3s ease;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary, #555);
    border-top: 1px solid var(--grey-light);
}

@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 Popup --- */
.age-verification-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(42, 63, 42, 0.9);
    backdrop-filter: blur(5px);
    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-color: var(--grey-dark);
    border: 2px solid var(--dark-color);
    border-radius: 4px;
    padding: 3rem;
    text-align: center;
    max-width: 550px;
    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: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-subtitle {
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.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(--dark-color);
    font-weight: 700;
    text-transform: uppercase;
}

.input-group input {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--light-color);
    border: 2px solid var(--grey-light);
    border-radius: 4px;
    color: var(--dark-color);
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    text-align: center;
    font-weight: 700;
}

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(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: none;
}

#verifyAgeBtn {
    width: 100%;
    padding: 1rem;
}

.decline-message {
    display: none;
}

.decline-title {
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-disclaimer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #555;
}

.modal-disclaimer a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--grey-dark);
    padding: 1.5rem;
    transition: bottom 0.5s ease-in-out;
    z-index: 2000;
    border-top: 3px solid var(--secondary-color);
    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;
}

.cookie-message {
    flex: 1;
    min-width: 300px;
    color: var(--dark-color);
}

.cookie-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 700;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
}

.btn-tertiary {
    background-color: transparent;
    color: var(--dark-color);
    border-color: var(--dark-color);
}

.btn-tertiary:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        gap: 0.75rem;
    }
    .cookie-banner-buttons button{
        padding: 0.5rem;
    }
    .cookie-banner-buttons button span{
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .age-verification-modal {
        padding: 2rem 1.5rem;
    }

    .modal-title {
        font-size: 2rem;
    }

    .date-inputs {
        flex-direction: column;
    }
}

/* --- DECORATIVE DIVIDER STYLES --- */
.accent-bg-divider {
    height: auto;
    background: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    clip-path: none;
}

.accent-bg-divider::before,
.accent-bg-divider::after {
    content: '';
    height: 1px;
    background-color: var(--grey-light);
    flex-grow: 1;
}

.divider-seal-wrapper {
    width: 40px;
    height: 40px;
    background-color: var(--grey-dark);
    border: 1px solid var(--grey-light);
    border-radius: 50%;
    padding: 0;
    position: static;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-seal {
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    background: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23D4AF37' d='M12 2L2 12l10 10 10-10L12 2z'/%3E%3C/svg%3E");
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/* --- FAQ Section Styling --- */
.faq-section {
    padding: 6rem 0;
    position: relative;
}

.faq-section .section-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--primary-color);
    border-style: solid;
    opacity: 0.3;
}

.faq-section .section-corner.top-left {
    top: 2rem;
    left: 2rem;
    border-width: 3px 0 0 3px;
}

.faq-section .section-corner.top-right {
    top: 2rem;
    right: 2rem;
    border-width: 3px 3px 0 0;
}

.faq-section .section-corner.bottom-left {
    bottom: 2rem;
    left: 2rem;
    border-width: 0 0 3px 3px;
}

.faq-section .section-corner.bottom-right {
    bottom: 2rem;
    right: 2rem;
    border-width: 0 3px 3px 0;
}


@media (max-width: 768px) {
.faq-section .section-corner.top-left {
    top: 1rem;
    left: 1rem;
    border-width: 3px 0 0 3px;
}

.faq-section .section-corner.top-right {
    top: 1rem;
    right: 1rem;
    border-width: 3px 3px 0 0;
}

.faq-section .section-corner.bottom-left {
    bottom: 1rem;
    left: 1rem;
    border-width: 0 0 3px 3px;
}

.faq-section .section-corner.bottom-right {
    bottom: 1rem;
    right: 1rem;
    border-width: 0 3px 3px 0;
}
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.faq-section .section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-color);
    margin: 0;
    padding: 0 1.5rem;
    border-left: 2px solid var(--grey-light);
    border-right: 2px solid var(--grey-light);
}

.faq-section .header-decoration {
    display: none;
}

.faq-accordion {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
}

.faq-panel {
    grid-column: 2 / 3;
}


.faq-item {
    background-color: #fff;
    border: 1px solid var(--grey-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.faq-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--dark-color);
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-icon-wrapper {
    background-color: var(--light-color);
    border: 1px solid var(--grey-light);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.faq-icon {
    font-size: 1.6rem;
    line-height: 1;
    transition: transform 0.4s ease;
    font-weight: 700;
}

.faq-button.active .faq-icon-wrapper {
    background-color: var(--secondary-color);
    border-color: var(--secondary-dark);
    color: #fff;
    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: #555;
    line-height: 1.8;
    border-top: 1px solid var(--grey-light);
    margin: 0 1.5rem;
}

.faq-answer ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

/* --- Support Grid Section Styling --- */
.support-grid-section {
    padding: 6rem 0;
    background-color: var(--grey-dark);
}

.support-grid-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.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: #555;
    line-height: 1.8;
}

.support-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.support-grid-item {
    border: 2px solid var(--grey-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.support-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.support-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    padding: 1.5rem;
}

.support-logo-wrapper img {
    max-height: 50px;
    max-width: 100%;
    filter: invert(1);
    transition: all 0.4s ease;
}

@media (max-width: 992px) {
    .faq-accordion {
        grid-template-columns: 1fr;
    }

    .faq-accordion::before {
        display: none;
    }

    .faq-panel {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .faq-section .section-header h2 {
        font-size: 2rem;
        border: none;
        padding: 0;
    }

    .faq-button {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
        margin: 0 1rem;
    }

    .support-grid-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

/* --- HERO SECTION --- */
@keyframes text-reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes float-left-to-right {
    0% {
        transform: translateX(-100vw) translateY(var(--v-start, 0px)) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateX(100vw) translateY(var(--v-end, 0px)) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float-right-to-left {
    0% {
        transform: translateX(100vw) translateY(var(--v-start, 0px)) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateX(-100vw) translateY(var(--v-end, 0px)) rotate(-360deg);
        opacity: 0;
    }
}

.hero-section-pro {
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
    background-image:
        radial-gradient(circle at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='%232A3F2A' fill-opacity='0.3'%3E%3Cpath d='M20 20c0-2.21 1.79-4 4-4s4 1.79 4 4-1.79 4-4 4-4-1.79-4-4zm-14 0c0-2.21 1.79-4 4-4s4 1.79 4 4-1.79 4-4 4-4-1.79-4-4zM10 2l2.83 2.83L10 7.66 7.17 4.83 10 2zm20 0l2.83 2.83L30 7.66 27.17 4.83 30 2zM10 38l2.83-2.83L10 32.34 7.17 35.17 10 38zm20 0l2.83-2.83L30 32.34 27.17 35.17 30 38z'/%3E%3C/g%3E%3C/svg%3E");
    padding: 8rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section-pro .floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-section-pro .float {
    position: absolute;
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-light);
}

.hero-section-pro .crosshairs1,
.hero-section-pro .star-l1,
.hero-section-pro .bomb1,
.hero-section-pro .helicopter1,
.hero-section-pro .dogtag1,
.hero-section-pro .dice-d20-1,
.hero-section-pro .spade1,
.hero-section-pro .heart1,
.hero-section-pro .diamond-new1,
.hero-section-pro .club1 {
    animation: float-left-to-right 30s linear infinite;
}

.hero-section-pro .crosshairs2,
.hero-section-pro .star-r2,
.hero-section-pro .bomb2,
.hero-section-pro .helicopter2,
.hero-section-pro .dogtag2,
.hero-section-pro .dice-six-2,
.hero-section-pro .spade2,
.hero-section-pro .heart2,
.hero-section-pro .diamond-new2,
.hero-section-pro .club2 {
    animation: float-right-to-left 30s linear infinite;
}

.hero-section-pro .crosshairs1 {
    top: 8%;
    animation-delay: -2s;
    --v-start: 0;
    --v-end: -20px;
}

.hero-section-pro .star-l1 {
    top: 25%;
    animation-delay: -5s;
    --v-start: 10px;
    --v-end: -10px;
}

.hero-section-pro .bomb1 {
    top: 60%;
    animation-delay: -8s;
    --v-start: -15px;
    --v-end: 15px;
}

.hero-section-pro .helicopter1 {
    top: 88%;
    animation-delay: -12s;
    --v-start: 5px;
    --v-end: -5px;
}

.hero-section-pro .dogtag1 {
    top: 45%;
    animation-delay: -15s;
    --v-start: -10px;
    --v-end: 20px;
}

.hero-section-pro .dice-d20-1 {
    top: 5%;
    animation-delay: -18s;
    --v-start: 20px;
    --v-end: -5px;
}

.hero-section-pro .spade1 {
    top: 38%;
    animation-delay: -20s;
    --v-start: -5px;
    --v-end: 10px;
}

.hero-section-pro .heart1 {
    top: 72%;
    animation-delay: -22s;
    --v-start: 15px;
    --v-end: -15px;
}

.hero-section-pro .diamond-new1 {
    top: 92%;
    animation-delay: -24s;
    --v-start: -20px;
    --v-end: 0px;
}

.hero-section-pro .club1 {
    top: 20%;
    animation-delay: -26s;
    --v-start: 10px;
    --v-end: -10px;
}

.hero-section-pro .crosshairs2 {
    top: 12%;
    animation-delay: -3s;
    --v-start: -10px;
    --v-end: 10px;
}

.hero-section-pro .star-r2 {
    top: 33%;
    animation-delay: -6s;
    --v-start: 20px;
    --v-end: -20px;
}

.hero-section-pro .bomb2 {
    top: 65%;
    animation-delay: -9s;
    --v-start: -5px;
    --v-end: 5px;
}

.hero-section-pro .helicopter2 {
    top: 90%;
    animation-delay: -13s;
    --v-start: 10px;
    --v-end: -10px;
}

.hero-section-pro .dogtag2 {
    top: 48%;
    animation-delay: -16s;
    --v-start: -15px;
    --v-end: 15px;
}

.hero-section-pro .dice-six-2 {
    top: 8%;
    animation-delay: -19s;
    --v-start: 5px;
    --v-end: -5px;
}

.hero-section-pro .spade2 {
    top: 42%;
    animation-delay: -21s;
    --v-start: -20px;
    --v-end: 20px;
}

.hero-section-pro .heart2 {
    top: 75%;
    animation-delay: -23s;
    --v-start: 10px;
    --v-end: -10px;
}

.hero-section-pro .diamond-new2 {
    top: 94%;
    animation-delay: -25s;
    --v-start: -15px;
    --v-end: 15px;
}

.hero-section-pro .club2 {
    top: 22%;
    animation-delay: -27s;
    --v-start: 5px;
    --v-end: -5px;
}

.hero-section-pro .container {
    position: relative;
    z-index: 2;
}

.hero-section-pro .hero-content-pro {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section-pro .hero-headline {
    animation: text-reveal 1s ease-out 0.3s both;
}

.hero-section-pro .hero-subheadline {
    animation: text-reveal 1s ease-out 0.6s both;
}

.hero-section-pro .hero-actions {
    animation: text-reveal 1s ease-out 0.9s both;
}

.hero-section-pro .hero-update-notice {
    animation: text-reveal 1s ease-out 1.2s both;
}

.hero-section-pro .hero-headline {
    font-family: var(--font-primary);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-color);
}

.hero-section-pro .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-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--grey-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.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: var(--grey-light);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero-section-pro .hero-headline {
        font-size: 3rem;
    }

    .hero-section-pro .hero-subheadline {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-section-pro {
        padding: 6rem 0;
    }

    .hero-section-pro .hero-headline {
        font-size: 2.2rem;
    }

    .hero-section-pro .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-section-pro .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

.payment-methods-wrapper {
    background-color: var(--grey-dark);
    border: 2px solid var(--grey-light);
    border-radius: 4px;
    padding: 2rem;
    margin-top: 3rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.payment-label {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-color);
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-icons img {
    max-height: 35px;
    filter: saturate(1);
    opacity: 1;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .payment-label {
        font-size: 1.2rem;
    }

    .payment-icons {
        gap: 1.5rem;
    }

    .payment-icons img {
        max-height: 30px;
    }
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */

/* ---------------------------- Home Page Styles ---------------------------- */
.review-operator-section {
    padding: 6rem 0;
    background-color: var(--light-color); 
    position: relative;
    overflow: hidden;
}

.review-operator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23D3D3D3' fill-opacity='0.3'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.review-operator-section .container {
    position: relative;
    z-index: 2;
}

.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: #fff;
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid var(--grey-light);
}

.review-operator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    perspective: 1500px;
}

.casino-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.casino-card:hover {
    transform: translateY(-10px) rotateY(-5deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.casino-card-main {
    background: #fff;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.casino-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.op-logo {
    max-height: 40px;
}

.op-card-rating {
    font-weight: 700;
    color: var(--primary-color);
}
.op-card-rating i { margin-left: 0.3rem; }

.op-bonus-highlight {
    margin-bottom: 1.5rem;
}
.op-bonus-value {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}
.op-bonus-desc {
    font-size: 0.9rem;
    color: var(--text-secondary, #555);
}

.op-card-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    color: #fff;
    margin-bottom: 1.5rem;
}
.badge-best-bonus { background: linear-gradient(45deg, var(--secondary-color), var(--secondary-dark)); }
.badge-recommended { background: linear-gradient(45deg, var(--success-color), #207a4a); }
.badge-popular { background: linear-gradient(45deg, #007bff, #0056b3); }
.badge-top-pick { background: linear-gradient(45deg, #dc3545, #b02a37); }
.badge-new { background: linear-gradient(45deg, #ffc107, #d39e00); color: var(--dark-color); }

.op-card-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.casino-card-details {
    background-color: var(--grey-dark);
    padding: 1.5rem;
    font-size: 0.9rem;
    border-top: 1px solid var(--grey-light);
    transform: translateZ(-1px);
}

.op-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
.op-card-features li {
    margin-bottom: 0.5rem;
}
.op-card-features i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.op-card-terms {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--grey-light);
}

.review-operator-section  .section-footer a {
    width: fit-content;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ------ */
@keyframes pulse-red {
    0%, 100% { box-shadow: 0 0 30px rgba(178, 34, 34, 0.4); }
    50% { box-shadow: 0 0 50px rgba(220, 20, 60, 0.7); }
}

.cta-section-pro {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-color);
    background-image:
        radial-gradient(ellipse at top, rgba(189, 183, 107, 0.15), transparent 70%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath fill='%23553A26' fill-opacity='0.2' d='M0 0h4v4H0V0zm4 4h4v4H4V4z'/%3E%3C/svg%3E");
    border-top: 2px solid var(--border-color, #BDB76B);
    border-bottom: 2px solid var(--border-color, #BDB76B);
}
.cta-background-elements {
    display: none;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-content {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid rgba(189, 183, 107, 0.3);
    text-align: center;
}

.cta-text {
    margin-bottom: 2rem;
}

.cta-headline {
    font-family: var(--font-primary); 
    font-size: 3rem;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.cta-subheadline {
    color: var(--grey-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.cta-action .btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    animation: pulse-red 3s infinite ease-in-out;
}

@media (max-width: 768px) {
    .cta-headline {
        font-size: 2.5rem;
    }
    .cta-content {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .cta-section-pro {
        padding: 4rem 0;
    }
    .cta-headline {
        font-size: 2rem;
    }
    .cta-content {
        padding: 2rem 1.5rem;
    }
}

/* ------ */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
}

.testimonials-section .section-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--dark-color);
    border-style: solid;
    opacity: 0.3;
}
.testimonials-section .section-corner.top-left { top: 1.5rem; left: 1.5rem; border-width: 2px 0 0 2px; }
.testimonials-section .section-corner.top-right { top: 1.5rem; right: 1.5rem; border-width: 2px 2px 0 0; }
.testimonials-section .section-corner.bottom-left { bottom: 1.5rem; left: 1.5rem; border-width: 0 0 2px 2px; }
.testimonials-section .section-corner.bottom-right { bottom: 1.5rem; right: 1.5rem; border-width: 0 2px 2px 0; }


@media (max-width: 768px) {
.testimonials-section .section-corner.top-left { top: 1rem; left: 1rem; border-width: 2px 0 0 2px; }
.testimonials-section .section-corner.top-right { top: 1rem; right: 1rem; border-width: 2px 2px 0 0; }
.testimonials-section .section-corner.bottom-left { bottom: 1rem; left: 1rem; border-width: 0 0 2px 2px; }
.testimonials-section .section-corner.bottom-right { bottom: 1rem; right: 1rem; border-width: 0 2px 2px 0; }

}

.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.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}
.testimonials-section .gradient-text-primary {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: inherit;
    color: var(--primary-color);
}

.testimonials-section .section-header p {
    color: var(--dark-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--light-color);
    border: 1px solid var(--grey-light);
    padding: 2px;
    position: relative;
}

.testimonial-card-inner {
    background-color: var(--light-color);
    border: 1px dashed var(--grey-light);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote-icon {
    font-family: var(--font-primary);
    font-size: 6rem;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.2;
    margin-bottom: -2rem;
    text-align: center;
}

.testimonial-text {
    font-family: 'Courier New', Courier, monospace; 
    color: var(--dark-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 600;
    flex-grow: 1;
    font-size: 1.1rem;
}

.testimonial-author-info {
    border-top: 2px solid var(--grey-light);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.author-name {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: var(--dark-color);
    text-align: center;
    text-transform: uppercase;
}

.author-title {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-align: center;
    font-weight: 700;
}

.author-rating {
    color: var(--primary-color);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .testimonials-section .section-header h2 {
        font-size: 2.2rem;
    }
}

/* ------ */
.home-licensed-casinos-section {
    padding: 6rem 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.home-licensed-casinos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23D3D3D3' fill-opacity='0.3'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.home-licensed-casinos-section .container {
    position: relative;
    z-index: 2;
}

.home-licensed-casinos-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.licensed-casinos-content-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.casino-dossier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    align-items: center;
}

.logo-grid-item {
    text-align: center;
}

.logo-wrapper {
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.logo-wrapper:hover {
    transform: scale(1.1);
}

.logo-wrapper img {
    max-height: 80px;
    padding: 0.5rem;
    filter: brightness(0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.home-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--grey-light);
    flex-wrap: wrap;
}

.home-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--text-secondary, #555);
}

.home-trust-item i {
    color: var(--success-color);
}

@media (max-width: 768px) {
    .licensed-casinos-content-wrapper {
        padding: 2rem;
    }
    .casino-dossier-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

/* ----------------------- Responsibility Page Styles ----------------------- */
.principles-v3-section {
    padding: 6rem 0;
    background-color: var(--light-color);
    border-top: 1px solid var(--grey-light);
    position: relative;
}

.principles-v3-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23D3D3D3' fill-opacity='0.3'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.principles-v3-section .container {
    position: relative;
    z-index: 2;
}

.principles-v3-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.principles-v3-section .section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.principles-v3-section .section-header p {
    color: var(--text-secondary, #555);
    line-height: 1.8;
}

.principles-v3-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
    align-items: flex-start;
}

.principles-v3-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: sticky;
    top: 120px;
}

.principle-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: transparent;
    border: 1px solid var(--grey-light);
    border-radius: 8px;
    color: var(--text-secondary, #555);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.principle-nav-link i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    color: var(--tertiary-color);
    transition: all 0.3s ease;
}

.principle-nav-link:hover {
    background-color: #fff;
    border-color: var(--primary-color);
    color: var(--dark-color);
}

.principle-nav-link.active {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.principle-nav-link.active i {
    color: var(--light-color);
}

.principles-v3-content {
    background-color: var(--grey-dark);
    border: 1px solid var(--grey-light);
    border-radius: 12px;
    padding: 2.5rem;
}

.principle-panel-v3 {
    display: none;
    animation: fadeIn 0.5s ease;
}

.principle-panel-v3.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.principle-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.principle-panel-v3 p {
    color: var(--text-secondary, #555);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.principle-list {
    list-style: none;
    padding-left: 0;
}

.principle-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
}

.principle-list li::before {
    content: '\f058';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 1rem;
    top: 5px;
}

.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.subsection-title {
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--grey-light);
    padding-bottom: 0.5rem;
}

.styled-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 700;
}

.strong-notice {
    margin-top: 1.5rem;
    font-weight: 700;
    background-color: var(--light-color);
    padding: 1rem;
    border-left: 4px solid var(--primary-color);
}

@media (max-width: 992px) {
    .principles-v3-container {
        grid-template-columns: 1fr;
    }

    .principles-v3-nav {
        position: static;
        padding-bottom: 1rem;
    }

    .principle-nav-link {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .two-column-list {
        grid-template-columns: 1fr;
    }
}

/* ------------------------ Casnio Review Page Styles ----------------------- */
.review-operator-section {
    padding: 6rem 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.review-operator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23D3D3D3' fill-opacity='0.3'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.review-operator-section .container {
    position: relative;
    z-index: 2;
}

.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: #fff;
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid var(--grey-light);
}

.review-operator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    perspective: 1500px;
}

.casino-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    border: 1px solid var(--grey-light);
}

.casino-card:hover {
    transform: translateY(-10px) rotateY(-5deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.casino-card-main {
    background: #fff;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.casino-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.op-logo {
    max-height: 70px;
    border-radius: 10px;
    background-color: var(--dark-color);
}

.op-card-rating {
    font-weight: 700;
    color: var(--primary-color);
}

.op-card-rating i {
    margin-left: 0.3rem;
}

.op-bonus-highlight {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.op-bonus-value {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.op-bonus-desc {
    font-size: 0.9rem;
    color: var(--text-secondary, #555);
}

.op-card-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.badge-best-bonus {
    background: linear-gradient(45deg, var(--secondary-color), var(--secondary-dark));
}

.badge-recommended {
    background: linear-gradient(45deg, var(--success-color), #207a4a);
}

.badge-popular {
    background: linear-gradient(45deg, #007bff, #0056b3);
}

.badge-top-pick {
    background: linear-gradient(45deg, #dc3545, #b02a37);
}

.badge-new {
    background: linear-gradient(45deg, #ffc107, #d39e00);
    color: var(--dark-color);
}

.op-card-btn {
    width: 100%;
    justify-content: center;
}

.casino-card-details {
    background-color: var(--grey-dark);
    padding: 1.5rem;
    font-size: 0.9rem;
    border-top: 1px solid var(--grey-light);
    transform: translateZ(-1px);
}

.op-card-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.op-card-features li {
    margin-bottom: 0.5rem;
}

.op-card-features i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.op-card-terms {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--grey-light);
}

/* ------ */
.review-page-container{    
 border-bottom: 2px solid var(--dark-color);
}

@keyframes fadeIn-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-header {
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
 background-color: var(--light-color);
}

.review-header-main{
    order: 2;
}

.review-header-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(45deg, var(--light-color) 0%, var(--grey-dark) 100%);
    opacity: 0.8;
}

.review-header-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.review-main-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.review-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary, #555);
    max-width: 500px;
    margin-bottom: 2rem;
}

.review-feature-tags {
    list-style: none;
    padding: 0;
}

.review-feature-tags li {
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.review-feature-tags i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.review-header-cta-card {
    order: 1;
    background: #fff;
    border: 1px solid var(--grey-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    animation: fadeIn-up 0.8s ease-out 0.5s both;
}

.cta-logo-wrapper {
    margin-bottom: 1.5rem;
}

.cta-logo-wrapper img {
    max-height: 120px;
    padding: 0.5rem;
    margin: 0 auto;
background-color: var(--dark-color);
border-radius: 10px;
}

.cta-bonus-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-bonus-value {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0.5rem 0 1.5rem;
}

.cta-btn {
    width: fit-content;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cta-guarantee {
    display: block;
    width: 100%;
    font-size: 0.8rem;
    color: #777;
}

.cta-guarantee i {
    margin-right: 0.5rem;
    color: var(--success-color);
}

.review-page-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 0;
}

.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: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.review-detail-card {
    background-color: #fff;
    border: 1px solid var(--grey-light);
    border-radius: 8px;
    padding: 1.5rem;
}

.review-detail-card h4 {
    color: var(--secondary-color);
    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);
    margin-bottom: 1rem;
}

.pros-cons-block:first-child li::before {
    content: '\f058';
    color: var(--success-color);
}

.cons-title {
    color: var(--error-color);
    margin-bottom: 1rem;
}

.pros-cons-block:last-child li::before {
    content: '\f057';
    color: var(--error-color);
}

.review-sidebar {
    position: static;
}

.review-summary-card {
    background: var(--grey-dark);
    border: 1px solid var(--grey-light);
    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(--grey-light);
    padding-bottom: 1.5rem;
}

.summary-item:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-item span {
    color: var(--dark-color);
    font-size: 1.2rem;
}

.summary-item strong {
    font-size: 1.1rem;
}

.summary-rating {
    text-align: right;
}

.cta-stars {
    color: var(--primary-color);
}

.review-disclaimer {
    font-size: 0.9rem;
    text-align: center;
    color: var(--dark-color);
    margin-top: 2rem;
}


.review-main-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .review-header-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .review-header-cta-card {
        order: 1;
        margin: 0 auto;
    }

    .review-page-layout {
        grid-template-columns: 1fr;
    }

    .review-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .review-main-title {
        font-size: 3rem;
    }

    .review-details-grid,
    .review-pros-cons-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .review-header {
        padding: 4rem 0;
    }

    .review-main-title {
        font-size: 2.5rem;
    }
}

/* --------------------------- Contact Page Styles -------------------------- */
.contact-content {
    padding: 6rem 0;
    background-color: var(--grey-dark);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23553A26' fill-opacity='0.2'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    border-bottom: 2px solid var(--dark-color);
}

.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background-color: var(--grey-dark);
    border: 2px solid var(--border-color, #BDB76B);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.contact-info-panel {
    background: var(--secondary-color);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    color: var(--light-color);
}

.contact-info-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info-header .fas.fa-headset {
    font-size: 3rem;
    color: var(--grey-light);
    margin-bottom: 1rem;
}

.contact-info-header h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--light-color);
}

.contact-info-header .gradient-text-primary {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: inherit;
}


.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(--secondary-dark);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--grey-light);
    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: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    word-break: break-word;
}

.ci-link:hover {
    color: var(--primary-color);
}

.ci-link.static {
    color: #fff;
    cursor: default;
}

.contact-form-panel {
    padding: 3rem;
}

.form-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-description {
    color: var(--dark-color);
    margin-bottom: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--light-color);
    border: 2px solid var(--grey-light);
    border-radius: 4px;
    color: var(--dark-color);
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit-button {
    width: 100%;
    padding: 1rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    display: none;
    font-weight: 700;
}

.form-message.success {
    background-color: rgba(46, 139, 87, 0.2);
    color: var(--success-color);
}

.form-message.error {
    background-color: rgba(178, 34, 34, 0.2);
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .contact-page-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        border-bottom: 2px solid var(--border-color, #BDB76B);
    }
}

@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 {
        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;
    }
}

/* --------------------------- Legal Pages Styles --------------------------- */
.legal-page {
    padding: 4rem 0;
    background-color: var(--grey-dark);
    color: var(--dark-color);
    border-bottom: 2px solid var(--dark-color);
}

.legal-page .container {
    max-width: 900px;
}

.legal-page h2,
.legal-page h3 {
    font-family: var(--font-primary);
    margin-bottom: 1.5rem;
}

.legal-page h2 {
    font-size: 2.8rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
    display: inline-block;
}

.legal-page h3 {
    font-size: 1.8rem;
}

.legal-page p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary, #555);
}

.legal-page strong {
    color: var(--dark-color);
}

.legal-page .styled-list {
    list-style: none;
    padding-left: 0;
}

.legal-page .styled-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
}

.legal-page .styled-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.cookie-section {
    margin-bottom: 3rem;
}

.cookie-types-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cookie-type-box {
    background-color: var(--light-color);
    border: 1px solid var(--grey-light);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.cookie-type-box h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.cookie-type-box i {
    color: var(--secondary-color);
}

.privacy-section,
.terms-section {
    margin-bottom: 3rem;
}

.section-heading {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-icon {
    font-size: 1.8rem;
    color: #856404;
}

.highlight-text p {
    margin: 0;
    color: #856404;
}

.styled-link {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page h2 {
        font-size: 2.2rem;
    }

    .legal-page h3 {
        font-size: 1.5rem;
    }

    .cookie-types-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 568px) {
    .legal-page h2 {
        font-size: 2rem !important;
    }
}