/* ------------------------------ Global Styles ----------------------------- */
@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-grey: #e5e7eb;
    --primary-orange: #f97316;
    --primary-purple: #7c3aed;
    --secondary-amber: #fbbf24;
    --dark-bg: #1a0b2e;
    --darker-bg: #0f051a;
    --card-bg: rgba(229, 231, 235, 0.03);
    --border-color: rgba(229, 231, 235, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --primary-cyan: #00ffff;
    --primary-pink: #ff00ff;
}

body {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    background: var(--darker-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Enhanced Cyberpunk Background */
.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    overflow: hidden;
    z-index: -5;
}

/* Animated gradient background */
.cyber-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
    animation: gradientRotate 30s linear infinite;
    filter: blur(40px);
}

@keyframes gradientRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Matrix rain effect */
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.15;
}

.matrix-column {
    position: absolute;
    top: -100vh;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--primary-cyan);
    text-shadow: 0 0 5px var(--primary-cyan);
    animation: matrixFall linear infinite;
    writing-mode: vertical-rl;
    text-orientation: upright;
    background: linear-gradient(to bottom, transparent 0%, var(--primary-cyan) 50%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.matrix-column:nth-child(3n) {
    color: var(--primary-pink);
    text-shadow: 0 0 5px var(--primary-pink);
    background: linear-gradient(to bottom, transparent 0%, var(--primary-pink) 50%, transparent 100%);
}

.matrix-column:nth-child(5n) {
    color: var(--primary-purple);
    text-shadow: 0 0 5px var(--primary-purple);
    background: linear-gradient(to bottom, transparent 0%, var(--primary-purple) 50%, transparent 100%);
}

@keyframes matrixFall {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(200vh);
    }
}

/* Animated grid overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.grid-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 0, 255, 0.03) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255, 0, 255, 0.03) 2px, transparent 2px);
    background-size: 100px 100px;
    animation: gridMove 30s linear infinite reverse;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -3;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-cyan);
    animation: float 20s infinite;
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.particle:nth-child(odd) {
    background: var(--primary-pink);
    box-shadow: 0 0 10px var(--primary-pink);
    animation-duration: 25s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Glowing orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -4;
}

.orb1 {
    width: 300px;
    height: 300px;
    background: var(--primary-cyan);
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.orb2 {
    width: 400px;
    height: 400px;
    background: var(--primary-pink);
    bottom: 10%;
    right: -200px;
    animation-delay: 5s;
}

.orb3 {
    width: 250px;
    height: 250px;
    background: var(--primary-purple);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }
}

/* Scanlines effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.scanlines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 0%,
            rgba(0, 255, 255, 0.03) 50%,
            transparent 100%);
    background-size: 100% 4px;
    animation: scanline 8s linear infinite;
}

.scanlines::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

/* Noise texture overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(0, 255, 255, 0.02) 2px, rgba(0, 255, 255, 0.02) 4px);
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}


/* Scroll animations */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Data streams */
.data-streams {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -3;
    pointer-events: none;
}

.data-stream {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    opacity: 0;
    animation: dataFlow 3s ease-in-out infinite;
}

.data-stream:nth-child(odd) {
    background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
    animation-duration: 4s;
}

@keyframes dataFlow {
    0% {
        width: 0;
        opacity: 0;
        transform: translateX(0);
    }

    50% {
        width: 300px;
        opacity: 0.8;
    }

    100% {
        width: 0;
        opacity: 0;
        transform: translateX(100vw);
    }
}

/* Performance optimization for mobile */
@media (max-width: 768px) {
    .matrix-rain {
        display: none;
    }

    .particles {
        opacity: 0.5;
    }

    .particle {
        animation-duration: 30s !important;
    }

    .orb {
        filter: blur(100px);
        opacity: 0.3;
    }

    .scanlines::before {
        animation: none;
        transform: translateY(0);
    }

    .data-streams {
        display: none;
    }

    .noise-overlay {
        display: none;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    .cyber-gradient,
    .grid-lines,
    .grid-glow,
    .particle,
    .orb,
    .matrix-column,
    .scanlines::before,
    .data-stream {
        animation: none !important;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-cyan), var(--primary-pink));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--primary-pink), var(--primary-cyan));
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: var(--darker-bg);
    padding: 1.2rem 2.4rem;
    border: none;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-cyan);
    padding: 1.2rem 3rem;
    border: 2px solid var(--primary-cyan);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%); */
}

.btn-secondary:hover {
    background: var(--primary-cyan);
    color: var(--darker-bg);
    box-shadow: 0 0 30px var(--primary-cyan);
}

@media (max-width: 768px) {

    .btn-primary,
    .btn-secondary {
        clip-path: none;
    }

}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */

/* --------------------------------- Header --------------------------------- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 20px;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 10000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--primary-cyan);
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.mobile-menu-button:hover {
    color: var(--primary-orange);
    transform: scale(1.1);
}

.hamburger {
    position: relative;
    width: 25px;
    height: 20px;
    margin: auto;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary-cyan);
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.25s ease-in-out;
    box-shadow: 0 0 5px var(--primary-cyan);
    transform-origin: center;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.mobile-menu-button.active .hamburger span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
    background: var(--primary-orange);
}

.mobile-menu-button.active .hamburger span:nth-child(2) {
    opacity: 0;
    left: -25px;
}

.mobile-menu-button.active .hamburger span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
    background: var(--primary-orange);
}

.mobile-menu {
    position: fixed;
    top: 78px;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: calc(100vh - 78px);
    background: var(--darker-bg);
    backdrop-filter: blur(20px);
    border-left: 2px solid var(--border-color);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.mobile-menu-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    text-shadow: 0 0 15px var(--primary-cyan);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.mobile-menu-logo::before {
    content: '>';
    margin-right: 0.5rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.mobile-menu-logo::after {
    content: '_';
    animation: blink 1s infinite;
    color: var(--primary-cyan);
}

.mobile-menu-logo:hover {
    text-shadow: 0 0 25px var(--primary-cyan);
    transform: scale(1.05);
}

.mobile-menu-logo:hover::before {
    margin-right: 0.8rem;
    text-shadow: 0 0 10px var(--primary-orange);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--primary-cyan);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--primary-orange);
    transform: rotate(90deg);
}

.mobile-menu-nav {
    padding: 0;
    flex-grow: 1;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav li {
    margin: 0;
}

.mobile-menu-nav a {
    display: block;
    padding: 1.5rem 2rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid rgba(229, 231, 235, 0.1);
}

.mobile-menu-nav a:hover {
    color: var(--primary-cyan);
    background: rgba(0, 255, 255, 0.05);
    padding-left: 3rem;
    text-shadow: 0 0 10px var(--primary-cyan);
}

.mobile-menu-nav a::before {
    content: '>';
    position: absolute;
    left: 2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--primary-orange);
}

.mobile-menu-nav a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-nav li:last-child a {
    border-bottom: none;
}

.mobile-menu-cta {
    padding: 2rem;
    flex-shrink: 0;
    border-bottom: 1px solid var(--border-color);
}

.cyber-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: var(--darker-bg);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    width: 100%;
    text-align: center;
}

.cyber-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 769px) {
    .mobile-menu-button {
        display: none !important;
    }

    .nav-container {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .nav-top {
        flex: 0 0 auto;
    }

    .nav-links {
        flex: 1;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        margin: 0 2rem;
        max-width: none;
    }

    .nav-links a {
        padding: 0;
        border-bottom: none;
        font-size: 0.9rem;
    }

    .nav-links a:hover {
        background: none;
        transform: none;
        padding-left: 0;
    }

    .nav-links a::before {
        display: none;
    }

    .nav-bottom {
        flex: 0 0 auto;
    }

    .cyber-button {
        width: auto;
        max-width: none;
    }
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-cyan);
    text-shadow: 0 0 20px var(--primary-cyan);
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.nav-container .logo img {
   height: 60px;
   display: flex;
   justify-content: center;
   align-items: center;
}


@media (max-width: 769px) {
.nav-container .logo img {
   height: 45px;
}
}

.logo:hover {
    text-shadow: 0 0 30px var(--primary-cyan);
    transform: scale(1.05);
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;

    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-cyan);
}

.nav-links a:hover::before {
    width: 100%;
}

/* --------------------------------- Footer --------------------------------- */
.site-footer {
    padding: 60px 2rem 40px;
    border-top: 1px solid var(--border-color);
    background: rgba(15, 5, 26, 0.7);
}

.site-footer .footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.site-footer .footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.site-footer .footer-logo img {
    max-height: 60px;
    transition: all 0.3s ease;
}

.site-footer .footer-logo:hover img {
    filter: drop-shadow(0 0 10px var(--primary-cyan));
    transform: scale(1.05);
}

.site-footer .tag-responsible-gaming {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    clip-path: polygon(10px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 10px);
}

.site-footer .tag-18-plus {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-amber));
    color: var(--darker-bg);
    padding: 0.3rem 0.6rem;
    margin-right: 0.75rem;
    font-weight: 700;
    clip-path: polygon(5px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 5px);
}

.site-footer .footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    text-align: left;
}

.site-footer .footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 15px var(--primary-cyan);
    position: relative;
    padding-bottom: 0.5rem;
}

.site-footer .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    box-shadow: 0 0 10px var(--primary-cyan);
}

