/* --- Global Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Orbitron:wght@400;600;700&family=Rajdhani:wght@400;500;600&family=Chakra+Petch:wght@400;600&display=swap');

:root {
    --black: #000000;
    --white: #FFFFFF;
    --primary-background: #0A0A0A;
    --dark-surface: #1C1C1E;
    --medium-dark-surface: #2C2C2E;
    --light-text-on-dark: #E0E0E0;
    --muted-text-on-dark: #A0A0A0;
    --golden-accent: #DAA520;
    --soft-golden: #FFD700;
    --silver-accent: #C0C0C0;
    --soft-silver: #E0E0E0;
    --dark-lines: #3A3A3C;
    --accent-line-gold: rgba(218, 165, 32, 0.4);
    --accent-line-silver: rgba(192, 192, 192, 0.3);
    --body-gradient-start: #1A1A1A;
    --body-gradient-mid-dark: #20182C;
    --body-gradient-mid-light: #2A1F1F;
    --body-gradient-end: #0A0A0A;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg,
            var(--body-gradient-start) 0%,
            var(--body-gradient-mid-dark) 30%,
            var(--body-gradient-mid-light) 70%,
            var(--body-gradient-end) 100%);
    background-attachment: fixed;
    color: var(--light-text-on-dark);
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.background-deco-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

@keyframes subtle-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

.deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.deco-1 {
    width: 350px;
    height: 350px;
    background: var(--golden-accent);
    top: -10%;
    left: -5%;
    animation: subtle-pulse 10s ease-in-out 0s infinite;
}

.deco-2 {
    width: 300px;
    height: 300px;
    background: var(--silver-accent);
    bottom: -15%;
    right: -10%;
    animation: subtle-pulse 10s ease-in-out 3s infinite;
}

.deco-3 {
    width: 250px;
    height: 250px;
    background: var(--golden-accent);
    top: 20%;
    right: 5%;
    animation: subtle-pulse 12s ease-in-out 6s infinite;
}

.deco-4 {
    width: 200px;
    height: 200px;
    background: var(--silver-accent);
    bottom: 25%;
    left: 10%;
    animation: subtle-pulse 9s ease-in-out 9s infinite;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.02) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.8;
    filter: saturate(0.5);
}

header,
main,
footer {
    position: relative;
    z-index: 2;
}

h1,
h2 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.1em;
    font-weight: 700;
}

h3,
h4,
h5,
h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    font-weight: 400;
}

button,
input,
textarea,
select,
.label,
.nav-link,
.btn {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-bg-dark {
    background-color: var(--primary-background);
    color: var(--light-text-on-dark);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    border: 1px solid var(--dark-lines);
}

.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4,
.section-bg-dark h5,
.section-bg-dark h6 {
    color: var(--white);
}

.section-bg-dark::before,
.section-bg-dark::after,
.section-bg-dark .shape-element {
    position: absolute;
    content: '';
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
    filter: blur(60px);
}

.section-bg-dark::before {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 300px solid var(--golden-accent);
    top: -100px;
    right: -100px;
    transform: rotate(15deg);
}

.section-bg-dark::after {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: var(--silver-accent);
    bottom: -80px;
    left: -80px;
}

.section-bg-light {
    background-color: var(--dark-surface);
    color: var(--light-text-on-dark);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), inset 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid var(--dark-lines);
}

.section-bg-light h1,
.section-bg-light h2,
.section-bg-light h3,
.section-bg-light h4,
.section-bg-light h5,
.section-bg-light h6 {
    color: var(--white);
}

.section-bg-light::before,
.section-bg-light::after,
.section-bg-light .shape-element {
    position: absolute;
    content: '';
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
    filter: blur(50px);
}

.section-bg-light::before {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--golden-accent);
    top: -50px;
    left: -50px;
}

.section-bg-light::after {
    width: 200px;
    height: 200px;
    background-color: var(--silver-accent);
    bottom: -50px;
    right: -50px;
    transform: rotate(45deg);
}

.gradient-text-main {
    background: linear-gradient(90deg, var(--white), var(--soft-golden));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.gradient-text-secondary {
    background: linear-gradient(90deg, var(--golden-accent), var(--silver-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-truncate-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table_desc.text-truncate-4 {
    margin-top: 0.6rem;
}

.btn {
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    /* align-items: center; */
    justify-content: center;
    white-space: nowrap;
    padding: 12px 28px;
    font-size: 1rem;
}

.btn i {
    margin-right: 8px;
}

.btn-primary-global {
    background: linear-gradient(90deg, var(--golden-accent), var(--soft-golden));
    color: var(--primary-background);
    border: none;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
}

.btn-primary-global:hover {
    background: linear-gradient(90deg, var(--soft-golden), var(--golden-accent));
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.6);
    transform: translateY(-2px);
}

.btn-secondary-global {
    background-color: transparent;
    color: var(--silver-accent);
    border: 1px solid var(--silver-accent);
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.1);
}

.btn-secondary-global:hover {
    background-color: var(--silver-accent);
    color: var(--primary-background);
    border-color: var(--silver-accent);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 1280px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .section-bg-dark::before,
    .section-bg-dark::after,
    .section-bg-light::before,
    .section-bg-light::after {
        opacity: 0.05;
        filter: blur(30px);
    }
}

@media (max-width: 480px) {

    .section-bg-dark::before,
    .section-bg-dark::after,
    .section-bg-light::before,
    .section-bg-light::after {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .deco {
        animation: none;
    }

    .btn:hover {
        transform: none;
    }
}

/* --- Main Header CSS --- */
.main-header-floating {
    width: 100%;
    position: relative;
    top: 20px;
    z-index: 1000;
    box-sizing: border-box;
    pointer-events: none;
}

.main-header-floating>div {
    background-color: var(--dark-surface);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-lines);
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    overflow: hidden;
    pointer-events: auto;
    transition: all 0.3s ease-out;
}

.main-header-floating>div:nth-child(1) {
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 12px 12px 0 0;
}

.main-header-floating>div:nth-child(2) {
    border-radius: 0 0 12px 12px;
}

.top-header-bar {
    background-color: var(--medium-dark-surface);
    padding: 8px 0;
    font-size: 0.8em;
    border-bottom: 1px solid var(--dark-lines);
    color: var(--light-text-on-dark);
}

.top-header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

