/* =============================================
   TopUKPortal.com — Template B: Modern Edge
   Crimson/Rose Theme
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
    --bg-body: #1a0a10;
    --bg-card: #2a1520;
    --bg-secondary: #351a28;
    --accent: #f43f5e;
    --accent-hover: #e11d48;
    --accent-light: #fb7185;
    --accent-2: #ec4899;
    --gradient-accent: linear-gradient(135deg, #f43f5e, #ec4899);
    --text-primary: #f0dce0;
    --text-muted: #a88b95;
    --text-heading: #ffe8f0;
    --text-link: #fb7185;
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(244, 63, 94, .08);
    --shadow-lg: 0 8px 40px rgba(244, 63, 94, .15);
    --transition: .3s ease;
    --max-width: 1200px;
    --header-height: 64px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    min-height: 100vh;
}
a { color: var(--text-link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.25;
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
p { margin-bottom: 1rem; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-hover); }

/* ---------- Container ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ---------- Section ---------- */
.section-title { text-align: center; margin-bottom: 1rem; }
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 4px 20px rgba(244, 63, 94, .3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(244, 63, 94, .45);
    color: #fff;
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--accent-light);
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .9rem;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: .5px;
}
.btn-secondary:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}
.btn-sm {
    padding: 10px 22px;
    font-size: .85rem;
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: rgba(244, 63, 94, .1);
    border-bottom: 1px solid rgba(244, 63, 94, .15);
    padding: 8px 0;
    font-size: .8rem;
    color: var(--text-muted);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar a { color: var(--accent-light); font-weight: 600; }
.top-bar a:hover { color: #fff; }
.top-bar-links { display: flex; gap: 16px; align-items: center; }

/* ---------- Header ---------- */
.header {
    position: relative;
    z-index: 1000;
    background: rgba(26, 10, 16, .85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(244, 63, 94, .1);
    transition: all var(--transition);
    height: var(--header-height);
}
.header.scrolled {
    background: rgba(26, 10, 16, .95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
    border-bottom-color: rgba(244, 63, 94, .2);
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-heading);
}
.logo:hover { color: var(--text-heading); }
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--gradient-accent);
    border-radius: 10px;
    font-size: 1.2rem;
    color: #fff;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: .88rem;
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: width var(--transition);
}
.nav-links a:hover { color: var(--accent-light); }
.nav-links a:hover::after { width: 100%; }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 60px;
}
.hero-mesh-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(244, 63, 94, .25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(236, 72, 153, .2) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(244, 63, 94, .12) 0%, transparent 50%),
        radial-gradient(ellipse 70% 55% at 90% 10%, rgba(244, 63, 94, .18) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(236, 72, 153, .15) 0%, transparent 50%);
    animation: meshShift 12s ease-in-out infinite alternate;
}
@keyframes meshShift {
    0% {
        background:
            radial-gradient(ellipse 80% 60% at 10% 20%, rgba(244, 63, 94, .25) 0%, transparent 60%),
            radial-gradient(ellipse 60% 50% at 80% 70%, rgba(236, 72, 153, .2) 0%, transparent 55%),
            radial-gradient(ellipse 50% 40% at 50% 50%, rgba(244, 63, 94, .12) 0%, transparent 50%),
            radial-gradient(ellipse 70% 55% at 90% 10%, rgba(244, 63, 94, .18) 0%, transparent 50%),
            radial-gradient(ellipse 40% 40% at 20% 80%, rgba(236, 72, 153, .15) 0%, transparent 50%);
    }
    33% {
        background:
            radial-gradient(ellipse 70% 55% at 30% 40%, rgba(244, 63, 94, .28) 0%, transparent 60%),
            radial-gradient(ellipse 55% 45% at 70% 30%, rgba(236, 72, 153, .22) 0%, transparent 55%),
            radial-gradient(ellipse 60% 50% at 40% 70%, rgba(244, 63, 94, .15) 0%, transparent 50%),
            radial-gradient(ellipse 65% 50% at 80% 60%, rgba(244, 63, 94, .2) 0%, transparent 50%),
            radial-gradient(ellipse 45% 35% at 15% 50%, rgba(236, 72, 153, .18) 0%, transparent 50%);
    }
    66% {
        background:
            radial-gradient(ellipse 60% 50% at 50% 30%, rgba(244, 63, 94, .22) 0%, transparent 60%),
            radial-gradient(ellipse 70% 55% at 20% 60%, rgba(236, 72, 153, .25) 0%, transparent 55%),
            radial-gradient(ellipse 55% 45% at 75% 45%, rgba(244, 63, 94, .18) 0%, transparent 50%),
            radial-gradient(ellipse 50% 40% at 60% 80%, rgba(244, 63, 94, .15) 0%, transparent 50%),
            radial-gradient(ellipse 60% 45% at 40% 15%, rgba(236, 72, 153, .2) 0%, transparent 50%);
    }
    100% {
        background:
            radial-gradient(ellipse 75% 60% at 70% 50%, rgba(244, 63, 94, .3) 0%, transparent 60%),
            radial-gradient(ellipse 50% 40% at 30% 20%, rgba(236, 72, 153, .18) 0%, transparent 55%),
            radial-gradient(ellipse 65% 55% at 60% 75%, rgba(244, 63, 94, .2) 0%, transparent 50%),
            radial-gradient(ellipse 55% 45% at 15% 55%, rgba(244, 63, 94, .22) 0%, transparent 50%),
            radial-gradient(ellipse 50% 40% at 85% 35%, rgba(236, 72, 153, .16) 0%, transparent 50%);
    }
}
.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