.site-footer .footer-disclaimer {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.site-footer .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.site-footer .footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.site-footer .footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.site-footer .footer-link:hover,
.site-footer .footer-link.active {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

.site-footer .footer-link:hover::before,
.site-footer .footer-link.active::before {
    opacity: 1;
}

.site-footer .footer-secondary-content {
    text-align: left;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.site-footer .legal-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.site-footer .legal-text p {
    margin-bottom: 1rem;
}

.site-footer .legal-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.site-footer .logo-item img {
    max-height: 35px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.site-footer .logo-item:hover img {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(229, 231, 235, 0.7));
}

.site-footer .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .site-footer .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block !important;
    }

    .nav-links {
        display: none;
    }

    .nav-bottom .cyber-button {
        display: none;
    }

    .site-footer {
        padding: 40px 1rem 30px;
    }

    .site-footer .footer-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------- Age Verification Popup  & Cookie Consent Banner ------------ */
.age-verification-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-verification-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-verification-modal {
    background: #1e1e1e;
    color: #eaeaea;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s ease;
}

.age-verification-overlay.active .age-verification-modal {
    transform: scale(1) translateY(0);
}

.age-verification-modal .modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.age-verification-modal .modal-subtitle {
    color: #a0a0a0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-verification-modal .date-inputs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.age-verification-modal .input-group {
    text-align: left;
}

.age-verification-modal .input-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 0.5rem;
    display: block;
}

.age-verification-modal .input-group input {
    width: 100%;
    background-color: #2c2c2c;
    color: #eaeaea;
    border: 1px solid #444444;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.2s ease;
    -moz-appearance: textfield;
}

.age-verification-modal .input-group input::-webkit-inner-spin-button,
.age-verification-modal .input-group input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.age-verification-modal .input-group input:focus {
    outline: none;
    border-color: #3399ff;
    box-shadow: 0 0 0 4px rgba(51, 153, 255, 0.2);
}

.age-verification-modal .error-message {
    color: #ff8a80;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: none;
}

.age-verification-modal .decline-message {
    display: none;
}

.age-verification-modal .decline-title {
    color: #ff8a80;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.age-verification-modal .btn-primary {
    background-color: #3399ff;
    color: white;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.age-verification-modal .btn-primary:hover {
    background-color: #1a8cff;
    transform: translateY(-2px);
}

.age-verification-modal .modal-disclaimer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #777777;
}

.age-verification-modal .modal-disclaimer a {
    color: #3399ff;
    text-decoration: none;
    font-weight: 500;
}

.age-verification-modal .modal-disclaimer a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: #1e1e1e;
    color: #eaeaea;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    transition: bottom 0.4s ease-in-out;
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-banner .cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner .cookie-message {
    margin: 0;
    line-height: 1.6;
}

.cookie-banner .cookie-link {
    color: #3399ff;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner .cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-banner .btn-primary {
    background-color: #3399ff;
    color: white;
}

.cookie-banner .btn-primary:hover {
    background-color: #1a8cff;
}

.cookie-banner .btn-tertiary {
    background-color: transparent;
    color: #cccccc;
    border-color: #555555;
}

.cookie-banner .btn-tertiary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #777777;
}