.age-disclaimer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-text-on-dark);
    opacity: 0.8;
}

.age-icon {
    height: 15px;
    opacity: 0.7;
}

.age-text {
    line-height: 1;
    white-space: nowrap;
}

.bottom-header-bar {
    padding: 12px 0;
    background-color: var(--dark-surface);
}

.bottom-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.site-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 6px;
    text-decoration: none;
    padding: 5px 0;
    pointer-events: auto;
}

.site-logo {
    height: 80px;
    margin-left: -35px;
    object-fit: contain;
    transition: transform 0.2s ease-out;
}

footer .site-logo {
    margin-left: 0;
}

.site-logo-link:hover .site-logo {
    transform: scale(1.05);
}

.site-title {
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    transition: color 0.2s ease-out;
}

.site-logo-link:hover .site-title {
    background: linear-gradient(90deg, var(--golden-accent), var(--soft-golden));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.main-navigation .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.main-navigation .nav-item {
    text-decoration: none;
    color: var(--light-text-on-dark);
    font-weight: 500;
    font-size: 0.95em;
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease-out;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    pointer-events: auto;
}

.main-navigation .nav-item::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--golden-accent);
    border-radius: 1px;
    transition: width 0.2s ease-out, background-color 0.2s ease-out;
}

.main-navigation .nav-item:hover {
    color: var(--soft-golden);
    background-color: rgba(218, 165, 32, 0.08);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.main-navigation .nav-item:hover::before {
    width: 80%;
    background-color: var(--soft-golden);
}

.main-navigation .nav-item.active {
    color: var(--soft-golden);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.25), rgba(255, 215, 0, 0.1));
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5), inset 0 0 8px rgba(255, 215, 0, 0.3);

    padding: 7px 11px;
    transform: translateY(-1px);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.main-navigation .nav-item.active::before {
    width: 90%;
    background: linear-gradient(90deg, var(--soft-golden), var(--golden-accent));
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    pointer-events: auto;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--light-text-on-dark);
    border-radius: 1px;
    transition: all 0.3s ease-in-out;
}

.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
    .main-header-floating {
        top: 0;
        padding: 0;
    }

    .main-header-floating>div {
        border-radius: 0;
        box-shadow: none;
        transform: none;
    }

    .main-header-floating>div:hover {
        transform: none;
        box-shadow: none;
    }

    .main-header-floating>div:nth-child(1) {
        border-radius: 0;
    }

    .main-header-floating>div:nth-child(2) {
        border-radius: 0;
    }

    .top-header-bar {
        padding: 6px 0;
    }

    .bottom-header-bar {
        padding: 8px 0;
    }

    .site-logo {
        height: 70px;
    }

    .site-title {
        font-size: 1.4em;
    }

    .site-logo-link:hover .site-title {
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        color: var(--white);
    }

    .main-navigation .nav-links {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-surface);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        padding: 25px 0;
        border-top: 1px solid var(--dark-lines);
        z-index: 999;
    }

    .main-navigation .nav-links.active {
        display: flex;
    }

    .main-navigation .nav-item {
        padding: 12px 20px;
        font-size: 1.1em;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        border: none;
        text-shadow: none;
    }

    .main-navigation .nav-item::before {
        display: none;
    }

    .main-navigation .nav-item:hover {
        background-color: var(--medium-dark-surface);
        color: var(--soft-golden);
        box-shadow: none;
    }

    .main-navigation .nav-item.active {
        background-color: var(--medium-dark-surface);
        color: var(--golden-accent);
        box-shadow: none;
        border: none;
        transform: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {

    .top-header-content,
    .bottom-header-content {
        padding: 0 10px;
    }

    .age-text {
        white-space: normal;
        text-align: center;
    }

    .site-logo {
        height: 60px;
    }

    .site-title {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .top-header-bar {
        padding: 4px 0;
        font-size: 0.7em;
    }

    .age-icon {
        height: 12px;
    }

    .site-logo {
        height: 50px;
    }

    .site-title {
        font-size: 1.1em;
    }

    .main-navigation .nav-item {
        font-size: 1em;
        padding: 10px 15px;
    }
}

/* --- Main Footer CSS --- */
.main-footer {
    background-color: transparent;
    color: var(--muted-text-on-dark);
    box-shadow: none;
    position: relative;
    z-index: 100;
    border-top: 1px solid var(--accent-line-gold);
}

.footer-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 30px 24px;
    display: flex;
    flex-direction: column;
}

.footer-top-area {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--dark-lines);
}

@media (min-width: 768px) {
    .footer-top-area {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-branding {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-branding {
        text-align: left;
    }
}

.footer-branding .site-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-branding .site-logo-link {
        justify-content: flex-start;
    }
}

.footer-branding .site-logo {
    height: 80px;
    margin-left: -30px;
    object-fit: contain;
    transition: transform 0.2s ease-out;
}

.footer-branding .site-logo-link:hover .site-logo {
    transform: scale(1.05);
}

.footer-branding .site-title {
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    transition: color 0.2s ease-out;
}

.footer-branding .site-logo-link:hover .site-title {
    background: linear-gradient(90deg, var(--golden-accent), var(--soft-golden));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.footer-disclaimer {
    font-size: 0.9em;
    line-height: 1.5;
    color: var(--muted-text-on-dark);
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-disclaimer {
        margin: 0;
    }
}

.footer-links-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
        gap: 40px;
    }
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-title {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    white-space: nowrap;
}

.footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-item {
    text-decoration: none;
    color: var(--muted-text-on-dark);
    font-size: 0.95em;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    white-space: nowrap;
}

.footer-link-item:hover {
    color: var(--golden-accent);
    transform: translateX(5px);
}

.footer-link-item.active {
    color: var(--golden-accent);
    border-bottom: 3px solid var(--accent-line-gold);
}

.footer-bottom-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    font-size: 0.8em;
    color: var(--muted-text-on-dark);
    text-align: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .footer-bottom-bar {
        flex-direction: row;
    }
}

.footer-age-info span {
    white-space: nowrap;
}

.footer-copyright {
    white-space: nowrap;
}


@media (max-width: 1024px) {
    .footer-top-area {
        gap: 30px;
    }

    .footer-branding .site-title {
        font-size: 1.6em;
    }

    .footer-disclaimer {
        font-size: 0.85em;
    }

    .footer-links-grid {
        gap: 30px;
    }

    .footer-links-title {
        font-size: 1.1em;
    }

    .footer-link-item {
        font-size: 0.9em;
    }
}