/* Hero Gateway */
.hero-gateway {
    text-align: center;
    max-width: 680px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.8;
}
.gateway-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-body), var(--bg-body)) padding-box,
                var(--gradient-accent) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    position: relative;
    animation: ringPulse 3s ease-in-out infinite;
}
.gateway-ring::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(244, 63, 94, .15);
}
@keyframes ringPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.gateway-inner {
    text-align: center;
}
.gateway-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}
.gateway-text {
    font-size: .7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.hero-trust-bar {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500;
}
.trust-icon {
    font-size: .85rem;
}

/* ---------- Wave Divider ---------- */
.wave-divider {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    margin: -1px 0;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 70px;
}
.wave-divider.flip { transform: scaleY(-1); }
.wave-divider.fill-secondary svg path { fill: var(--bg-secondary); }
.wave-divider.fill-body svg path { fill: var(--bg-body); }
.wave-divider.fill-card svg path { fill: var(--bg-card); }

/* ---------- Casino Cards Section ---------- */
.casinos-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.casino-card {
    display: grid;
    grid-template-columns: 70px 1fr auto auto;
    gap: 24px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid rgba(244, 63, 94, .12);
    border-radius: var(--radius);
    padding: 24px 30px;
    margin-bottom: 16px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.casino-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-accent);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity var(--transition);
}
.casino-card:hover {
    border-color: rgba(244, 63, 94, .3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.casino-card:hover::before { opacity: 1; }

.casino-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}

.casino-info { min-width: 0; }
.casino-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-heading);
    margin-bottom: 6px;
}
.casino-bonus {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 10px;
}
.casino-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.casino-pill {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(244, 63, 94, .1);
    border: 1px solid rgba(244, 63, 94, .15);
    border-radius: 20px;
    font-size: .72rem;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}

.casino-score {
    text-align: center;
    padding: 0 20px;
    flex-shrink: 0;
}
.score-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.score-label {
    font-size: .7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 600;
}
.score-text {
    font-size: .75rem;
    color: var(--accent-light);
    font-weight: 700;
    margin-top: 2px;
}

.casino-cta { flex-shrink: 0; }

/* ---------- How It Works ---------- */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-body);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}
.step-card {
    text-align: center;
    padding: 48px 28px 40px;
    background: var(--bg-card);
    border: 1px solid rgba(244, 63, 94, .1);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
}
.step-card:hover {
    border-color: rgba(244, 63, 94, .25);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-accent);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 24px;
    position: relative;
    box-shadow: 0 4px 20px rgba(244, 63, 94, .3);
}
.step-number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(244, 63, 94, .2);
}
.step-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}
.step-card p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
}
.step-connector {
    display: none;
}

/* ---------- Feature Visual Block ---------- */
.feature-visual {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.feature-visual .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.feature-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 6s ease;
}
.feature-image:hover img { transform: scale(1.05); }
.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(244, 63, 94, .15) 0%, transparent 60%);
    border-radius: var(--radius-lg);
    pointer-events: none;
}
.feature-text h2 { margin-bottom: 20px; }
.feature-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1rem;
}
.feature-list {
    margin: 24px 0;
}
.feature-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-primary);
    font-size: .95rem;
}
.feature-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
}