@media (max-width: 768px) {
    .age-verification-modal {
        padding: 2rem 1.5rem;
    }

    .cookie-banner .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

/* ------------------------------ Hero Section ------------------------------ */
.hero-hud {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: auto;
    margin-top: 8rem;
    margin-bottom: 2rem;
}

.hero-content-pro {
    padding: 4rem 0;
}

.hero-hud .hero-content-container {
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-hud .hud-frame {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.5;
}

.hero-hud .hud-frame::before,
.hero-hud .hud-frame::after {
    content: '';
    position: absolute;
    background-color: var(--primary-cyan);
    box-shadow: 0 0 10px var(--primary-cyan);
    animation: frame-flicker 5s linear infinite;
}

.hero-hud .top-left {
    top: 30px;
    left: 30px;
}

.hero-hud .top-left::before {
    width: 100%;
    height: 3px;
}

.hero-hud .top-left::after {
    width: 3px;
    height: 100%;
}

.hero-hud .top-right {
    top: 30px;
    right: 30px;
}

.hero-hud .top-right::before {
    width: 100%;
    height: 3px;
    right: 0;
}

.hero-hud .top-right::after {
    width: 3px;
    height: 100%;
    right: 0;
}

.hero-hud .bottom-left {
    bottom: 30px;
    left: 30px;
}

.hero-hud .bottom-left::before {
    width: 100%;
    height: 3px;
    bottom: 0;
}

.hero-hud .bottom-left::after {
    width: 3px;
    height: 100%;
    bottom: 0;
}

.hero-hud .bottom-right {
    bottom: 30px;
    right: 30px;
}

.hero-hud .bottom-right::before {
    width: 100%;
    height: 3px;
    bottom: 0;
    right: 0;
}

.hero-hud .bottom-right::after {
    width: 3px;
    height: 100%;
    bottom: 0;
    right: 0;
}

.hero-hud .hud-target {
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin: 0 auto 2.5rem;
    max-width: 1000px;
    position: relative;
    backdrop-filter: blur(3px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-hud .hud-target:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.hero-hud .hero-headline {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
    cursor: pointer;
    margin: 0;
}

.hero-hud .glitch-text {
    display: block;
}

.hero-hud .glitch-text:first-child {
    background: linear-gradient(135deg, var(--primary-cyan), #00ccff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.6));
}

.hero-hud .glitch-text:last-child {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.6));
    margin-top: 0.5rem;
}

.hero-hud .hero-subheadline {
    font-size: 1.2rem;
    color: var(--text-primary);
    max-width: 650px;
    margin: 0 auto 3rem;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-hud .hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-hud .hud-button {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.hero-hud .blink-cursor {
    animation: blink-caret 1s step-end infinite;
    opacity: 0;
}

.hero-hud .hud-button:hover .blink-cursor {
    opacity: 1;
}

.hero-hud .hero-update-notice {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.hero-hud .hero-update-notice i {
    margin-right: 0.5rem;
    color: var(--primary-cyan);
}

@keyframes scan {
    0% {
        top: 0;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 0;
    }
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--primary-orange);
    }
}

@keyframes frame-flicker {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .hero-hud {
        padding: 4rem 20px;
        margin-top: 4rem;
        margin-bottom: 0;
    }

    .hero-content-pro {
        padding: 0;
    }

    .hero-hud .hud-frame {
        display: none;
    }

    .hero-hud .hud-target {
        padding: 1rem;
    }

    .hero-hud .hero-subheadline {
        font-size: 1rem;
        white-space: normal;
        border-right: none;
        width: 100%;
        animation: none;
    }

    .hero-hud .hero-headline {
        line-height: 1.4;
    }

    .hero-hud .glitch-text:last-child {
        margin-top: 0.25rem;
    }
}

.hero-hud .hero-key-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.hero-hud .key-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
}

.hero-hud .key-feature-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--primary-cyan);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.hero-hud .key-feature-item i {
    color: var(--primary-cyan);
    font-size: 1.1rem;
    text-shadow: 0 0 8px var(--primary-cyan);
}

.payment-methods-wrapper {
    padding: 2rem 0;
}
.payment-methods {
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
    text-align: center;
}
.payment-methods .payment-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.payment-methods .payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.payment-methods .payment-icons img {
    height: 30px;
    max-width: 80px;
    filter: invert(1);
    transition: all 0.3s ease;
}
/* --------------------------------- Divider -------------------------------- */
.accent-bg-divider {
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accent-bg-divider::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    box-shadow: 0 0 15px var(--primary-cyan), 0 0 25px var(--primary-cyan);
}

.accent-bg-divider::after {
    content: '';
    position: relative;
    z-index: 1;
    width: 50px;
    height: 58px;
    background: var(--primary-cyan);
    border: 1px solid var(--border-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */

/* ------------------------ Home Page Sections Style ------------------------ */

/* Stats Section */
.stats {
    padding: 80px 2rem;
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-top: 5rem;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats {
        margin-top: 0rem;
    }
}

/* ------ */
.review-operator-section {
    padding: 120px 20px;
    max-width: 1400px;
    margin: auto;
    position: relative;
}

.review-operator-section .header-badge-cont {
    text-align: center;
    margin-bottom: 2rem;
}

.review-operator-section .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
}

.review-operator-section .header-badge i {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

.review-operator-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.review-operator-section .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-cyan), #00ccff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

.review-operator-section .section-header p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.review-operator-section .review-operator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.review-operator-section .casino-card {
    background: var(--card-bg);
    border: 1px solid var(--text-secondary);
    backdrop-filter: blur(10px);
    clip-path: polygon(25px 0%, 100% 0%, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0% 100%, 0% 25px);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, min-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    min-height: 380px;
}

.review-operator-section .casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
    min-height: 480px;
}

.review-operator-section .casino-card:hover .casino-card-details {
    transform: translateY(0);
}

.review-operator-section .casino-card-main {
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    position: relative;
    z-index: 1;
}

.review-operator-section .casino-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.review-operator-section .op-logo {
    max-height: 140px;
    max-width: 200px;
}

.review-operator-section .op-card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--border-color);
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
}

.review-operator-section .op-card-rating i {
    color: var(--secondary-amber);
}

.review-operator-section .op-bonus-highlight {
    margin-bottom: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-operator-section .op-bonus-value {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--primary-cyan);
    text-shadow: 0 0 15px var(--primary-cyan);
}

.review-operator-section .op-bonus-desc {
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 0.5rem;
    display: block;
}

.review-operator-section .op-card-badge {
    position: relative;
    top: 0;
    right: 0;
    padding: 0.75rem 3.5rem 0.75rem 2.5rem;
    color: var(--darker-bg);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    width: 100%;
    letter-spacing: 1px;
    display: none;
    /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20px 50%); */
}

.review-operator-section .badge-best-bonus {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
}

.review-operator-section .badge-recommended {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-amber));
}