@media (max-width: 768px) {
    .footer-top-area {
        flex-direction: column;
        gap: 25px;
        padding-bottom: 20px;
    }

    .footer-branding .site-logo-link {
        justify-content: center;
    }

    .footer-branding .site-logo {
        height: 70px;
        margin: 0;
    }

    .footer-branding .site-title {
        font-size: 1.4em;
    }

    .footer-disclaimer {
        font-size: 0.8em;
        max-width: 100%;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-links-title {
        font-size: 1em;
    }

    .footer-links-list {
        gap: 8px;
    }

    .footer-link-item {
        font-size: 0.85em;
    }

    .footer-bottom-bar {
        flex-direction: column;
        padding-top: 15px;
        font-size: 0.75em;
        gap: 8px;
    }

    .footer-age-info span,
    .footer-copyright {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .footer-branding .site-logo {
        height: 60px;
    }

    .footer-branding .site-title {
        font-size: 1.2em;
    }

    .footer-disclaimer {
        font-size: 0.75em;
    }

    .footer-links-grid {
        gap: 15px;
    }

    .footer-links-title {
        font-size: 0.9em;
    }

    .footer-link-item {
        font-size: 0.8em;
    }

    .footer-bottom-bar {
        font-size: 0.7em;
        padding-top: 10px;
    }
}

/* --- HERO SECTION CSS --- */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px 0 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('/assets/images/hero-bg.jpg') center/cover;

}

.hero-content {
    max-width: 900px;
    margin-top: 120px;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 0.5em;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3), 0 0 25px rgba(255, 255, 255, 0.2);
}

.hero-section .sub-headline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--muted-text-on-dark);
    max-width: 700px;
    margin: 0 auto 2em auto;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn {
    transform: perspective(1px) translateZ(0);
}

.hero-actions .btn:hover {
    transform: translateY(-4px) scale(1.02);
}

@media(max-width: 768px) {
    .hero-actions {
        gap: 0.8rem;
    }

    .hero-actions .btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
}

/* --- RICH ADDITIONAL CASINOS SECTION --- */
.additional-casinos-cont {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 2px solid var(--golden-accent);
}

.ac-rich-section {
    padding: 80px 0;
    max-width: 1480px;
    margin: auto;
    overflow: hidden;
}

.ac-slider-wrapper {
    position: relative;
}

.ac-rich-swiper {
    width: 80%;
    padding: 20px 0 !important;
}

.ac-rich-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    width: 350px;
}

.ac-rich-card {
    width: 320px;
    height: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--dark-surface);
    border: 1px solid var(--dark-lines);
    transition: all 0.4s ease;
}

.ac-rich-swiper .swiper-slide-active .ac-rich-card {
    border-color: var(--golden-accent);
    transform: scale(1.05);
}

.ac-rich-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.ac-rich-main-info {
    width: 100%;
}

.ac-rich-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid var(--dark-lines);
}

.ac-rich-logo img {
    max-width: 150px;
    height: auto;
}

.ac-rich-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    margin: 0 0 0.5rem 0;
}

.ac-rich-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.ac-rich-rating .ac-stars {
    color: var(--soft-golden);
    font-size: 1.1rem;
}

.ac-rich-rating span {
    color: var(--muted-text-on-dark);
    font-weight: 600;
}

.ac-rich-footer {
    width: 100%;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.ac-rich-footer .btn-primary-global {
    padding-left: 2rem;
    padding-right: 2rem;
}

.ac-rich-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.ac-rich-prev,
.ac-rich-next {
    position: static;
    transform: none;
    margin: 0;
    border-radius: 100%;
    color: var(--golden-accent) !important;
    transition: all 0.3s ease;
    margin: -80px 20px;
}

.ac-rich-prev:hover,
.ac-rich-next:hover {
    color: var(--primary-background);
}

.ac-rich-prev::after,
.ac-rich-next::after {
    font-size: 1.2rem;
}

.ac-rich-pagination .swiper-pagination-bullet {
    background-color: var(--muted-text-on-dark);
    opacity: 0.7;
}

.ac-rich-pagination .swiper-pagination-bullet-active {
    background-color: var(--golden-accent);
    transform: scale(1.2);
    opacity: 1;
}

.ac-slider-wrapper::before,
.ac-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.ac-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-background), transparent);
}

.ac-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-background), transparent);
}

@media(max-width: 768px) {

    .ac-rich-prev,
    .ac-rich-next,
    .ac-slider-wrapper::before,
    .ac-slider-wrapper::after {
        display: none;
    }

    .ac-rich-controls {
        gap: 1rem;
    }

    .ac-rich-prev,
    .ac-rich-next {
        margin: 0 10px;
    }
}

@media(max-width: 480px) {

    .ac-rich-prev,
    .ac-rich-next {
        margin: 0;
    }
}

/* --- RESPONSIBLE GAMING SECTION CSS --- */
.rg-section {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.2);
    transition: padding 0.3s ease;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    margin-top: 0;
    margin-bottom: 0.5em;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.section-header p {
    color: var(--muted-text-on-dark);
    font-size: 1.1rem;
    line-height: 1.7;
}

.rg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rg-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--dark-surface);
    border-radius: 10px;
    border: 1px solid var(--dark-lines);
}

.rg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.rg-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--primary-background);
    border-radius: 50%;
    border: 2px solid var(--dark-lines);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--golden-accent);
    box-shadow: 0 0 15px rgba(218, 165, 32, 0.3), 0 0 20px rgba(218, 165, 32, 0.2);
    transition: color 0.3s ease, box-shadow 0.3s ease;
}

.rg-card:hover .rg-card-icon {
    color: var(--soft-golden);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5), 0 0 35px rgba(255, 215, 0, 0.3);
}

.rg-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5em;
    color: var(--white);
}
.rg-support h3{
    margin: 0;
    font-size: 2.2rem;
}
.rg-card p {
    color: var(--muted-text-on-dark);
    line-height: 1.6;
}

.rg-support {
    border-top: 1px solid var(--dark-lines);
    background-color: rgba(0, 0, 0, 0.2);
    padding: 80px 20px;
    transition: margin-top 0.3s ease, padding-top 0.3s ease;
}