/* ---------- Bento Info Grid ---------- */
.bento-section {
    padding: 80px 0;
    background: var(--bg-body);
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.bento-card {
    background: var(--bg-card);
    border: 1px solid rgba(244, 63, 94, .1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition);
}
.bento-card:hover {
    border-color: rgba(244, 63, 94, .25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.bento-card:hover::before { opacity: 1; }
.bento-card.span-2 { grid-column: span 1; }
.bento-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(244, 63, 94, .1);
    border-radius: var(--radius);
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.bento-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.bento-card p {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.7;
}

/* ---------- Parallax Section ---------- */
.parallax-section {
    position: relative;
    height: 340px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.parallax-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 10, 16, .8) 0%, rgba(53, 26, 40, .7) 100%);
}
.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
}
.parallax-content h2 { margin-bottom: 16px; font-size: 2rem; }
.parallax-content p { color: var(--text-muted); font-size: 1.1rem; }

/* ---------- Methodology Section ---------- */
.methodology-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.methodology-item {
    background: var(--bg-card);
    border: 1px solid rgba(244, 63, 94, .1);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
}
.methodology-item:hover {
    border-color: rgba(244, 63, 94, .25);
    transform: translateY(-2px);
}
.methodology-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.methodology-item h4 {
    font-size: 1rem;
    color: var(--text-heading);
}
.methodology-score {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .85rem;
    color: var(--accent-light);
    background: rgba(244, 63, 94, .12);
    padding: 4px 12px;
    border-radius: 20px;
}
.methodology-bar {
    width: 100%;
    height: 6px;
    background: rgba(244, 63, 94, .1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}
.methodology-bar-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 3px;
    transition: width 1s ease;
}
.methodology-item p {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.6;
    margin: 0;
}

/* ---------- FAQ Section ---------- */
.faq-section {
    padding: 80px 0;
    background: var(--bg-body);
}
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(244, 63, 94, .1);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(244, 63, 94, .2); }
.faq-item.active { border-color: rgba(244, 63, 94, .3); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .95rem;
    color: var(--text-heading);
    transition: color var(--transition);
    user-select: none;
}
.faq-question:hover { color: var(--accent-light); }
.faq-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 63, 94, .1);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--accent-light);
    transition: all var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.active .faq-toggle {
    background: var(--accent);
    color: #fff;
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.8;
}

/* ---------- CTA Panel ---------- */
.cta-panel {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.cta-box {
    background: var(--bg-card);
    border: 1px solid rgba(244, 63, 94, .15);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 63, 94, .1) 0%, transparent 70%);
    pointer-events: none;
}
.cta-box h2 {
    position: relative;
    margin-bottom: 16px;
}
.cta-box p {
    position: relative;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
}
.cta-box .btn-primary { position: relative; }
.cta-links {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}
.cta-links a {
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: color var(--transition);
}
.cta-links a:hover { color: var(--accent-light); }

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-card);
    border-top: 1px solid rgba(244, 63, 94, .1);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
    margin-top: 12px;
}
.footer h4 {
    font-size: .9rem;
    color: var(--text-heading);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: var(--text-muted);
    font-size: .88rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent-light); }