.review-operator-section .casino-card-details {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(15, 5, 26, 0.97), rgba(26, 11, 46, 0.97));
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    transform: translateY(101%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 5;
}

.review-operator-section .details-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem;
}

.review-operator-section .data-card-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.review-operator-section .op-card-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.review-operator-section .op-card-features li {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-operator-section .op-card-features i {
    color: var(--primary-cyan);
}

.review-operator-section .op-card-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.review-operator-section .op-card-actions a {
    width: 75%;
    margin: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-operator-section .op-card-terms {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
    line-height: 1.5;
}

.review-operator-section .section-footer {
    text-align: center;
    margin-top: 5rem;
}

@media (max-width: 768px) {
    .review-operator-section .op-logo {
        max-height: 60px;
        max-width: 160px;
    }

    .review-operator-section .section-header h2 {
        font-size: 2rem;
    }

    .review-operator-section .casino-card-main,
    .review-operator-section .casino-card-details {
        padding: 1.5rem;
    }

    .review-operator-section .op-bonus-value {
        font-size: 2.5rem;
    }

    .review-operator-section .casino-card:hover {
        min-height: 600px;
    }

    .review-operator-section .op-card-actions {
        flex-direction: column;
    }

    .review-operator-section .section-footer {
        text-align: center;
        margin-top: 3rem;
    }

    .review-operator-section .section-footer a {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .review-operator-section .casino-card {
        min-height: 280px;
    }

    .review-operator-section .casino-card:hover {
        min-height: 480px;
    }
}

/* ------ */
.cta-section-pro {
    position: relative;
    padding: 100px 2rem;
    background-color: #0F051A;
    overflow: hidden;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.cta-section-pro .cta-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-section-pro .cta-glow-element-1,
.cta-section-pro .cta-glow-element-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.5;
}

.cta-section-pro .cta-glow-element-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.5) 0%, rgba(0, 255, 255, 0) 70%);
    animation: cta-glow-1 15s infinite alternate;
}

.cta-section-pro .cta-glow-element-2 {
    width: 500px;
    height: 500px;
    bottom: -250px;
    right: -250px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.5) 0%, rgba(138, 43, 226, 0) 70%);
    animation: cta-glow-2 12s infinite alternate;
}

.cta-section-pro .cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section-pro .cta-content {
    text-align: center;
}

.cta-section-pro .cta-headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #b0c4de);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.cta-section-pro .cta-subheadline {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #a0a0a0;
    margin-bottom: 2.5rem;
}

.cta-section-pro .cta-action .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: #0F051A;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-section-pro .cta-action .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

@keyframes cta-glow-1 {
    from {
        transform: translate(-20px, 20px) scale(1);
    }

    to {
        transform: translate(20px, -20px) scale(1.1);
    }
}

@keyframes cta-glow-2 {
    from {
        transform: translate(10px, -10px) scale(1);
    }

    to {
        transform: translate(-10px, 10px) scale(1.05);
    }
}

/* ----- */
.testimonials-section {
    margin: 5rem 20px;
}

.testimonials-section .container {
    max-width: 1400px;
    margin: auto;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-section .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonials-section .testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    clip-path: polygon(0 25px, 25px 0, 100% 0, 100% 100%, 0 100%);
    padding: 2px;
}

.testimonials-section .testimonial-card-inner {
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonials-section .testimonial-quote-icon {
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary-cyan);
    opacity: 0.1;
    z-index: 1;
}

.testimonials-section .testimonial-text {
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    flex-grow: 1;
}

.testimonials-section .testimonial-author-info {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.testimonials-section .author-name {
    font-weight: 700;
    color: var(--text-primary);
    font-style: normal;
}

.testimonials-section .author-rating {
    color: var(--secondary-amber);
    font-size: 0.9rem;
}

/* ------ */
.home-licensed-casinos-section {
    margin: 5rem 20px;
}

.home-licensed-casinos-section .container {
    max-width: 1400px;
    margin: 5rem auto;
}

.home-licensed-casinos-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.home-licensed-casinos-section .casino-dossier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.home-licensed-casinos-section .logo-grid-item {
    text-decoration: none;
}

.home-licensed-casinos-section .logo-wrapper {
    position: relative;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.home-licensed-casinos-section .logo-grid-item:hover .logo-wrapper {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--primary-cyan);
}

.home-licensed-casinos-section .logo-wrapper::before,
.home-licensed-casinos-section .logo-wrapper::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-color: var(--primary-cyan);
    border-style: solid;
    transition: all 0.3s ease;
}

.home-licensed-casinos-section .logo-wrapper::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.home-licensed-casinos-section .logo-wrapper::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

.home-licensed-casinos-section .logo-grid-item:hover .logo-wrapper::before {
    width: 30px;
    height: 30px;
}

.home-licensed-casinos-section .logo-grid-item:hover .logo-wrapper::after {
    width: 30px;
    height: 30px;
}