.rg-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.rg-logo-link {
    display: flex;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--dark-lines);
    border-radius: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.rg-logo-link:hover {
    background-color: var(--dark-surface);
    border-color: var(--golden-accent);
}

.rg-logo-link img {
    height: 30px;
    filter: grayscale(1) opacity(0.7);
    transition: filter 0.3s ease;
}

.rg-logo-link:hover img {
    filter: none;
}

@media (max-width: 768px) {
    .rg-section {
        padding: 60px 0;
    }

    .rg-grid {
        gap: 1.5rem;
    }

    .rg-support {
        margin-top: 60px;
        padding-top: 40px;
    }

    .rg-logos-grid {
        gap: 1.5rem;
    }
}

/* --- LICENSED CASINOS SECTION CSS --- */

.licensed-casinos-cont {
    background-color: rgba(0, 0, 0, 0.2);
}

.lc-section {
    padding: 80px 0;
    margin: 80px 20px;
}

.lc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--accent-line-gold);
    color: var(--soft-golden);
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.lc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 60px;
}

.lc-card {
    background-color: var(--dark-surface);
    border: 1px solid var(--dark-lines);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--golden-accent);
}

.lc-card-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--golden-accent);
    color: var(--primary-background);
    min-width: 120px;
    width: auto;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 2;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lc-card-header {
    padding: 1.5rem;
    text-align: center;
}

.lc-logo {
    min-height: 40px;
    margin-bottom: 1rem;
}

.lc-logo img {
    max-height: 100px;
    width: auto;
}

.lc-rating {
    font-size: 0.9rem;
    color: var(--muted-text-on-dark);
}

.lc-stars {
    color: var(--soft-golden);
    margin-bottom: 4px;
}

.lc-card-body {
    padding: 0 1.5rem;
    flex-grow: 1;
}

.lc-bonus {
    background-color: var(--primary-background);
    border: 1px solid var(--dark-lines);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.lc-bonus-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    display: block;
}

.lc-bonus-desc {
    font-size: 0.9rem;
    color: var(--golden-accent);
}

.lc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.lc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--dark-lines);
}

.lc-features li:last-child {
    border-bottom: none;
}

.lc-features i {
    color: var(--golden-accent);
}

.lc-card-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--dark-lines);
    background: var(--primary-background);
}

.lc-payments {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lc-payments img {
    height: 20px;
    filter: brightness(0) invert(1);
}

.lc-card .btn-primary-global {
    width: 100%;
    box-sizing: border-box;
}

.lc-card .btn-primary-global i {
    margin-left: auto;
    margin-right: 0;
}

.lc-trust-indicators {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--primary-background);
    border-radius: 8px;
    border: 1px solid var(--dark-lines);
}

.lc-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted-text-on-dark);
}

.lc-trust-item i {
    font-size: 1.5rem;
    color: var(--soft-golden);
}

.lc-trust-item strong {
    color: var(--white);
    font-weight: 600;
}

@media(max-width: 768px) {
    .lc-section {
        padding: 60px 0;
    }

    .lc-trust-indicators {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width: 420px) {
    .lc-card-badge {
        font-size: 0.75rem;
        padding: 3px 25px;
        right: -28px;
        top: 13px;
    }
}

/* --- CASINO SAFETY SECTION --- */
.cs-section {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.cs-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.cs-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    top: 10px;
}

.cs-nav a {
    display: block;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--muted-text-on-dark);
    border: 1px solid var(--accent-line-silver);
    border-left: 5px solid var(--dark-lines);
    transition: all 0.3s ease;
    font-weight: 600;
}

.cs-nav a:hover {
    background-color: var(--dark-surface);
    color: var(--white);
}

.cs-nav a.active {
    color: var(--soft-golden);
    background-color: rgba(218, 165, 32, 0.05);
    border: 1px solid var(--golden-accent);
    border-left: 5px solid var(--golden-accent);
}

.cs-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-top: 0;
    margin-bottom: 1em;
}

.cs-content p {
    color: var(--light-text-on-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5em;
}

.cs-content p:last-child {
    margin-bottom: 0;
}

.cs-subsection:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

@media(min-width: 992px) {
    .cs-layout {
        grid-template-columns: 280px 1fr;
        gap: 4rem;
    }
}

/* --- CASINO REVIEW HERO SECTION --- */
.cr-hero-section-v2 {
    padding: 120px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cr-hero-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(10deg);
    font-size: 40rem;
    color: var(--golden-accent);
    opacity: 0.03;
    z-index: 0;
}

.cr-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cr-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.15;
    max-width: 800px;
    margin: 0 0 0.5em 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.cr-hero-content p {
    font-size: 1.25rem;
    color: var(--muted-text-on-dark);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cr-hero-payments {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--dark-lines);
    border-radius: 50px;
}

.payment-icon-invert {
    height: 25px;
    filter: brightness(0) invert(1) opacity(0.6);
    transition: filter 0.3s ease;
}

.cr-hero-payments:hover .payment-icon-invert {
    filter: brightness(0) invert(1) opacity(1);
}

@media(max-width: 768px) {
    .cr-hero-section-v2 {
        padding: 80px 0;
    }

    .cr-hero-bg-icon {
        font-size: 30rem;
    }
}

/* --- CASINO LIST SECTION --- */
.cl-section {
    padding: 80px 0;
    border-top: 2px solid var(--golden-accent);
    background-color: rgba(0, 0, 0, 0.2);
}

.cl-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cl-card {
    background-color: var(--dark-surface);
    border: 1px solid var(--dark-lines);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem 1.5rem;
    grid-template-areas:
        "rank logo"
        "rating rating"
        "bonus bonus"
        "action action";
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.cl-card-rank {
    grid-area: rank;
}

.cl-card-logo {
    grid-area: logo;
}

.cl-card-bonus {
    grid-area: bonus;
}

.cl-card-rating {
    grid-area: rating;
    text-align: end;
}

.cl-card-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
gap: 0.6rem;
    grid-area: action;
}

.cl-card-rank {
    font-size: 2rem;
    font-weight: 700;
    color: var(--muted-text-on-dark);
}

.cl-card-logo {
    text-align: right;
}

.cl-card-logo img {
    max-height: 60px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 10px 15px;
}

.cl-card-label {
    display: block;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--muted-text-on-dark);
    margin-bottom: 0.5rem;
}