.footer-regulatory {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-regulatory a {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(244, 63, 94, .08);
    border: 1px solid rgba(244, 63, 94, .12);
    border-radius: 6px;
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: all var(--transition);
}
.footer-regulatory a:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}
.footer-disclaimer {
    border-top: 1px solid rgba(244, 63, 94, .08);
    padding: 24px 0;
    color: var(--text-muted);
    font-size: .78rem;
    line-height: 1.7;
}
.footer-bottom {
    border-top: 1px solid rgba(244, 63, 94, .08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .82rem;
    color: var(--text-muted);
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100svw;
    box-sizing: border-box;
    overflow-x: hidden;
    z-index: 999;
    background: var(--bg-card);
    border-top: 1px solid rgba(244, 63, 94, .2);
    padding: 20px;
    transform: translateY(100%);
    transition: transform .4s ease;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, .3);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-text {
    flex: 1;
    min-width: 280px;
    margin: unset;
    font-size: .88rem;
    color: var(--text-muted);
}
.cookie-text a { color: var(--accent-light); font-weight: 600; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
/* ---------- Subpage Styles ---------- */
.page-hero {
    padding: 100px 0 60px;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 40%, rgba(244, 63, 94, .12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 70% 60%, rgba(236, 72, 153, .08) 0%, transparent 50%);
    pointer-events: none;
}
.page-hero h1 {
    position: relative;
    margin-bottom: 12px;
}
.page-hero p {
    position: relative;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.page-content {
    padding: 60px 0 80px;
}
.page-content .container { max-width: 860px; }
.page-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(244, 63, 94, .15);
}
.page-content h3 {
    font-size: 1.2rem;
    margin: 28px 0 12px;
}
.page-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}
.page-content ul, .page-content ol {
    margin: 16px 0;
    padding-left: 24px;
}
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li {
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.7;
}
.page-content a { color: var(--accent-light); font-weight: 600; }
.page-content a:hover { color: var(--accent); }
.page-content strong { color: var(--text-heading); }
.page-content blockquote {
    border-left: 4px solid var(--accent);
    background: rgba(244, 63, 94, .06);
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.page-content blockquote p {
    color: var(--text-primary);
    margin: 0;
}
.info-box {
    background: var(--bg-card);
    border: 1px solid rgba(244, 63, 94, .15);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}
.info-box h4 {
    color: var(--accent-light);
    margin-bottom: 12px;
    font-size: 1rem;
}
.info-box p {
    margin: 0;
    font-size: .92rem;
}

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero { min-height: auto; padding: 120px 0 60px; }
    .gateway-ring { width: 120px; height: 120px; }
    .gateway-number { font-size: 2.2rem; }
    .feature-visual .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .feature-image { order: -1; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-card.span-2 { grid-column: span 1; }
    .casino-card {
        grid-template-columns: 56px 1fr;
        gap: 16px;
    }
    .casino-score { padding: 0; }
    .casino-cta { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .top-bar .container { justify-content: center; text-align: center; }
    .top-bar-links { display: none; }
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(280px, 100svw);
        max-width: 100svw;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 0;
        transition: right .35s ease;
        border-left: 1px solid rgba(244, 63, 94, .15);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav-links.active { right: 0; }
    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(244, 63, 94, .08);
        width: 100%;
    }
    .nav-links a::after { display: none; }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        z-index: 999;
    }
    .nav-overlay.active { display: block; }

    .hero h1 { font-size: 1.8rem; }
    .gateway-ring { width: 100px; height: 100px; }
    .gateway-number { font-size: 1.8rem; }
    .hero-trust-bar { gap: 10px; }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .methodology-grid { grid-template-columns: 1fr; }

    .bento-grid { grid-template-columns: 1fr; }
    .bento-card.span-2 { grid-column: span 1; }

    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px 20px;
    }
    .casino-rank { margin: 0 auto; }
    .casino-pills { justify-content: center; }
    .casino-cta { justify-self: center; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .cta-box { padding: 40px 24px; }

    .parallax-section { height: 280px; background-attachment: scroll; }

    .page-hero { padding: 40px 0 40px; }
}

@media (max-width: 480px) {
    body { font-size: 15px; }
    .container { padding: 0 16px; }
    .hero h1 { font-size: 1.5rem; }
    .hero { padding: 20px 0 40px; }
    .section-title { font-size: 1.4rem; }
    .btn-primary { padding: 12px 24px; font-size: .85rem; }
    .btn-secondary { padding: 10px 20px; font-size: .82rem; }
}

/* ---------- Print Styles ---------- */
@media print {
    body { background: #fff; color: #222; }
    .header, .top-bar, .cookie-banner, .parallax-section, .cta-panel, .hero-mesh-bg { display: none; }
    .hero { min-height: auto; padding: 20px 0; }
    .wave-divider { display: none; }
    a { color: #222; text-decoration: underline; }
    .casino-card, .bento-card, .step-card, .methodology-item, .faq-item {
        border: 1px solid #ccc;
        background: #fff;
        box-shadow: none;
        break-inside: avoid;
    }
    .footer { background: #fff; border-top: 1px solid #ccc; }
    h1, h2, h3, h4 { color: #111; }
    .faq-answer { max-height: none !important; }
}