.home-licensed-casinos-section .logo-wrapper img {
    max-width: 100%;
    max-height: 60%;
    filter: brightness(0) invert(1) grayscale(100%);
    transition: filter 0.3s ease;
}

.home-licensed-casinos-section .logo-grid-item:hover .logo-wrapper img {
    filter: none;
}

.home-licensed-casinos-section .logo-grid-item-more .logo-wrapper {
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.home-licensed-casinos-section .logo-grid-item-more:hover .logo-wrapper {
    color: var(--primary-cyan);
}

.home-licensed-casinos-section .home-trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-weight: 600;
}

.home-licensed-casinos-section .home-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.home-licensed-casinos-section .home-trust-item i {
    color: var(--primary-cyan);
}

/* ------ */
.faq-section {
    position: relative;
    padding: 100px 20px;
    background-color: var(--darker-bg);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.faq-section .section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    margin-bottom: 4rem;
}

.faq-section .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    flex-shrink: 0;
}

.faq-section .header-decoration {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
}

.faq-section .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section .faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-section .faq-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.75rem 1rem;
    background: none;
    border: none;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-section .faq-button:hover {
    background-color: rgba(0, 255, 255, 0.05);
}

.faq-section .faq-question-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-section .faq-icon-wrapper {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text-secondary);
    border-radius: 50%;
}

.faq-section .faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-section .faq-button[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-section .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-section .faq-answer {
    padding: 0 1rem 1.75rem 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-section .faq-answer p {
    margin-bottom: 1rem;
}

.faq-section .faq-answer ul {
    list-style: none;
    padding-left: 1rem;
}

.faq-section .faq-answer li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.faq-section .faq-answer li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-cyan);
    font-weight: 800;
    font-size: 1.2rem;
}

.faq-section .faq-button[aria-expanded="true"]+.faq-content {
    max-height: 500px;
}

@media (max-width: 768px) {
    .faq-section .section-header {
        margin-bottom: 2.5rem;
    }

    .faq-section .faq-question-text {
        font-size: 0.9rem;
        font-weight: 500;
        font-family: 'JetBrains Mono', 'Fira Code', monospace;
    }
}

/* ------ */
.support-grid-section {
    position: relative;
    padding: 100px 20px;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.support-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.1), transparent 30%);
    opacity: 0.5;
    z-index: -1;
}

.support-grid-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.support-grid-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-cyan), #00ccff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

.support-grid-section .section-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.support-grid-section .support-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.support-grid-section .support-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 3rem;
    justify-items: center;
}

.support-grid-section .support-grid-item {
    position: relative;
    width: 150px;
    height: 150px;
    text-decoration: none;
}

.support-grid-section .support-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.support-grid-section .support-grid-item::before,
.support-grid-section .support-grid-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-style: solid;
    border-color: var(--primary-cyan);
    opacity: 0;
    transition: all 0.4s ease;
}

.support-grid-section .support-grid-item::before {
    width: 110%;
    height: 110%;
    border-width: 2px;
}

.support-grid-section .support-grid-item::after {
    width: 125%;
    height: 125%;
    border-width: 1px;
    border-style: dashed;
    animation: support-spin 20s linear infinite;
}

.support-grid-section .support-grid-item:hover .support-logo-wrapper {
    background-color: rgba(0, 255, 255, 0.1);
    transform: scale(1.05);
}

.support-grid-section .support-grid-item:hover::before,
.support-grid-section .support-grid-item:hover::after {
    opacity: 1;
}

.support-grid-section .support-logo-wrapper img {
    max-width: 80%;
    max-height: 45px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.support-grid-section .support-grid-item:hover .support-logo-wrapper img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
}

@keyframes support-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 768px) {
    .support-grid-section .section-header h2 {
        font-size: 1.8rem;
    }
}

/* ----------------------- Responsibility Page Styles ----------------------- */
.principles-section {
    padding: 100px 2rem;
}

.principles-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.principles-section .principles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
}

.principles-section .principle-card {
    background-color: transparent;
    width: 100%;
    max-width: 1000px;
    min-height: 200px;
    perspective: 1000px;
    text-align: center;
}

.principles-section .principle-card:hover {
    min-height: 400px;
}

.principles-section .principle-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.principles-section .principle-card:hover .principle-card-inner {
    transform: rotateY(180deg);
}

.principles-section .principle-card-front,
.principles-section .principle-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    clip-path: polygon(25px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 25px);
}

.principles-section .principle-card-front {
    justify-content: center;
    align-items: center;
}

.principles-section .principle-card-front i {
    font-size: 3rem;
    color: var(--primary-cyan);
    text-shadow: 0 0 15px var(--primary-cyan);
    margin-bottom: 1.5rem;
}

.principles-section .principle-card-front h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.principles-section .principle-card-back {
    transform: rotateY(180deg);
    text-align: left;
    align-items: flex-start;
    overflow-y: auto;
}