.cl-card-bonus h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.cl-card-bonus p {
    padding: 0;
    margin: 0;
}

.cl-card-rating .cl-stars {
    color: var(--golden-accent);
    font-size: 1rem;
    white-space: nowrap;
}

.cl-card-rating .cl-stars span {
    color: var(--white);
    font-weight: 600;
    margin-left: 0.5rem;
}

.cl-card-action .btn {
    width: 100%;
    box-sizing: border-box;
    padding: 6px;
}


@media(min-width: 992px) {
    .cl-list {
        gap: 2rem;
    }

    .cl-card {
        grid-template-columns: 50px 2fr 2fr 1.5fr 1fr;
        grid-template-rows: 1fr;
        grid-template-areas: "rank logo bonus bonus bonus rating action";
        padding: 1rem 2rem;
        border-radius: 8px;
    }

    .cl-card-label {
        display: none;
    }

    .cl-card-logo {
        text-align: left;
    }

    .cl-card-bonus h4 {
        font-size: 1.2rem;
    }

    .cl-card-rating {
        text-align: start;
        grid-area: rating;
    }

    .cl-card-rating .cl-stars {
        font-size: 1.1rem;
    }

    .cl-card-action .btn {
        width: auto;
        min-width: 140px;
        float: right;
    }
}

.cl-disclaimer {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: var(--muted-text-on-dark);
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--accent-line-silver);
    border-radius: 15px;
    padding: 2.5px 10px;
}

/* --- EXPERTISE SECTION (PREMIUM REDESIGN) --- */
.expertise-cont {
    background-color: rgba(0, 0, 0, 0.2);
}

.expertise-cont-wrap {
    border-top: 1px solid var(--accent-line-silver);
    padding: 80px 20px 100px 20px;
    max-width: 1480px;
    margin: auto;
}

.ex-premium-section {
    padding: 80px 0;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.ex-lines-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(218, 165, 32, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(218, 165, 32, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
    opacity: 0.5;
}

.ex-premium-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.ex-premium-text h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.2;
    margin: 0 0 0.5em 0;
}

.ex-premium-text p {
    font-size: 1.15rem;
    color: var(--muted-text-on-dark);
    max-width: 550px;
    line-height: 1.8;
    margin-bottom: 2rem;
    border-left: 3px solid var(--golden-accent);
    padding-left: 1.5rem;
}

.ex-premium-principles {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ex-premium-principles li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Chakra Petch', sans-serif;
    color: var(--white);
}

.ex-premium-principles i {
    color: var(--golden-accent);
    font-size: 1.3rem;
}

.ex-premium-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.ex-metric-pod {
    background: linear-gradient(145deg, var(--dark-surface), var(--primary-background));
    border: 1px solid var(--dark-lines);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ex-metric-pod::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(218, 165, 32, 0.2), transparent 30%);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ex-metric-pod h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 7vw, 2rem);
    color: var(--soft-golden);
    margin: 0 0 0.25rem 0;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(218, 165, 32, 0.3);
    position: relative;
    z-index: 2;
}

.ex-metric-pod p {
    margin: 0;
    color: var(--muted-text-on-dark);
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

@media(min-width: 992px) {
    .ex-premium-layout {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }
}

/* --- CASINO REVIEW PAGE --- */
.crp-main {
    padding: 60px 0;
}

.crp-page-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.crp-sidebar {
    order: 1;
}

.crp-main-content {
    order: 2;
}

.crp-section {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--dark-lines);
}

.crp-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.crp-main-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin: 0 0 0.5em 0;
}

.crp-section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--white);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--golden-accent);
    display: inline-block;
}

.crp-feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.crp-feature-list li {
    background-color: var(--dark-surface);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: 'Chakra Petch', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.crp-feature-list i {
    color: var(--golden-accent);
}

.crp-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text-on-dark);
    margin-bottom: 1.5em;
}

.crp-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.crp-detail-card {
    background: var(--dark-surface);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--dark-lines);
}

.crp-detail-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: var(--white);
}

.crp-detail-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: var(--muted-text-on-dark);
}

.crp-pros-cons-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.crp-pc-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.crp-pc-block li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.crp-pc-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.crp-pc-title.pros {
    color: #28a745;
}

.crp-pc-title.cons {
    color: #dc3545;
}

.crp-sidebar {
    position: static;
}

.crp-cta-card {
    background-color: var(--dark-surface);
    border: 1px solid var(--golden-accent);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(218, 165, 32, 0.2);
}

.crp-cta-logo {
    margin-bottom: 1rem;
}

.crp-cta-logo img {
    max-height: 100px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.crp-cta-rating {
    margin-bottom: 1.5rem;
}

.crp-cta-stars {
    color: var(--soft-golden);
    font-size: 1.3rem;
}

.crp-cta-rating span {
    color: var(--muted-text-on-dark);
    font-size: 0.9rem;
}

.crp-cta-bonus {
    background-color: var(--primary-background);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.crp-cta-bonus-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--muted-text-on-dark);
    letter-spacing: 0.05em;
}

.crp-cta-bonus p {
    font-size: 2rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.crp-cta-card .btn {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

.crp-cta-card .btn i {
    margin-left: auto;
}

.crp-cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--muted-text-on-dark);
}

.crp-cta-guarantee i {
    color: var(--soft-golden);
}

.crp-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted-text-on-dark);
    margin-top: 1rem;
}

@media(min-width: 992px) {
    .crp-main {
        padding: 100px 0;
    }

    .crp-page-layout {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 4rem;
    }

    .crp-sidebar {
        order: 0;
        position: sticky;
        top: 20px;
        align-self: start;
    }

    .crp-main-content {
        order: 0;
    }

    .crp-pros-cons-layout {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- CASINO REVIEW HERO SECTION --- */
.ch-hero-section-v2 {
    padding: 120px 0 100px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.ch-hero-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(10deg);
    font-size: 35rem;
    color: var(--golden-accent);
    opacity: 0.03;
    z-index: 0;
}

.ch-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ch-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.15;
    max-width: 800px;
    margin: 0 0 0.5em 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.ch-hero-content p {
    font-size: 1.25rem;
    color: var(--muted-text-on-dark);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.ch-hero-payments {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--dark-lines);
    border-radius: 50px;
}

.payment-icon-invert {
    height: 25px;
    filter: brightness(0) invert(1) opacity(0.6);
    transition: filter 0.3s ease;
}

.ch-hero-payments:hover .payment-icon-invert {
    filter: brightness(0) invert(1) opacity(1);
}

@media(max-width: 768px) {
    .ch-hero-section-v2 {
        padding: 80px 0;
    }

    .ch-hero-bg-icon {
        font-size: 30rem;
    }
}

/* --- CONTACT INFO SECTION --- */
.ci-section {
    padding-bottom: 60px;
}

.ci-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 50px;
}

.ci-card {
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ci-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    border-color: var(--golden-accent);
}

.ci-card-icon {
    font-size: 3rem;
    color: var(--golden-accent);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(218, 165, 32, 0.3);
}

.ci-card-title {
    font-size: 1.8rem;
    margin: 0 0 1.5rem 0;
    color: var(--white);
}

.ci-card-link {
    display: inline-block;
    font-weight: 600;
    color: var(--soft-golden);
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Chakra Petch', sans-serif;
    padding: 8px 15px;
    border-radius: 8px;
    background-color: rgba(218, 165, 32, 0.1);
    transition: all 0.3s ease;
}

.ci-card-link:not(.static):hover {
    background-color: var(--golden-accent);
    color: var(--primary-background);
}

.ci-card-link.static {
    cursor: default;
    background-color: transparent;
    color: var(--light-text-on-dark);
    font-weight: normal;
    font-family: 'Rajdhani', sans-serif;
}
.ci-card-link.static{
    margin: 0;
}

@media(max-width: 768px) {
    .ci-section {
        padding-bottom: 40px;
    }
}

/* --- Contact Form Specific Styles --- */
#contact-form-section {
    padding: 100px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 2px solid var(--golden-accent);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--medium-dark-surface);
    border-radius: 12px;
    border: 1px solid var(--dark-lines);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.form-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.form-description {
    font-family: 'Rajdhani', sans-serif;
    color: var(--muted-text-on-dark);
    font-size: 1.1rem;
    margin: 0;
    margin-bottom: 40px;
    max-width: 800px;
}

.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--dark-surface);
    border: 1px solid var(--dark-lines);
    border-radius: 8px;
    color: var(--light-text-on-dark);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted-text-on-dark);
    opacity: 0.8;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--golden-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-button {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    margin-top: 20px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 500;
    text-align: center;
    color: var(--light-text-on-dark);
    display: none;
}


.form-message.success {
    background-color: rgba(60, 179, 113, 0.2);
    color: #3cb371;
    border: 1px solid #3cb371;
}

.form-message.error {
    background-color: rgba(220, 20, 60, 0.2);
    color: #dc143c;
    border: 1px solid #dc143c;
}


@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 30px;
        margin: 0 15px;
    }

    .form-title {
        font-size: 2.2rem;
    }

    .form-description {
        font-size: 1rem;
        margin: 0;
        margin-bottom: 30px;
    }

    .form-input,
    .form-textarea,
    .contact-submit-button {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 40px 0;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .form-description {
        font-size: 0.9rem;
        margin: 0;
        margin-bottom: 25px;
    }

    .main-contact-form {
        gap: 15px;
    }
}

/* --- Terms & Policy Section --- */
.terms-of-service-main-cont {
    padding: 0 20px 80px;
}

.hero-section-base {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    text-align: center;
}

.hero-text-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInRise 1s ease-out forwards;
}

@keyframes fadeInRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    border: 1px solid;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.policy-badge--protection {
    background-color: rgba(218, 165, 32, 0.2);
    border-color: var(--golden-accent);
    color: var(--soft-golden);
}

.policy-badge--update {
    background-color: rgba(192, 192, 192, 0.15);
    border-color: var(--silver-accent);
    color: var(--soft-silver);
    margin-top: 20px;
}

.policy-badge i {
    font-size: 1.1rem;
}

.policy-badge-text {
    vertical-align: middle;
}

.hero-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--white);
    text-transform: uppercase;
}

.hero-heading .block {
    display: block;
}

.gradient-text-golden-silver {
    background: linear-gradient(90deg, var(--golden-accent), var(--silver-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.content-section-padding {
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

.content-container {
    padding: 40px;
}

.terms-policy-body {
    font-family: 'Rajdhani', sans-serif;
    color: var(--light-text-on-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.terms-paragraph {
    margin-bottom: 20px;
}

.highlight-box {
    background-color: var(--medium-dark-surface);
    border: 1px solid var(--accent-line-gold);
    border-left: 5px solid var(--golden-accent);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.highlight-text {
    font-weight: 600;
    color: var(--soft-golden);
    line-height: 1.7;
}

.section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--golden-accent), var(--silver-accent));
    margin-top: 10px;
}

.styled-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.list-bullet {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--golden-accent);
    font-weight: bold;
    font-size: 1.1em;
}

.nested-list-parent {
    margin-top: 15px;
}

.styled-nested-list {
    list-style: none;
    padding-left: 25px;
    margin-top: 10px;
}

.styled-nested-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--muted-text-on-dark);
}

.styled-nested-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--silver-accent);
    font-weight: bold;
}