.principles-section .principle-card-back .principle-title {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

.principles-section .principle-card-back p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.principles-section .principle-card-back strong {
    color: var(--text-primary);
    font-weight: 600;
}

.principles-section .principle-card-back .principle-list {
    list-style: none;
    padding-left: 0;
    color: var(--text-primary);
    text-align: left;
}

.principles-section .principle-card-back .principle-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.principles-section .principle-card-back .principle-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: 800;
}

.principles-section .principle-card-back .two-column-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1rem 0;
}

.principles-section .principle-card-back .subsection-title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.principles-section .principle-card-back .styled-link {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
}

.principles-section .principle-card-back .strong-notice {
    margin-top: 1.5rem;
    font-size: 1rem;
}

@media (max-width: 600px) {
    .principles-section .principle-card-back .two-column-list {
        grid-template-columns: 1fr;
    }
}

/* ----------------------- Casinos Review Page Styles ----------------------- */
.review-operator-section {
    padding: 100px 2rem;
    position: relative;
    background-image: linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.review-operator-section .header-badge-cont {
    text-align: center;
    margin-bottom: 2rem;
}

.review-operator-section .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
}

.review-operator-section .header-badge i {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

.review-operator-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.review-operator-section .review-operator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
}

.review-operator-section .casino-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
        "header"
        "bonus"
        "desc"
        "features"
        "cta1"
        "cta2"
        "terms";
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    clip-path: polygon(25px 0%, 100% 0%, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0% 100%, 0% 25px);
    position: relative;
}

.review-operator-section .casino-card-main,
.review-operator-section .casino-card-details {
    display: contents;
}

.review-operator-section .casino-card-header {
    grid-area: header;
}

.review-operator-section .op-bonus-highlight {
    grid-area: bonus;
}

.review-operator-section .op-card-description {
    grid-area: desc;
}

.review-operator-section .op-card-features {
    grid-area: features;
}

.review-operator-section .casino-card-main .op-card-btn {
    grid-area: cta1;
}

.review-operator-section .casino-card-details .op-card-btn {
    grid-area: cta2;
}

.review-operator-section .op-card-terms {
    grid-area: terms;
}

.review-operator-section .casino-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-operator-section .op-logo {
    max-height: 140px;
    max-width: 200px;
}

@media (max-width: 768px) {
    .review-operator-section .op-logo {
        max-height: 60px;
        max-width: 160px;
    }

    .review-operator-section .review-operator-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .review-operator-section .casino-card {
        padding: 1.5rem 20px;
    }
}

.review-operator-section .op-card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--border-color);
    padding: 0.5rem 1rem;
    font-weight: 700;
    clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
    color: var(--text-primary);
}

.review-operator-section .op-card-rating i {
    color: var(--secondary-amber);
}

.review-operator-section .op-bonus-highlight {
    text-align: center;
}

.review-operator-section .op-bonus-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-cyan);
    text-shadow: 0 0 15px var(--primary-cyan);
    line-height: 1.1;
}

.review-operator-section .op-bonus-desc {
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 0.5rem;
}

.review-operator-section .op-card-badge {
    position: relative;
    top: 0;
    right: 0;
    padding: 0.75rem 3.5rem 0.75rem 2.5rem;
    color: var(--darker-bg);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: none;
    /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20px 50%); */
}

.review-operator-section .badge-best-bonus {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
}

.review-operator-section .badge-recommended {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-amber));
}

.review-operator-section .badge-popular {
    background: linear-gradient(135deg, #FF6B6B, #FFC371);
}

.review-operator-section .badge-top-pick {
    background: linear-gradient(135deg, #36D1DC, #5B86E5);
}

.review-operator-section .badge-new {
    background: linear-gradient(135deg, #9EFD04, #2ECC71);
}

.review-operator-section .op-card-btn {
    width: 75%;
    text-align: center;
    margin: auto;
}

.review-operator-section .op-card-btn i {
    display: none;
}

.review-operator-section .op-card-description {
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: center;
}

.review-operator-section .op-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.review-operator-section .op-card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.review-operator-section .op-card-features i {
    color: var(--primary-cyan);
}

.review-operator-section .op-card-terms {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
    line-height: 1.5;
    text-align: center;
}

/* ------ */
.review-page {
    padding: 10rem 20px 5rem 20px;
}

.review-datacard {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.1);
}

.datacard-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 20px;
    background: rgba(0, 255, 255, 0.05);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
}

.datacard-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    height: 160px;
    width: fit-content;
    border-radius: 50%;
    margin: auto;
}

.datacard-logo img {
    max-height: 80px;
}

.datacard-main-info {
    margin: auto;
    text-align: center;
}

.datacard-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.datacard-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.datacard-bonus,
.datacard-rating {
    text-align: center;
    padding: 1rem 2rem;
}

.datacard-rating {
    border-top: 1px solid var(--border-color);
}