@media (max-width: 1280px) {
    .hero-heading {
        font-size: 4.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section-base {
        min-height: 400px;
        padding: 60px 0;
    }

    .hero-heading {
        font-size: 3.5rem;
    }

    .policy-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .content-section-padding {
        padding: 40px 0;
        margin-top: -60px;
    }

    .content-container {
        padding: 25px;
    }

    .terms-policy-body {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .highlight-box {
        padding: 20px;
        margin: 25px 0;
    }
}

@media (max-width: 480px) {
    .hero-section-base {
        min-height: 350px;
        padding: 60px 0;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .policy-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .content-section-padding {
        padding: 30px 0;
        margin-top: -40px;
    }

    .content-container {
        padding: 15px;
    }

    .terms-policy-body {
        font-size: 0.95rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }
}

/* --- Privacy Policy Section --- */
.privacy-of-service-main-cont {
    padding: 0 20px 80px;
}

.privacy-hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.privacy-hero-content-wrapper {
    position: relative;
    z-index: 10;
    color: var(--white);
    text-align: center;
}

.privacy-hero-text-container {
    opacity: 0;
    transform: translateY(20px);
    animation: privacyHeroFadeInRise 1s ease-out forwards;
}

@keyframes privacyHeroFadeInRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    border: 1px solid;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.privacy-hero-badge--protection {
    background-color: rgba(218, 165, 32, 0.2);
    border-color: var(--golden-accent);
    color: var(--soft-golden);
}

.privacy-hero-badge--update {
    background-color: rgba(192, 192, 192, 0.15);
    border-color: var(--silver-accent);
    color: var(--soft-silver);
    margin-top: 20px;
}

.privacy-hero-badge i {
    font-size: 1.1rem;
}

.privacy-hero-badge-text {
    vertical-align: middle;
}

.privacy-hero-main-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--white);
    text-transform: uppercase;
}

.privacy-hero-main-heading .block {
    display: block;
}

.privacy-hero-gradient-text {
    background: linear-gradient(90deg, var(--golden-accent), var(--silver-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.privacy-main-content-section {
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

.privacy-content-container {
    padding: 40px;
}

.privacy-policy-body {
    font-family: 'Rajdhani', sans-serif;
    color: var(--light-text-on-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.privacy-text-paragraph {
    margin-bottom: 20px;
}

.privacy-content-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.privacy-content-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--golden-accent), var(--silver-accent));
    margin-top: 10px;
}

.privacy-styled-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.privacy-styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.privacy-list-bullet {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--golden-accent);
    font-weight: bold;
    font-size: 1.1em;
}

.privacy-detailed-points li {
    margin-bottom: 20px;
}

.privacy-list-item-title {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--white);
}

.privacy-list-item-title strong {
    font-weight: 600;
    color: var(--golden-accent);
}

.privacy-list-item-content {
    color: var(--light-text-on-dark);
    font-size: 1.05rem;
}

@media (max-width: 1280px) {
    .privacy-hero-main-heading {
        font-size: 3.5rem;
    }

    .privacy-content-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .privacy-hero-section {
        min-height: 400px;
        padding: 60px 0;
    }

    .privacy-hero-main-heading {
        font-size: 3rem;
    }

    .privacy-hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .privacy-main-content-section {
        padding: 40px 0;
        margin-top: -60px;
    }

    .privacy-content-container {
        padding: 25px;
    }

    .privacy-policy-body {
        font-size: 1rem;
    }

    .privacy-content-heading {
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .privacy-detailed-points .privacy-list-item-title {
        font-size: 1.05rem;
    }

    .privacy-detailed-points .privacy-list-item-content {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero-section {
        min-height: 350px;
        padding: 60px 0;
    }

    .privacy-hero-main-heading {
        font-size: 2.5rem;
    }

    .privacy-hero-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .privacy-main-content-section {
        padding: 30px 0;
        margin-top: -40px;
    }

    .privacy-content-container {
        padding: 15px;
    }

    .privacy-policy-body {
        font-size: 0.95rem;
    }

    .privacy-content-heading {
        font-size: 1.5rem;
    }

    .privacy-detailed-points .privacy-list-item-title {
        font-size: 1rem;
    }

    .privacy-detailed-points .privacy-list-item-content {
        font-size: 0.95rem;
    }

    .privacy-detailed-points li {
        margin-bottom: 15px;
    }
}

/* --- Cookie Policy  Section --- */
.cookie-of-service-main-cont {
    padding: 0 20px 80px;
}

.cookie-policy-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.cookie-policy-hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    text-align: center;
}

.cookie-policy-hero-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: cookieHeroFadeInRise 1s ease-out forwards;
}

@keyframes cookieHeroFadeInRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-policy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    border: 1px solid;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cookie-policy-badge--protection {
    background-color: rgba(218, 165, 32, 0.2);
    border-color: var(--golden-accent);
    color: var(--soft-golden);
}

.cookie-policy-badge--update {
    background-color: rgba(192, 192, 192, 0.15);
    border-color: var(--silver-accent);
    color: var(--soft-silver);
    margin-top: 20px;
}

.cookie-policy-badge i {
    font-size: 1.1rem;
}

.cookie-policy-badge-text {
    vertical-align: middle;
}

.cookie-policy-hero-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--white);
    text-transform: uppercase;
}

.cookie-policy-hero-heading .block {
    display: block;
}