.datacard-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
}

.datacard-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-top: 0.5rem;
}

.datacard-rating .datacard-value {
    color: var(--text-primary);
}

.datacard-header .btn {
    padding: 1rem 2rem;
    width: fit-content;
    margin: auto;
}

.datacard-body {
    padding: 3rem 20px;
}

.datacard-section {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.datacard-section-title {
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.2;
}

.datacard-section-title span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}

.datacard-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 3rem 0;
}

.datacard-section-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.review-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.review-detail-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
}

.review-detail-card h4 {
    font-size: 1.2rem;
    color: var(--primary-cyan);
    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.75rem;
    color: var(--text-secondary);
}

.pros-cons-block li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
}

.pros-title {
    color: #2ECC71;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.pros-title i {
    margin-right: 0.5rem;
}

.pros-cons-block:first-child li::before {
    content: '\f058';
    color: #2ECC71;
}

.cons-title {
    color: #e74c3c;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.cons-title i {
    margin-right: 0.5rem;
}

.pros-cons-block:last-child li::before {
    content: '\f057';
    color: #e74c3c;
}

@media (max-width: 1024px) {
    .datacard-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .datacard-logo,
    .datacard-bonus,
    .datacard-rating {
        margin: 0 auto;
    }

    .datacard-rating {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-top: 1.5rem;
    }

    .datacard-section {
        grid-template-columns: 1fr;
    }

    .datacard-section-title {
        text-align: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 600px) {

    .review-details-grid,
    .review-pros-cons-layout {
        grid-template-columns: 1fr;
    }
}

/* --------------------------- Contact Page Style --------------------------- */
.contact-content {
    padding: 100px 20px;
    background-image: linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    max-width: 1400px;
    margin: auto;
    margin-top: 6rem;
}

.contact-info-panel,
.contact-form-panel {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    padding: 2.5rem 20px;
}

.contact-info-panel {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0% 100%);
}

.contact-form-panel {
    clip-path: polygon(25px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 25px);
}

.contact-info-header {
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-header .fa-headset {
    font-size: 3rem;
    color: var(--primary-cyan);
    text-shadow: 0 0 15px var(--primary-cyan);
    margin-bottom: 1rem;
}

.contact-info-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    color: var(--text-secondary);
    max-width: 300px;
    margin: 0 auto;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ci-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ci-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--primary-cyan);
}

.ci-title {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-content .ci-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
}

.ci-link:not(.static):hover {
    color: var(--primary-cyan);
}

.contact-form-wrapper .form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-form-wrapper .form-description {
    color: var(--text-secondary);
    margin: 0.5rem 0 2rem;
}

.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-button {
    width: 100%;
}

.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background-color: rgba(46, 204, 113, 0.2);
    border: 1px solid #2ECC71;
    color: #2ECC71;
}

.form-message.error {
    background-color: rgba(231, 76, 60, 0.2);
    border: 1px solid #e74c3c;
    color: #e74c3c;
}

@media (max-width: 992px) {
    .contact-page-layout {
        grid-template-columns: 1fr;
        margin-top: 4rem;
    }

    .contact-info-panel {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .ci-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .ci-details {
        text-align: center;
    }
}

/* ---------------------------- Legal Page Styles --------------------------- */
.legal-page {
    padding: 50px 20px 100px 20px;
}

.legal-page .container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h2.gradient-text,
.legal-page h3 {
    font-weight: 700;
    color: var(--text-primary);
}

.legal-page h2.gradient-text {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.legal-page h3 {
    font-size: 1.75rem;
    color: var(--primary-cyan);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-page p {
    line-height: 1.8;
    color: var(--text-secondary);
}

.legal-page strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-page .cookie-section,
.legal-page .privacy-section,
.legal-page .terms-section {
    margin-bottom: 3rem;
}

.legal-page .styled-list {
    list-style: none;
    padding-left: 0;
}

.legal-page .styled-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-page .styled-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-cyan);
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
}

.legal-page .styled-link {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.legal-page .styled-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.legal-page .styled-link:hover::after {
    transform: scaleX(1);
}

.cookie-policy-document-section .cookie-types-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cookie-policy-document-section .cookie-type-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    text-align: center;
}

.cookie-policy-document-section .cookie-type-box h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cookie-policy-document-section .cookie-type-box i {
    color: var(--primary-cyan);
}

.terms-document-section .highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 191, 0, 0.1);
    border: 1px solid var(--secondary-amber);
    padding: 2rem;
    margin: 2rem 0;
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
}

.terms-document-section .highlight-icon {
    font-size: 2rem;
    color: var(--secondary-amber);
}

.terms-document-section .highlight-text p {
    color: var(--text-primary);
}

@media (max-width: 600px) {
    .cookie-policy-document-section .cookie-types-wrapper {
        grid-template-columns: 1fr;
    }

    .terms-document-section .highlight-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}