.gradient-text2 {
    background: linear-gradient(90deg, var(--golden-accent), var(--silver-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.cookie-policy-main-content {
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

.cookie-policy-main-container {
    padding: 40px;
}

.cookie-policy-section-block {
    margin-bottom: 50px;
}

.cookie-policy-intro-box {
    background-color: var(--medium-dark-surface);
    border: 1px solid var(--accent-line-silver);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cookie-policy-section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-left: 60px;
    display: flex;
    align-items: center;
    text-align: left;
}

.cookie-policy-heading-icon-wrapper {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-background);
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bg-blue-accent {
    background-color: #4A90E2;
}

.bg-purple-accent {
    background-color: #8E44AD;
}

.bg-orange-accent {
    background-color: #F39C12;
}

.bg-red-accent {
    background-color: #E74C3C;
}

.bg-teal-accent {
    background-color: #1ABC9C;
}

.cookie-policy-section-heading i {
    color: var(--white);
}

.cookie-policy-paragraph {
    font-family: 'Rajdhani', sans-serif;
    color: var(--light-text-on-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.cookie-policy-info-card {
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--dark-surface), var(--medium-dark-surface));
}

.bg-tertiary-gradient {
    background: linear-gradient(135deg, var(--medium-dark-surface), var(--dark-surface));
}

.bg-primary-light {
    background-color: var(--dark-surface);
}

.bg-secondary-light {
    background-color: var(--medium-dark-surface);
}

.bg-warning-light {
    background-color: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.cookie-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.cookie-type-card {
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--dark-lines);
    text-align: center;
}

.cookie-type-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-type-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.text-green-accent {
    color: #28A745;
}

.text-blue-accent {
    color: #007BFF;
}

.text-purple-accent {
    color: #6F42C1;
}

.text-warning-dark {
    color: #DC3545;
}

.cookie-type-description {
    font-family: 'Rajdhani', sans-serif;
    color: var(--muted-text-on-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-types-details-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.cookie-details-card {
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dark-lines);
}

.cookie-details-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.cookie-details-icon {
    font-size: 1.8rem;
    margin-right: 12px;
}

.cookie-details-example-box {
    background-color: var(--dark-surface);
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 25px;
    border: 1px solid var(--dark-lines);
}

.cookie-details-example-title {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    color: var(--soft-golden);
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cookie-details-example-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.cookie-details-example-list li {
    font-family: 'Rajdhani', sans-serif;
    color: var(--muted-text-on-dark);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.cookie-control-info-box {
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

.cookie-control-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.cookie-control-method-card {
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--dark-lines);
    text-align: center;
}

.cookie-control-method-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-control-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.cookie-control-method-description {
    font-family: 'Rajdhani', sans-serif;
    color: var(--muted-text-on-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.browser-examples-box {
    background-color: var(--dark-surface);
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 25px;
    border: 1px solid var(--dark-lines);
    text-align: left;
}

.browser-examples-title {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    color: var(--soft-silver);
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.browser-examples-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.browser-examples-list li {
    font-family: 'Rajdhani', sans-serif;
    color: var(--muted-text-on-dark);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.banner-note-box {
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 25px;
    border: 1px solid var(--dark-lines);
}

.banner-note-text {
    font-family: 'Rajdhani', sans-serif;
    color: var(--light-text-on-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.banner-note-text strong {
    color: var(--white);
}

.cookie-third-party-info-box {
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
}

.cookie-third-party-alert {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cookie-third-party-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.cookie-third-party-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 15px;
}

.cookie-third-party-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.third-party-service-card {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--dark-lines);
}

.third-party-service-heading {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--soft-golden);
    margin-top: 0;
    margin-bottom: 8px;
}

.third-party-service-description {
    font-family: 'Rajdhani', sans-serif;
    color: var(--muted-text-on-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-updates-box {
    border-radius: 8px;
    padding: 20px;
    margin-top: 25px;
    border: 1px solid var(--dark-lines);
}

.cookie-updates-heading {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    color: var(--soft-silver);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.cookie-updates-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.cookie-updates-list li {
    font-family: 'Rajdhani', sans-serif;
    color: var(--muted-text-on-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.cookie-updates-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--golden-accent);
    font-size: 1.2em;
    line-height: 1;
}

@media (max-width: 1280px) {
    .cookie-policy-hero-heading {
        font-size: 4.5rem;
    }

    .cookie-policy-section-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .cookie-policy-hero {
        min-height: 350px;
        padding: 60px 0;
    }

    .cookie-policy-hero-heading {
        font-size: 3.5rem;
    }

    .cookie-policy-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .cookie-policy-main-content {
        padding: 40px 0;
        margin-top: -60px;
    }

    .cookie-policy-main-container {
        padding: 25px;
    }

    .cookie-policy-paragraph {
        font-size: 1rem;
    }

    .cookie-policy-section-heading {
        font-size: 1.8rem;
        padding-left: 50px;
    }

    .cookie-policy-heading-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .cookie-hero-description {
        font-size: 1rem;
        margin: 10px auto 20px auto;
    }

    .cookie-types-grid,
    .cookie-types-details-wrapper,
    .cookie-control-methods-grid,
    .cookie-third-party-services-grid {
        grid-template-columns: 1fr;
    }

    .cookie-type-card,
    .cookie-details-card,
    .cookie-control-method-card,
    .third-party-service-card {
        padding: 20px;
    }

    .cookie-third-party-alert {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .cookie-third-party-icon {
        margin-bottom: 10px;
    }

    .cookie-updates-heading {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cookie-policy-hero {
        min-height: 300px;
        padding: 40px 0;
    }

    .cookie-policy-hero-heading {
        font-size: 2.8rem;
    }

    .cookie-policy-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .cookie-policy-main-content {
        padding: 30px 0;
        margin-top: -40px;
    }

    .cookie-policy-main-container {
        padding: 15px;
    }

    .cookie-policy-paragraph {
        font-size: 0.95rem;
    }

    .cookie-policy-section-heading {
        font-size: 1.6rem;
        padding-left: 45px;
    }

    .cookie-policy-heading-icon-wrapper {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .cookie-hero-description {
        font-size: 0.9rem;
        margin: 8px auto 15px auto;
    }

    .cookie-type-heading,
    .cookie-details-heading,
    .cookie-control-method-heading {
        font-size: 1.5rem;
    }

    .cookie-type-icon,
    .cookie-details-icon,
    .cookie-control-icon {
        font-size: 1.3rem;
    }
}

/* --- Age Verification Modal Styling --- */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-verification-modal.show {
    opacity: 1;
    visibility: visible;
}

.age-verification-content {
    margin: 20px;
    background-color: var(--primary-background);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    text-align: center;
    max-width: 450px;
    width: 90%;
    border: 1px solid var(--dark-lines);
    animation: scaleIn 0.4s ease-out forwards;
    position: relative;
    z-index: 1001;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.age-verification-content img {
    max-width: 80px;
    height: auto;
}

.age-verification-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: var(--white);
    margin: 0;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.age-verification-message {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: var(--light-text-on-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.age-verification-message strong {
    color: var(--soft-golden);
}

.age-verification-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.age-verification-btn {
    width: 100%;
    font-size: 1rem;
    padding: 12px 20px;
}

/* --- Cookie Consent Banner Styling --- */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--medium-dark-surface);
    color: var(--light-text-on-dark);
    padding: 20px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    border-top: 1px solid var(--dark-lines);
}

.cookie-consent-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.cookie-consent-message {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 800px;
}

.cookie-policy-link {
    color: var(--soft-golden);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-policy-link:hover {
    color: var(--golden-accent);
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    min-width: 150px;
    font-size: 0.95rem;
    padding: 10px 20px;
}

@media (min-width: 768px) {
    .age-verification-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .age-verification-btn {
        width: auto;
    }

    .cookie-consent-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }

    .cookie-consent-message {
        margin-bottom: 0;
        text-align: left;
        flex-grow: 1;
    }

    .cookie-consent-buttons {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .age-verification-content {
        padding: 30px;
    }

    .age-verification-title {
        font-size: 1.8rem;
    }

    .age-verification-message {
        font-size: 1rem;
    }

    .age-verification-btn {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .cookie-consent-banner {
        padding: 15px 0;
    }

    .cookie-consent-content {
        padding: 0 15px;
    }

    .cookie-consent-message {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .cookie-consent-btn {
        min-width: unset;
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}