/*
Theme Name: AnonCastle
Theme URI: https://anonymouscasinos.com
Description: Dark, trustworthy casino review theme with crypto/privacy vibe
Version: 1.0.0
Author: AnonymousCasinos
Text Domain: anoncastle
*/

/* ==========================================
   DARK MODE (Default)
   ========================================== */
:root {
    /* Base colors */
    --bg-primary: #0B0F14;
    --bg-secondary: #121A23;
    --bg-card: #151D28;
    --bg-card-hover: #1A2533;
    
    /* Accent colors */
    --accent-cyan: #00E5FF;
    --accent-cyan-glow: rgba(0, 229, 255, 0.3);
    --accent-green: #19FFA5;
    --accent-green-glow: rgba(25, 255, 165, 0.3);
    --accent-orange: #FFB020;
    --accent-red: #FF4D4D;
    
    /* Text colors */
    --text-primary: #E6EDF3;
    --text-secondary: #9FB3C8;
    --text-muted: #6B7D93;
    
    /* Borders */
    --border-color: #1E2A3A;
    --border-glow: rgba(0, 229, 255, 0.2);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0B0F14 0%, #121A23 50%, #0B0F14 100%);
    --gradient-card: linear-gradient(135deg, #151D28 0%, #1A2533 100%);
    --gradient-accent: linear-gradient(135deg, #00E5FF 0%, #19FFA5 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px var(--accent-cyan-glow);
    
    /* Layout */
    --container-max: 1280px;
    --header-height: 72px;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ==========================================
   LIGHT MODE
   ========================================== */
[data-theme="light"] {
    /* Base colors - Light */
    --bg-primary: #F5F7FA;
    --bg-secondary: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F0F4F8;
    
    /* Accent colors - Adjusted for light mode contrast */
    --accent-cyan: #0099CC;
    --accent-cyan-glow: rgba(0, 153, 204, 0.15);
    --accent-green: #00B377;
    --accent-green-glow: rgba(0, 179, 119, 0.15);
    --accent-orange: #E69500;
    --accent-red: #E53E3E;
    
    /* Text colors - Dark text for light bg */
    --text-primary: #1A202C;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    
    /* Borders */
    --border-color: #E2E8F0;
    --border-glow: rgba(0, 153, 204, 0.2);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #F5F7FA 0%, #FFFFFF 50%, #F5F7FA 100%);
    --gradient-card: linear-gradient(135deg, #FFFFFF 0%, #F0F4F8 100%);
    
    /* Shadows - Softer for light mode */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px var(--accent-cyan-glow);
}

/* Light mode specific overrides */
[data-theme="light"] .site-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .withdrawal-proof {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .casino-table th {
    background: var(--bg-secondary);
}

[data-theme="light"] .kyc-badge {
    border: 1px solid currentColor;
}

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    width: 16px;
    height: 16px;
}

[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun,
:root:not([data-theme]) .theme-toggle .icon-sun { display: none; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body.admin-toolbar-visible {
    padding-top: 50px;
}

.anoncastle-admin-toolbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: rgba(15, 23, 42, 0.96);
    border-bottom: 1px solid rgba(8, 145, 178, 0.2);
    backdrop-filter: blur(10px);
}

.anoncastle-admin-toolbar__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.anoncastle-admin-toolbar__label {
    color: #E2E8F0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-right: 6px;
}

.anoncastle-admin-toolbar__link {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: #E2E8F0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    text-decoration: none;
    text-shadow: none;
}

.anoncastle-admin-toolbar__link:hover {
    color: #FFFFFF;
    border-color: rgba(0, 229, 255, 0.4);
    background: rgba(0, 229, 255, 0.14);
}

.anoncastle-admin-toolbar__link.is-primary {
    color: #082F49;
    background: #67E8F9;
    border-color: #67E8F9;
}

.anoncastle-admin-toolbar__logout {
    margin-left: auto;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--accent-green);
    text-shadow: 0 0 10px var(--accent-cyan-glow);
}

/* ==========================================
   HEADER
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(11, 15, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

body.admin-toolbar-visible .site-header {
    top: 50px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.site-logo:hover {
    color: var(--text-primary);
    text-shadow: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 8px 16px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--border-radius-sm);
    transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.1);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown > a::after {
    content: '▾';
    font-size: 0.7em;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    white-space: nowrap;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .nav-dropdown > a::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        padding-left: 16px;
    }
    
    .dropdown-menu a {
        padding: 10px 16px;
        font-size: 0.85rem;
        color: var(--text-muted);
    }
}

/* Forum User Menu in Header - Dropdown */
.forum-user-menu {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-menu-toggle:hover {
    background: rgba(0, 229, 255, 0.2);
    border-color: var(--accent-cyan);
}

.user-menu-toggle .dropdown-arrow {
    font-size: 0.7em;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

/* Profile label with username */
.user-menu-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.user-menu-title {
    font-weight: 500;
}

.user-menu-username {
    font-size: 11px;
    color: var(--text-secondary);
    opacity: 0.75;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.forum-user-menu:hover .user-menu-toggle .dropdown-arrow,
.forum-user-menu.active .user-menu-toggle .dropdown-arrow {
    transform: rotate(180deg);
}

.forum-user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

/* User Dropdown Menu */
.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.forum-user-menu:hover .user-dropdown,
.forum-user-menu.active .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.15s ease;
}

.user-dropdown a:hover {
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
}

.user-dropdown .dropdown-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.user-dropdown .dropdown-divider {
    margin: 8px 0;
    border: none;
    border-top: 1px solid var(--border-color);
}

.user-dropdown .logout-link:hover {
    background: rgba(255, 77, 77, 0.1);
    color: var(--accent-red);
}

/* Light mode adjustments */
[data-theme="light"] .user-dropdown {
    background: #ffffff;
    border-color: var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.forum-login-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000 !important;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    margin-left: 8px;
    transition: all 0.2s ease;
}

.forum-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

@media (max-width: 768px) {
    .forum-user-menu {
        margin-left: 0;
        margin-top: 12px;
        width: 100%;
    }
    
    .user-menu-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .user-menu-username {
        display: none;
    }
    
    .user-menu-label {
        align-items: center;
    }
    
    .user-dropdown {
        position: static;
        width: 100%;
        margin-top: 8px;
        transform: none;
    }
    
    .forum-user-menu:hover .user-dropdown {
        opacity: 0;
        visibility: hidden;
    }
    
    .forum-user-menu.active .user-dropdown {
        opacity: 1;
        visibility: visible;
    }
    
    .forum-login-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 12px;
    }
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        z-index: 999;
    }
    
    body.admin-toolbar-visible .main-nav {
        top: calc(var(--header-height) + 50px);
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav a {
        width: 100%;
        padding: 12px 16px;
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 60px) 0 60px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

@media (max-width: 480px) {
    .hero {
        padding: calc(var(--header-height) + 40px) 0 40px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(25, 255, 165, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-content h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.3;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 540px;
}

.research-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.research-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 968px) {
    .hero-subtitle {
        margin: 0 auto 32px;
    }
}

/* Hero buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

@media (max-width: 968px) {
    .hero-buttons {
        justify-content: center;
    }
}

.hero-note {
    max-width: 520px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 229, 255, 0.16);
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(25, 255, 165, 0.04));
    box-shadow: var(--shadow-sm);
}

.hero-note-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-cyan);
}

.hero-note p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px var(--accent-cyan-glow);
}

.btn-primary:hover {
    background: var(--accent-green);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--accent-green-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.05);
}

/* Read Review Button - Green CTA Style */
.btn-review {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
    transition: all 0.25s ease;
}

.btn-review:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
    text-shadow: none;
}

.btn-review svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.btn-review:hover svg {
    transform: translateX(3px);
}

/* Withdrawal Proof Block (Animated) */
.withdrawal-proof {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.withdrawal-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.proof-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.proof-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(25, 255, 165, 0.1);
    color: var(--accent-green);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.proof-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.proof-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proof-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.proof-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.proof-row:last-child {
    border-bottom: none;
}

.proof-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.proof-value {
    font-weight: 600;
    font-family: var(--font-mono);
}

.proof-link a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.proof-link a:hover {
    color: var(--accent-green);
}

.proof-value.amount {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.proof-value.time {
    color: var(--accent-cyan);
}

.proof-value.status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.success {
    background: rgba(25, 255, 165, 0.15);
    color: var(--accent-green);
}

.status-badge.no-kyc {
    background: rgba(0, 229, 255, 0.15);
    color: var(--accent-cyan);
}

.tx-hash {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 4px 8px;
    border-radius: 4px;
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* Latest Tests Section */
.tests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.test-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: all 0.3s ease;
}

.test-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Keep the report action aligned at the bottom of each homepage card. */
.tests-grid > .test-card {
    display: flex;
    flex-direction: column;
}

.tests-grid .test-stats {
    margin-bottom: 20px;
}

.test-full-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    min-height: 46px;
    padding: 11px 16px;
    border: 1px solid var(--border-glow);
    border-radius: var(--border-radius-sm);
    background: var(--accent-cyan-glow);
    color: var(--accent-cyan);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

[data-theme="light"] .test-full-link {
    background: #edf7fc;
    border-color: #c9e3f0;
    color: #246887;
}

.test-full-link:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    text-decoration: none;
}

[data-theme="light"] .test-full-link:hover {
    background: #dceff8;
    border-color: #78b6d2;
    color: #174f6a;
}

.test-full-link:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

.test-full-link-arrow {
    flex: 0 0 18px;
    transition: transform 0.2s ease;
}

.test-full-link:hover .test-full-link-arrow {
    transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
    .test-full-link,
    .test-full-link-arrow {
        transition: none;
    }

    .test-full-link:hover .test-full-link-arrow {
        transform: none;
    }
}

.test-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.casino-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.14), rgba(25, 255, 165, 0.12));
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    font-family: var(--font-mono);
    text-transform: uppercase;
}

/* Casino logo as image (not text badge) */
img.casino-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    flex: none;
}

.casino-name {
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.casino-name:hover,
a.casino-name:hover,
.casino-cell a:hover strong {
    color: var(--accent-cyan) !important;
}

.test-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.stat-item {
    text-align: center;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Trust signals */
.trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent-green);
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* Disclaimer */
.disclaimer {
    background: rgba(255, 176, 32, 0.1);
    border: 1px solid rgba(255, 176, 32, 0.3);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    margin-top: 24px;
    font-size: 0.8rem;
    color: var(--accent-orange);
}

/* ==========================================
   UTILITIES
   ========================================== */
.text-cyan { color: var(--accent-cyan); }
.text-green { color: var(--accent-green); }
.text-orange { color: var(--accent-orange); }
.text-red { color: var(--accent-red); }

.bg-glow {
    background: var(--bg-card);
    box-shadow: var(--shadow-glow);
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }

/* ==========================================
   CASINO TABLE (Top Casinos)
   ========================================== */
.top-casinos-table {
    overflow-x: auto;
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.casino-table th,
.casino-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.casino-table th {
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.casino-table tbody tr:hover {
    background: rgba(0, 229, 255, 0.03);
}

.casino-table .rank {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-cyan);
    width: 50px;
}

.casino-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.casino-cell .casino-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(0, 229, 255, 0.12);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--accent-cyan);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

/* KYC Badges */
.kyc-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.kyc-badge.kyc-dark-green {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.kyc-badge.kyc-green,
.kyc-badge.kyc-light-green {
    background: rgba(25, 255, 165, 0.15);
    color: var(--accent-green);
}

.kyc-badge.kyc-orange {
    background: rgba(255, 176, 32, 0.15);
    color: var(--accent-orange);
}

.kyc-badge.kyc-yellow {
    background: rgba(250, 204, 21, 0.15);
    color: #facc15;
}

.kyc-badge.kyc-red {
    background: rgba(255, 77, 77, 0.15);
    color: var(--accent-red);
}

.rating {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.rating-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-green);
}

.rating-max {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .casino-table th:nth-child(4),
    .casino-table td:nth-child(4),
    .casino-table th:nth-child(5),
    .casino-table td:nth-child(5) {
        display: none;
    }
}

/* ==========================================
   FAKE CASINOS SECTION
   ========================================== */
.fake-casinos-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.fake-casino-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 77, 77, 0.3);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: all 0.3s ease;
}

.fake-casino-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.1);
}

.fake-casino-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.fake-icon {
    font-size: 1.25rem;
}

.fake-casino-content .claim,
.fake-casino-content .reality {
    margin-bottom: 8px;
}

.fake-casino-content .label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.fake-casino-content .value {
    font-size: 0.95rem;
}

/* ==========================================
   HOW WE TEST GRID
   ========================================== */
.how-we-test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.test-method-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.test-method-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
}

.method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.16);
    background: rgba(0, 229, 255, 0.08);
    color: var(--accent-cyan);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: var(--font-mono);
    margin-bottom: 16px;
}

.test-method-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.test-method-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ==========================================
   NEWS GRID
   ========================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: all 0.3s ease;
}

.news-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.news-date {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    font-weight: 500;
}

.news-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.read-more {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-cyan);
}

.read-more:hover {
    color: var(--accent-green);
}

/* ==========================================
   FAQ GRID
   ========================================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--accent-cyan);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

.faq-item strong {
    color: var(--text-primary);
}

/* ==========================================
   KYC INDICATOR LEGEND
   ========================================== */
.kyc-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin-bottom: 24px;
}

.kyc-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.kyc-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.kyc-indicator.dark-green { background: #059669; }
.kyc-indicator.light-green { background: var(--accent-green); }
.kyc-indicator.orange { background: var(--accent-orange); }
.kyc-indicator.yellow { background: #facc15; }
.kyc-indicator.red { background: var(--accent-red); }

/* ==========================================
   WITHDRAWAL PROOF CARD (Detailed)
   ========================================== */
.withdrawal-proof-detailed {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.withdrawal-proof-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.proof-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.proof-detail-row:last-child {
    border-bottom: none;
}

.proof-detail-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.proof-detail-value {
    font-weight: 600;
    font-family: var(--font-mono);
}

.proof-network {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--bg-secondary);
    border-radius: 12px;
    font-size: 0.8rem;
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 640px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .how-we-test-grid {
        grid-template-columns: 1fr;
    }
    
    .fake-casinos-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   SINGLE CASINO REVIEW PAGE
   ========================================== */
.casino-hero-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .casino-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-card {
        max-width: 300px;
        margin: 0 auto;
    }
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--accent-cyan);
}

.last-tested-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,229,255,0.1);
    border: 1px solid var(--accent-cyan);
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.fact-item {
    background: var(--bg-primary);
    padding: 12px 16px;
    border-radius: 8px;
}

/* External Links Section */
.external-links-grid {
    display: grid;
    gap: 16px;
}

.external-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.external-link-card:hover {
    border-color: var(--accent-cyan);
    transform: translateX(4px);
}

/* Table of Contents */
.toc {
    background: var(--bg-secondary);
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.toc ul {
    margin: 12px 0 0;
    columns: 2;
    column-gap: 24px;
    list-style: none;
    padding: 0;
}

.toc li {
    margin-bottom: 8px;
}

.toc a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.toc a:hover {
    color: var(--accent-cyan);
}

@media (max-width: 600px) {
    .toc ul {
        columns: 1;
    }
}

/* Video Evidence */
.video-evidence {
    margin: 40px 0;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Verdict Box */
.verdict-box {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border: 1px solid var(--accent-cyan);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
}

/* Vote Buttons (Community) */
.vote-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.vote-btn {
    padding: 12px 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.vote-btn:hover {
    transform: translateY(-2px);
}

.vote-yes {
    background: rgba(25,255,165,0.1);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
}

.vote-no {
    background: rgba(255,77,77,0.1);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
}

/* Related Casinos */
.related-casinos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.related-card {
    display: block;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.related-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
}

/* Resource Cards (External Links Section) */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.resource-card {
    display: block;
    padding: 20px;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.resource-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
}

/* Revenue Disclosure */
.revenue-disclosure {
    background: rgba(255,176,32,0.08);
    border: 1px solid rgba(255,176,32,0.2);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.revenue-disclosure a {
    color: var(--accent-cyan);
}

/* Entry Content (review body) */
.entry-content {
    line-height: 1.8;
}

.entry-content h2 {
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.entry-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content ul, .entry-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.entry-content li {
    margin-bottom: 8px;
}

.methodology-checklist {
    margin: 0 0 20px;
    padding-left: 1.5rem;
    line-height: 2;
}

.methodology-checklist li {
    padding-left: 0.2rem;
}

.entry-content blockquote {
    border-left: 3px solid var(--accent-cyan);
    padding-left: 20px;
    margin: 24px 0;
    color: var(--text-secondary);
    font-style: italic;
}

/* ==========================================
   PREMIUM CASINO REVIEW PAGE STYLES
   Award-winning design for casino reviews
   ========================================== */

/* Hero Section Premium */
.casino-hero-premium {
    position: relative;
    padding: calc(var(--header-height) + 60px) 0 60px;
    background: var(--bg-primary);
    overflow: hidden;
}

@media (max-width: 480px) {
    .casino-hero-premium {
        padding: calc(var(--header-height) + 40px) 0 40px;
    }
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Breadcrumbs Premium */
.breadcrumbs-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 0.9rem;
}

.breadcrumbs-premium a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs-premium a:hover {
    color: var(--accent-cyan);
}

.breadcrumbs-premium .separator {
    color: var(--text-muted);
    opacity: 0.5;
}

.breadcrumbs-premium .current {
    color: var(--text-primary);
    font-weight: 500;
}

/* Hero Content Grid */
.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

@media (max-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Casino Identity */
.casino-identity {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.casino-logo-large {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

.casino-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    border-radius: 16px;
}

.logo-placeholder {
    font-size: 3rem;
}

.casino-title-block {
    flex: 1;
}

.casino-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 12px;
    line-height: 1.2;
}

.casino-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.badge-vpn {
    background: rgba(25, 255, 165, 0.1);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.badge-established {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Verification Banner */
.verification-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.verification-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.verification-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.verification-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-cyan);
}

.verification-icon i {
    font-size: 18px;
    color: var(--accent-cyan);
}

.verification-content {
    display: flex;
    flex-direction: column;
}

.verification-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verification-value {
    font-weight: 600;
    color: var(--text-primary);
}

.verification-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hide divider after last verification-item */
.verification-item:last-of-type + .verification-divider {
    display: none;
}

@media (max-width: 768px) {
    .verification-banner {
        gap: 16px;
    }
    .verification-divider {
        display: none;
    }
    .verification-item {
        flex: 1 1 calc(50% - 8px);
        min-width: 150px;
    }
}

.hero-summary {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
}

/* Premium Rating Card */
.rating-card-premium {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.rating-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.rating-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.rating-card-title {
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.rating-card-badge {
    background: rgba(25, 255, 165, 0.1);
    color: var(--accent-green);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.overall-rating-display {
    text-align: center;
    margin-bottom: 28px;
}

.rating-circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 16px;
}

.rating-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: var(--bg-secondary);
    stroke-width: 3;
}

.ring-fill {
    fill: none;
    stroke: var(--rating-color, var(--accent-cyan));
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 1s ease;
}

.rating-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.rating-number .rating-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rating-color, var(--accent-cyan));
    line-height: 1;
}

.rating-number .rating-max {
    font-size: 1rem;
    color: var(--text-muted);
}

.rating-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Sub Ratings */
.sub-ratings {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sub-rating-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sub-rating-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.sub-rating-label {
    color: var(--text-secondary);
}

.sub-rating-value {
    font-weight: 600;
    color: var(--text-primary);
}

.sub-rating-bar {
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 3px;
    overflow: hidden;
}

.sub-rating-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease;
}

.rating-card-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Quick Facts Strip */
.quick-facts-strip {
    display: flex;
    gap: 24px;
    padding: 24px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-top: 32px;
    overflow-x: auto;
    flex-wrap: wrap;
}

.quick-fact {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: fit-content;
}

.quick-fact-icon {
    font-size: 1.5rem;
}

.quick-fact-content {
    display: flex;
    flex-direction: column;
}

.quick-fact-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-fact-value {
    font-weight: 600;
    color: var(--text-primary);
}

/* Sticky Navigation */
.review-nav-sticky {
    position: sticky;
    top: var(--header-height);
    z-index: 100;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    transition: box-shadow 0.3s;
}

body.admin-toolbar-visible .review-nav-sticky {
    top: calc(var(--header-height) + 50px);
}

.review-nav-sticky.scrolled {
    box-shadow: var(--shadow-md);
}

.sticky-casino-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.sticky-casino-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
}

.sticky-casino-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .sticky-casino-name {
        display: none;
    }
    .sticky-casino-logo img {
        width: 28px;
        height: 28px;
    }
}

.review-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.review-nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.review-nav-links::-webkit-scrollbar {
    display: none;
}

.review-nav-links a {
    display: block;
    padding: 16px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.review-nav-links a.active {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
}

@media (hover: hover) and (pointer: fine) {
    .review-nav-links a:hover {
        color: var(--accent-cyan);
        border-bottom-color: var(--accent-cyan);
    }
}

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

@media (max-width: 768px) {
    .nav-cta {
        display: none;
    }
}

/* Review Content Layout */
.review-content-wrapper {
    padding: 48px 0 80px;
    background: var(--bg-primary);
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

@media (max-width: 1024px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
}

/* Review Sections */
.review-section {
    margin-bottom: 60px;
}

.section-header-premium {
    margin-bottom: 32px;
    position: relative;
}

.section-header-premium h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
}

.section-header-premium h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.3), transparent);
    margin-left: 16px;
}

.section-icon {
    font-size: 1.75rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(25, 255, 165, 0.05));
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.section-subtitle {
    color: var(--text-muted);
    margin: 0;
    padding-left: 62px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .section-header-premium h2 {
        font-size: 1.3rem;
        gap: 12px;
    }
    
    .section-header-premium h2::after {
        display: none;
    }
    
    .section-icon {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
        border-radius: 10px;
    }
    
    .section-subtitle {
        padding-left: 54px;
        font-size: 0.9rem;
    }
}

/* Withdrawal Tests Premium */
.withdrawal-tests-premium {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.test-result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.test-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-green));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.test-result-card:hover {
    border-color: rgba(0, 229, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(0, 229, 255, 0.08);
}

.test-result-card:hover::before {
    opacity: 1;
}

.test-result-card.featured {
    border-color: var(--accent-cyan);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 229, 255, 0.08) 100%);
}

.test-result-card.featured::before {
    opacity: 1;
}

.test-badge {
    position: absolute;
    top: 8px;
    right: 16px;
    background: var(--accent-cyan);
    color: var(--bg-primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.test-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.test-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.date-icon {
    opacity: 0.7;
}

.test-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.test-status.success {
    background: rgba(25, 255, 165, 0.1);
    color: var(--accent-green);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
}

.test-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 600px) {
    .test-details {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.test-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1.25rem;
    font-weight: 600;
}

.detail-value.amount {
    color: var(--accent-cyan);
}

.detail-value.time {
    color: var(--accent-green);
}

.detail-value.kyc-no {
    color: var(--accent-green);
}

.detail-value.kyc-yes {
    color: var(--accent-red);
}

.test-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.test-footer .tx-hash {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 4px 10px;
    border-radius: 6px;
}

.verify-link {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    text-decoration: none;
}

.verify-link:hover {
    text-decoration: underline;
}

/* Test Summary Card */
.test-summary-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.test-summary-card h4 {
    margin-bottom: 20px;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 600px) {
    .summary-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.summary-stat {
    text-align: center;
}

.summary-stat .stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1.2;
}

.summary-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Deposit Tests - reuses withdrawal test styles with deposit-specific accents */
.deposit-tests-premium {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.deposit-test-card::before {
    background: linear-gradient(180deg, var(--accent-green), #FFD700) !important;
}

.deposit-badge {
    background: var(--accent-green) !important;
}

.deposit-summary {
    border-color: rgba(25, 255, 165, 0.3);
}

.deposit-summary .stat-number {
    color: var(--accent-green);
}

/* Pros & Cons Premium */
.pros-cons-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .pros-cons-premium {
        grid-template-columns: 1fr;
    }
}

.pros-card, .cons-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.pros-card:hover, .cons-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.pros-card {
    border-color: rgba(25, 255, 165, 0.2);
}

.pros-card:hover {
    border-color: rgba(25, 255, 165, 0.4);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(25, 255, 165, 0.08);
}

.cons-card {
    border-color: rgba(255, 77, 77, 0.2);
}

.cons-card:hover {
    border-color: rgba(255, 77, 77, 0.4);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(255, 77, 77, 0.08);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
}

.card-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.card-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.pros-header {
    background: linear-gradient(135deg, rgba(25, 255, 165, 0.15) 0%, rgba(25, 255, 165, 0.05) 100%);
    border-bottom: 1px solid rgba(25, 255, 165, 0.2);
}

.pros-header .card-icon {
    background: rgba(25, 255, 165, 0.15);
    border: 1px solid rgba(25, 255, 165, 0.3);
}

.cons-header {
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.15) 0%, rgba(255, 77, 77, 0.05) 100%);
    border-bottom: 1px solid rgba(255, 77, 77, 0.2);
}

.cons-header .card-icon {
    background: rgba(255, 77, 77, 0.15);
    border: 1px solid rgba(255, 77, 77, 0.3);
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li, .cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pros-list li:hover {
    background: rgba(25, 255, 165, 0.03);
    padding-left: 28px;
}

.cons-list li:hover {
    background: rgba(255, 77, 77, 0.03);
    padding-left: 28px;
}

.pros-list li:last-child, .cons-list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--accent-green);
    font-weight: bold;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 255, 165, 0.1);
    border-radius: 50%;
    font-size: 0.85rem;
}

.x-icon {
    color: var(--accent-red);
    font-weight: bold;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 77, 77, 0.1);
    border-radius: 50%;
    font-size: 0.85rem;
}

/* Screenshot Gallery */
.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
    align-items: stretch; /* All items same height */
}

@media (max-width: 700px) {
    .screenshot-gallery {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--accent-cyan);
}

/* Placeholder items - not clickable */
.gallery-item-placeholder {
    cursor: default;
    aspect-ratio: 4/3; /* Only placeholders need fixed aspect ratio */
}
.gallery-item-placeholder:hover {
    transform: none;
    border-color: var(--border-color);
}

.gallery-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain; /* Scale to fit, preserving aspect ratio */
}

.gallery-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-secondary);
}

.placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

.placeholder-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 2rem;
}

.gallery-meta {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    pointer-events: none;
}

.gallery-meta strong {
    font-size: 0.82rem;
}

.gallery-meta span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.82);
}

/* Video Evidence Card */
.video-evidence-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.video-evidence-card h4 {
    margin-bottom: 16px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Resources Grid Premium */
.resources-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 600px) {
    .resources-grid-premium {
        grid-template-columns: 1fr;
    }
}

.resource-card-premium {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-card-premium:hover {
    border-color: var(--accent-cyan);
    transform: translateX(4px);
}

.resource-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.resource-content {
    flex: 1;
    min-width: 0;
}

.resource-title {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.resource-url {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.resource-arrow {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Verdict Card Premium */
.verdict-card-premium {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(0, 229, 255, 0.05) 50%, var(--bg-secondary) 100%);
    border: 2px solid var(--accent-cyan);
    border-radius: 24px;
    padding: 44px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.2),
        0 0 80px rgba(0, 229, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.verdict-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green), #FFD700, var(--accent-cyan));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.verdict-card-premium::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.verdict-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.verdict-rating {
    display: flex;
    align-items: baseline;
}

.verdict-score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
}

.verdict-max {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.verdict-title h2 {
    margin: 0 0 4px;
}

.verdict-title p {
    margin: 0;
    color: var(--text-muted);
}

.verdict-content {
    margin-bottom: 32px;
}

.verdict-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.verdict-recommendation {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(25, 255, 165, 0.1);
    border: 1px solid rgba(25, 255, 165, 0.3);
    border-radius: 12px;
    margin-top: 24px;
}

.recommendation-icon {
    font-size: 1.5rem;
}

.recommendation-text {
    color: var(--text-secondary);
}

.verdict-cta {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.bonus-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(25, 255, 165, 0.1) 0%, rgba(0, 229, 255, 0.1) 100%);
    border: 1px solid var(--accent-green);
    border-radius: 12px;
    margin-bottom: 20px;
}

.bonus-icon {
    font-size: 1.25rem;
}

.bonus-text {
    font-weight: 600;
    color: var(--accent-green);
}

.verdict-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
}

.affiliate-disclosure {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Community Vote Section */
.community-vote-section {
    margin-top: 40px;
}

.vote-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.vote-card h3 {
    margin-bottom: 8px;
}

.vote-card > p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.vote-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.vote-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vote-btn.vote-yes {
    background: rgba(25, 255, 165, 0.1);
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
}

.vote-btn.vote-yes:hover {
    background: rgba(25, 255, 165, 0.2);
    transform: translateY(-2px);
}

.vote-btn.vote-no {
    background: rgba(255, 77, 77, 0.1);
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
}

.vote-btn.vote-no:hover {
    background: rgba(255, 77, 77, 0.2);
    transform: translateY(-2px);
}

.vote-icon {
    font-size: 1.25rem;
}

.vote-results {
    max-width: 400px;
    margin: 0 auto;
}

.vote-bar {
    height: 12px;
    background: var(--bg-secondary);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

.vote-bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.5s ease;
}

.yes-fill {
    background: var(--accent-green);
}

.vote-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.yes-stat {
    color: var(--accent-green);
}

/* Sidebar */
.review-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 1024px) {
    .review-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .review-sidebar {
        grid-template-columns: 1fr;
    }
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-card:hover {
    border-color: rgba(0, 229, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.sidebar-card:hover::before {
    opacity: 1;
}

.sidebar-card h4 {
    margin-bottom: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

.sidebar-card h4::before {
    content: '';
    width: 3px;
    height: 18px;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-green));
    border-radius: 2px;
}

.geo-proxy-card {
    border-color: rgba(8, 145, 178, 0.28);
    background: linear-gradient(180deg, rgba(8, 145, 178, 0.08) 0%, var(--bg-card) 100%);
}

.geo-proxy-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.geo-proxy-card__header h4 {
    margin-bottom: 6px;
}

.geo-proxy-card__header p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.55;
}

.geo-proxy-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(8, 145, 178, 0.12);
    color: var(--accent-cyan);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.geo-proxy-list {
    display: grid;
    gap: 10px;
}

.geo-proxy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.66);
}

.geo-proxy-row.is-disabled {
    opacity: 0.72;
}

.geo-proxy-row__meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.geo-proxy-row__meta strong {
    font-size: 0.95rem;
}

.geo-proxy-row__meta span,
.geo-proxy-status {
    color: var(--text-secondary);
    font-size: 0.83rem;
}

.geo-proxy-test-btn {
    border: 0;
    border-radius: 10px;
    background: var(--accent-cyan);
    color: #ffffff;
    padding: 10px 14px;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.geo-proxy-test-btn:hover,
.geo-proxy-test-btn:focus-visible {
    background: #06738e;
    transform: translateY(-1px);
}

.geo-proxy-test-btn:disabled {
    opacity: 0.55;
    cursor: wait;
    transform: none;
}

.geo-proxy-result {
    margin-top: 14px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.28);
}

.geo-proxy-result.is-loading {
    border-color: rgba(8, 145, 178, 0.3);
    color: var(--text-secondary);
}

.geo-proxy-result.is-success {
    border-color: rgba(5, 150, 105, 0.28);
    background: rgba(5, 150, 105, 0.08);
}

.geo-proxy-result.is-error {
    border-color: rgba(220, 38, 38, 0.24);
    background: rgba(220, 38, 38, 0.08);
}

.geo-proxy-result p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.88rem;
}

.geo-proxy-result strong {
    color: var(--text-primary);
}

.remote-screenshot-card {
    border-color: rgba(5, 150, 105, 0.24);
    background: linear-gradient(180deg, rgba(5, 150, 105, 0.08) 0%, var(--bg-card) 100%);
}

.remote-screenshot-fieldset {
    margin-bottom: 14px;
}

.remote-screenshot-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-primary);
}

.remote-screenshot-options {
    display: grid;
    gap: 8px;
}

.remote-screenshot-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--text-secondary);
}

.remote-screenshot-check--single {
    margin-bottom: 14px;
}

.remote-screenshot-btn {
    width: 100%;
}

.remote-screenshot-link {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    margin-top: 12px;
    text-decoration: none;
    color: inherit;
}

.remote-screenshot-link img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.28);
}

.remote-screenshot-link span {
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.5;
}

.remote-screenshot-link strong {
    color: var(--text-primary);
}

@media (max-width: 767px) {
    .geo-proxy-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .geo-proxy-test-btn {
        width: 100%;
    }
}

/* Quick Info Card */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.info-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.info-value {
    font-weight: 600;
    text-align: right;
}

.info-value.link {
    color: var(--accent-cyan);
    text-decoration: none;
}

.info-value.link:hover {
    text-decoration: underline;
}

/* Crypto Card */
.crypto-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.crypto-badge {
    padding: 6px 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* CTA Card */
.cta-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(0, 229, 255, 0.08) 50%, rgba(25, 255, 165, 0.05) 100%);
    border-color: var(--accent-cyan);
    border-width: 2px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
}

.cta-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.2),
        0 0 60px rgba(0, 229, 255, 0.15);
}

.cta-bonus {
    text-align: center;
    margin-bottom: 20px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(25, 255, 165, 0.08), rgba(0, 229, 255, 0.05));
    border: 1px solid rgba(25, 255, 165, 0.2);
    border-radius: 12px;
}

.cta-bonus .bonus-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.cta-bonus .bonus-value {
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.cta-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
    margin-bottom: 0;
}

/* Related Card */
.related-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.related-item:hover {
    background: var(--bg-card-hover);
    transform: translateX(4px);
}

.related-icon {
    font-size: 1.25rem;
}

.related-name {
    flex: 1;
    font-weight: 500;
    color: var(--text-primary);
}

.related-rating {
    font-weight: 600;
    color: var(--accent-cyan);
}

/* Trust Card */
.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-list li:last-child {
    border-bottom: none;
}

.trust-list .trust-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 15px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    transition: transform 0.2s ease, color 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
    color: var(--accent-cyan);
}

.lightbox-image {
    max-width: 98vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    border-radius: 4px;
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    text-align: center;
    max-width: 90%;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 12px;
    border-radius: 4px;
}

/* Lightbox Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-nav.lightbox-prev {
    left: 20px;
}

.lightbox-nav.lightbox-next {
    right: 20px;
}

/* Lightbox Counter */
.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 12px;
    border-radius: 20px;
}

/* Evidence thumbnails hover effect */
.evidence-thumb {
    cursor: pointer;
}

.evidence-thumb:hover {
    border-color: var(--accent-cyan) !important;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-nav.lightbox-prev {
        left: 10px;
    }
    
    .lightbox-nav.lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

/* Btn Large */
.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-section {
    animation: fadeInUp 0.6s ease forwards;
}

.review-section:nth-child(2) { animation-delay: 0.1s; }
.review-section:nth-child(3) { animation-delay: 0.2s; }
.review-section:nth-child(4) { animation-delay: 0.3s; }
.review-section:nth-child(5) { animation-delay: 0.4s; }

/* ==========================================
   INVESTIGATION PROMO CARD
   Premium promotional card for False KYC section
   ========================================== */

.investigation-promo-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    padding: 48px;
    background: var(--bg-card);
    border: 2px solid rgba(255, 77, 77, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.investigation-promo-card:hover {
    border-color: rgba(255, 77, 77, 0.6);
    box-shadow: 0 0 40px rgba(255, 77, 77, 0.15);
}

@media (max-width: 900px) {
    .investigation-promo-card {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    
    .promo-visual {
        display: none;
    }
}

.promo-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.promo-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.1) 0%, transparent 60%);
    filter: blur(40px);
}

.promo-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 77, 77, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 77, 77, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.3);
    border-radius: 24px;
    margin-bottom: 20px;
}

.badge-icon {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-red);
    font-family: var(--font-mono);
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-red);
}

.promo-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    margin-bottom: 16px;
}

.title-highlight {
    color: var(--accent-red);
}

.promo-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.fake-examples-strip {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.fake-example {
    padding: 16px 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.fake-example:hover {
    border-color: rgba(255, 77, 77, 0.4);
    transform: translateX(4px);
}

.example-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.example-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 77, 77, 0.1);
    color: var(--accent-red);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.example-name {
    font-weight: 600;
    color: var(--text-primary);
}

.example-details {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.claim-text {
    color: var(--text-muted);
    font-style: italic;
}

.reality-arrow {
    color: var(--accent-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
}

.reality-text {
    color: var(--accent-red);
    font-weight: 500;
}

.promo-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-investigation {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 77, 77, 0.3);
}

.btn-investigation:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 77, 77, 0.4);
    color: white;
}

.promo-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.promo-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warning-icon-large {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-inner {
    width: 88px;
    height: 88px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.16), rgba(255, 107, 107, 0.08));
    border: 1px solid rgba(255, 77, 77, 0.32);
    color: #ff8e8e;
    font-size: 2.5rem;
    font-weight: 700;
    z-index: 2;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.icon-ring {
    position: absolute;
    border: 2px solid rgba(255, 77, 77, 0.3);
    border-radius: 50%;
    animation: ripple 3s ease-out infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.ring-2 {
    width: 140%;
    height: 140%;
    animation-delay: 1.5s;
}

@keyframes ripple {
    0% {
        opacity: 0.6;
        transform: scale(0.8);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Light mode adjustments */
[data-theme="light"] .investigation-promo-card {
    background: var(--bg-secondary);
}

[data-theme="light"] .fake-example {
    background: var(--bg-card);
}

/* ==========================================
   BEST NO-KYC CASINOS PAGE - PREMIUM DESIGN
   ========================================== */

/* Hero Section */
.bnk-hero {
    position: relative;
    padding: calc(var(--header-height) + 40px) 0 60px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.bnk-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bnk-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.bnk-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.3) 0%, transparent 70%);
    top: -150px;
    left: -100px;
}

.bnk-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(25, 255, 165, 0.2) 0%, transparent 70%);
    bottom: -100px;
    right: -50px;
}

.bnk-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.bnk-breadcrumbs {
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bnk-breadcrumbs a {
    color: var(--text-muted);
}

.bnk-breadcrumbs a:hover {
    color: var(--accent-cyan);
}

.bnk-sep {
    margin: 0 8px;
    opacity: 0.5;
}

.bnk-hero-content {
    position: relative;
    max-width: 1000px;
}

.bnk-hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.bnk-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 500;
}

.bnk-badge-live {
    background: rgba(25, 255, 165, 0.1);
    border-color: rgba(25, 255, 165, 0.2);
    color: var(--accent-green);
}

.bnk-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.bnk-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bnk-date {
    display: inline;
    background: none;
    -webkit-text-fill-color: var(--accent-cyan);
}

.bnk-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.bnk-trust-strip {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.bnk-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* KYC Legend Section */
.bnk-legend-section {
    padding: 40px 0;
}

.bnk-legend-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 28px;
}

.bnk-legend-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.bnk-legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.bnk-legend-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
}

.bnk-kyc-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
}

.bnk-kyc-dark-green { background: #059669; }
.bnk-kyc-light-green { background: var(--accent-green); }
.bnk-kyc-orange { background: var(--accent-orange); }
.bnk-kyc-yellow { background: #facc15; }
.bnk-kyc-red { background: var(--accent-red); }

.bnk-legend-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.bnk-legend-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Casino Rankings Section */
.bnk-rankings-section {
    padding-top: 20px;
}

.bnk-rankings-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Casino Card */
.bnk-casino-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.bnk-casino-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 229, 255, 0.15);
}

.bnk-casino-card.bnk-top-pick {
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 215, 0, 0.03) 100%);
}

.bnk-casino-card.bnk-top-pick:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.1);
}

.bnk-top-pick-banner {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #1a1a1a;
    text-align: center;
    padding: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bnk-crown {
    margin-right: 6px;
}

.bnk-card-inner {
    display: grid;
    grid-template-columns: 120px 1fr 220px;
    gap: 24px;
    padding: 28px;
    align-items: start;
}

@media (max-width: 968px) {
    .bnk-card-inner {
        grid-template-columns: 80px 1fr;
        gap: 16px;
        padding: 20px;
    }
    
    .bnk-card-cta-col {
        grid-column: 1 / -1;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        align-items: center;
        justify-content: space-between;
        padding-top: 16px;
        border-top: 1px solid var(--border-color);
    }
    
    .bnk-mini-ratings {
        display: none;
    }
}

@media (max-width: 480px) {
    .bnk-card-inner {
        grid-template-columns: 1fr;
    }
    
    .bnk-card-rank-col {
        display: flex;
        align-items: center;
        gap: 16px;
    }
}

/* Rank & Logo Column */
.bnk-card-rank-col {
    text-align: center;
}

.bnk-rank-badge {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    font-family: var(--font-mono);
}

.bnk-rank-badge.bnk-rank-top {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bnk-casino-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.bnk-casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.bnk-logo-placeholder {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
}

/* Info Column */
.bnk-card-info-col {
    min-width: 0;
}

.bnk-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.bnk-casino-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.bnk-casino-name a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.bnk-casino-name a:hover {
    color: var(--accent-cyan);
}

.bnk-casino-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Feature Tags */
.bnk-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.bnk-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: var(--bg-secondary);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.bnk-tag-speed {
    color: var(--accent-cyan);
    border-color: rgba(0, 229, 255, 0.2);
    background: rgba(0, 229, 255, 0.08);
}

.bnk-tag-vpn {
    color: var(--accent-green);
    border-color: rgba(25, 255, 165, 0.2);
    background: rgba(25, 255, 165, 0.08);
}

.bnk-tag-vpn-partial {
    color: var(--accent-orange);
    border-color: rgba(255, 176, 32, 0.2);
    background: rgba(255, 176, 32, 0.08);
}

.bnk-tag-crypto {
    font-family: var(--font-mono);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
}

.bnk-tag-more {
    color: var(--text-muted);
}

/* Quick Stats */
.bnk-quick-stats {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
}

.bnk-stat-label {
    color: var(--text-muted);
    margin-right: 6px;
}

.bnk-stat-value {
    color: var(--text-primary);
    font-weight: 500;
}

.bnk-stat-cyan {
    color: var(--accent-cyan);
}

/* CTA Column */
.bnk-card-cta-col {
    text-align: center;
}

.bnk-rating-circle {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
}

.bnk-rating-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.bnk-ring-bg {
    fill: none;
    stroke: var(--bg-secondary);
    stroke-width: 3;
}

.bnk-ring-fill {
    fill: none;
    stroke: var(--rating-color, var(--accent-green));
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.6s ease;
}

.bnk-rating-number {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bnk-rating-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--rating-color, var(--accent-green));
    line-height: 1;
}

.bnk-rating-max {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Mini Rating Bars */
.bnk-mini-ratings {
    margin-bottom: 16px;
}

.bnk-mini-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.bnk-mini-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    width: 45px;
    text-align: right;
}

.bnk-mini-bar {
    flex: 1;
    height: 4px;
    background: var(--bg-secondary);
    border-radius: 2px;
    overflow: hidden;
}

.bnk-mini-fill {
    height: 100%;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* CTA Buttons */
.bnk-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bnk-btn-review {
    width: 100%;
}

.bnk-btn-visit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bnk-disclaimer {
    display: block;
    margin-top: 8px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Bonus Strip */
.bnk-bonus-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.08), rgba(25, 255, 165, 0.08));
    border-top: 1px solid var(--border-color);
}

.bnk-bonus-icon {
    font-size: 1.1rem;
}

.bnk-bonus-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-cyan);
}

/* Empty State */
.bnk-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.bnk-empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.bnk-empty-state h3 {
    margin-bottom: 12px;
}

.bnk-empty-state p {
    margin-bottom: 24px;
}

/* What is No-KYC Section */
.bnk-what-section {
    background: var(--bg-secondary);
}

.bnk-what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .bnk-what-grid {
        grid-template-columns: 1fr;
    }
}

.bnk-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.bnk-section-title-center {
    justify-content: center;
    text-align: center;
}

.bnk-title-icon {
    font-size: 1.5rem;
}

.bnk-what-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.bnk-highlight-box {
    background: var(--bg-card);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 28px;
}

.bnk-highlight-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.bnk-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bnk-highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-secondary);
}

.bnk-highlight-list li:last-child {
    margin-bottom: 0;
}

.bnk-highlight-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Benefits Section */
.bnk-benefits-section {
    background: var(--bg-primary);
}

.bnk-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.bnk-benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.bnk-benefit-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.1);
}

.bnk-benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.bnk-benefit-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.bnk-benefit-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Methodology Section */
.bnk-methodology-section {
    background: var(--bg-secondary);
}

.bnk-methodology-card {
    max-width: 900px;
    margin: 0 auto;
}

.bnk-methodology-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.bnk-criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.bnk-criterion-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
}

.bnk-criterion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.bnk-criterion-title {
    font-weight: 600;
    color: var(--accent-cyan);
}

.bnk-criterion-percent {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--text-primary);
}

.bnk-criterion-bar {
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.bnk-criterion-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    border-radius: 3px;
}

.bnk-criterion-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.bnk-methodology-cta {
    text-align: center;
}

.bnk-methodology-cta .btn {
    display: inline-flex;
    gap: 8px;
}

/* FAQ Section */
.bnk-faq-section {
    background: var(--bg-primary);
}

.bnk-faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.bnk-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.bnk-faq-item:hover {
    border-color: var(--accent-cyan);
}

.bnk-faq-question {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--accent-cyan);
}

.bnk-faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Resources Section */
.bnk-resources-section {
    background: var(--bg-secondary);
}

.bnk-resources-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.bnk-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.bnk-resource-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bnk-resource-card:hover {
    border-color: var(--accent-cyan);
    transform: translateX(4px);
}

.bnk-resource-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.bnk-resource-content {
    flex: 1;
    min-width: 0;
}

.bnk-resource-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.bnk-resource-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bnk-resource-arrow {
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.bnk-resource-card:hover .bnk-resource-arrow {
    transform: translate(4px, -4px);
    color: var(--accent-cyan);
}

/* Light mode adjustments for BNK page */
[data-theme="light"] .bnk-hero-title {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

[data-theme="light"] .bnk-casino-card {
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .bnk-casino-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* ================================
   Casino Screenshots Gallery Captions
   ================================ */

.gallery-caption {
    background: rgba(11, 15, 20, 0.95);
    color: #fff;
    padding: 10px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    flex-shrink: 0;
    border-top: 1px solid var(--border-color);
}

/* Image wrapper - fixed aspect ratio for consistent card heights */
.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 900 / 550; /* Desktop screenshot ratio (~1.636) */
    background: #0B0F14; /* Dark background for portrait images */
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item .gallery-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain; /* Portrait images: fit within, show dark bg on sides */
    transition: transform 0.3s ease;
}

/* Desktop/landscape screenshots fill completely */
.gallery-item[data-type="desktop"] .gallery-image {
    object-fit: cover;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.02);
}

/* ================================
   BUSTED BANNER - KYC Required Casinos
   ================================ */

.busted-banner {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #7f1d1d 100%);
    padding: 40px 20px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.busted-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.busted-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.busted-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.busted-icon {
    font-size: 2rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.busted-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.busted-message h2 {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
}

.busted-message p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px;
}

.busted-alternatives h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.alternative-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.alternative-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.alt-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-secondary);
}

.alt-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alt-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
}

.alt-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.alt-name {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
}

.alt-badge {
    font-size: 0.75rem;
    color: var(--accent-green);
    font-weight: 500;
}

.alt-speed {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.alt-rating {
    background: var(--accent-green);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    flex-shrink: 0;
}

/* ================================
   VOTE PROOF UPLOAD FORM
   ================================ */

.vote-proof-form {
    margin-top: 20px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.proof-form-inner {
    background: var(--bg-tertiary);
    border: 2px dashed var(--accent-red);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.proof-form-inner h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.proof-form-inner > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.proof-upload-area {
    position: relative;
    margin-bottom: 20px;
}

.proof-upload-area input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.proof-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 30px 20px;
    background: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.proof-upload-label:hover {
    border-color: var(--accent-cyan);
    background: rgba(var(--accent-cyan-rgb), 0.05);
}

.upload-icon {
    font-size: 2.5rem;
}

.upload-text {
    font-weight: 600;
    color: var(--text-primary);
}

.upload-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.proof-preview {
    position: relative;
    display: inline-block;
    margin-top: 12px;
}

.proof-preview img {
    max-width: 200px;
    max-height: 150px;
    border-radius: 8px;
    border: 2px solid var(--accent-green);
}

.remove-proof {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-red);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proof-form-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.submit-proof-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.proof-upload-area.dragover .proof-upload-label {
    border-color: var(--accent-green);
    background: rgba(var(--accent-green-rgb), 0.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .busted-banner {
        padding: 30px 16px;
    }
    
    .busted-message h2 {
        font-size: 1.4rem;
    }
    
    .busted-text {
        font-size: 1.2rem;
    }
    
    .alternatives-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-form-actions {
        flex-direction: column;
    }
    
    .proof-form-actions .btn {
        width: 100%;
    }
}

/* TX Hash Links */
.tx-link, .tx-hash-link {
    text-decoration: none;
    transition: opacity 0.2s, color 0.2s;
}
.tx-link .tx-hash,
.tx-hash-link .tx-hash {
    text-decoration: underline;
    text-decoration-color: var(--accent-cyan, #4ecdc4);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.tx-link:hover, .tx-hash-link:hover {
    opacity: 0.85;
}
.tx-link:hover .tx-hash,
.tx-hash-link:hover .tx-hash {
    color: var(--accent-cyan, #4ecdc4);
    text-decoration-thickness: 2px;
}
.tx-link code, .tx-hash-link code {
    cursor: pointer;
}

/* TX Value Wrapper with Info Icon */
.tx-value-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.tx-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 600;
    font-style: normal;
    color: var(--text-muted, #8899a6);
    border: 1.5px solid var(--text-muted, #8899a6);
    border-radius: 50%;
    cursor: help;
    transition: all 0.2s ease;
    text-decoration: none !important;
}
.tx-info-icon:hover {
    color: var(--accent-cyan, #4ecdc4);
    border-color: var(--accent-cyan, #4ecdc4);
    transform: scale(1.1);
}

/* ==========================================
   FAQ ACCORDION SECTION
   Collapsible FAQ items with Schema support
   ========================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item-accordion {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-accordion:hover {
    border-color: rgba(0, 229, 255, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: rgba(0, 229, 255, 0.05);
}

.faq-question-text {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-toggle-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-cyan);
    transition: all 0.3s ease;
}

.faq-toggle-icon svg {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle-icon {
    background: var(--accent-cyan);
    color: var(--bg-primary);
}

.faq-question[aria-expanded="true"] .faq-toggle-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.is-open {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.faq-answer-content p {
    margin: 0 0 12px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* FAQ Section Link in Navigation */
.review-nav-links a[href="#faq"] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Mobile FAQ adjustments */
@media (max-width: 768px) {
    .faq-question {
        padding: 16px 18px;
    }
    
    .faq-question-text {
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 0 18px 16px;
        padding-top: 14px;
        font-size: 0.9rem;
    }
    
    .faq-toggle-icon {
        width: 24px;
        height: 24px;
    }
    
    .faq-toggle-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================
   NEW CASINO REVIEW SECTIONS
   Bonus Details, Withdrawal Limits, Game Library,
   Deposit Options, Support & Security, VIP Program
   ========================================== */

/* Bonus & Limits Grid */
.bonus-limits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* Generic Info Card Styling */
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
}

.info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Compact Info List */
.info-list-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-row .info-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.info-row .info-value {
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}

/* Bonus Details Card */
.bonus-details-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(25, 255, 165, 0.03) 100%);
    border-color: rgba(25, 255, 165, 0.2);
}

.bonus-details-card:hover {
    border-color: rgba(25, 255, 165, 0.4);
}

/* Withdrawal Limits Card */
.withdrawal-limits-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 229, 255, 0.03) 100%);
    border-color: rgba(0, 229, 255, 0.2);
}

.withdrawal-limits-card:hover {
    border-color: rgba(0, 229, 255, 0.4);
}

/* Game Stats Strip */
.game-stats-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 24px;
}

.game-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 100px;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
    text-align: center;
    flex: 1;
}

.game-stat-icon {
    font-size: 1.75rem;
}

.game-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
}

.game-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Providers Section */
.providers-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.providers-section h4 {
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-muted);
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.provider-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.provider-tag:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.05);
}

/* Deposit Options Card */
.deposit-options-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.deposit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.deposit-feature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

.deposit-feature.lightning {
    background: linear-gradient(135deg, rgba(255, 176, 32, 0.15) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 1px solid rgba(255, 176, 32, 0.3);
    color: var(--accent-orange);
}

.deposit-feature .feature-icon {
    font-size: 1.25rem;
}

/* Chains Section */
.chains-section h4 {
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-muted);
}

.chains-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chain-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
}

.chain-badge:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

/* Support & Security Grid */
.support-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.support-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 229, 255, 0.03) 100%);
    border-color: rgba(0, 229, 255, 0.2);
}

.support-card:hover {
    border-color: rgba(0, 229, 255, 0.4);
}

.security-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(25, 255, 165, 0.03) 100%);
    border-color: rgba(25, 255, 165, 0.2);
}

.security-card:hover {
    border-color: rgba(25, 255, 165, 0.4);
}

/* VIP Program Card */
.vip-program-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 28px;
}

.vip-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-secondary);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.vip-badge.levels {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 176, 32, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

.vip-badge.invite-only {
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.3);
    color: var(--accent-red);
}

.vip-badge.open {
    background: rgba(25, 255, 165, 0.1);
    border: 1px solid rgba(25, 255, 165, 0.3);
    color: var(--accent-green);
}

.vip-badge .badge-icon {
    font-size: 1.1rem;
}

.vip-benefits h4 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.vip-benefits p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Mobile Adjustments for New Sections */
@media (max-width: 768px) {
    .bonus-limits-grid,
    .support-security-grid {
        grid-template-columns: 1fr;
    }
    
    .game-stats-strip {
        gap: 12px;
        padding: 16px;
    }
    
    .game-stat {
        min-width: 80px;
        padding: 12px 16px;
    }
    
    .game-stat-value {
        font-size: 1.25rem;
    }
    
    .provider-tag,
    .chain-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .deposit-features {
        gap: 10px;
    }
    
    .deposit-feature {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .vip-program-card {
        padding: 20px;
    }
    
    .vip-badges {
        gap: 8px;
    }
    
    .vip-badge {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

/* Light Mode Adjustments */
[data-theme="light"] .info-card {
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .provider-tag,
[data-theme="light"] .chain-badge {
    background: var(--bg-card);
}

[data-theme="light"] .vip-program-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 215, 0, 0.08) 100%);
}

/* ==========================================
   PREMIUM BONUS & LIMITS SECTION REDESIGN
   VIP-style coupon codes, two-column layout,
   premium container with decorative elements
   ========================================== */

/* Premium Container */
.premium-bonus-container {
    position: relative;
    background: linear-gradient(145deg, rgba(21, 29, 40, 0.95) 0%, rgba(26, 37, 51, 0.9) 50%, rgba(21, 29, 40, 0.95) 100%);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(0, 229, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.premium-bonus-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green), #FFD700);
    opacity: 0.8;
}

/* Decorative Corner Accents */
.premium-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    pointer-events: none;
}

.premium-corner::before,
.premium-corner::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.3), transparent);
}

.premium-corner-tl {
    top: 0;
    left: 0;
}
.premium-corner-tl::before {
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
}
.premium-corner-tl::after {
    top: 0;
    left: 0;
    width: 2px;
    height: 40px;
}

.premium-corner-tr {
    top: 0;
    right: 0;
}
.premium-corner-tr::before {
    top: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(-135deg, rgba(25, 255, 165, 0.3), transparent);
}
.premium-corner-tr::after {
    top: 0;
    right: 0;
    width: 2px;
    height: 40px;
    background: linear-gradient(-135deg, rgba(25, 255, 165, 0.3), transparent);
}

.premium-corner-bl {
    bottom: 0;
    left: 0;
}
.premium-corner-bl::before {
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), transparent);
}
.premium-corner-bl::after {
    bottom: 0;
    left: 0;
    width: 2px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), transparent);
}

.premium-corner-br {
    bottom: 0;
    right: 0;
}
.premium-corner-br::before {
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(-135deg, rgba(0, 229, 255, 0.3), transparent);
}
.premium-corner-br::after {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 40px;
    background: linear-gradient(-135deg, rgba(0, 229, 255, 0.3), transparent);
}

/* Two Column Layout */
.bonus-limits-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

@media (max-width: 900px) {
    .bonus-limits-two-column {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.bonus-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Premium Info Cards */
.premium-info-card {
    background: rgba(11, 15, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.premium-info-card:hover {
    border-color: rgba(0, 229, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.card-header-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-icon-premium {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(25, 255, 165, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.card-header-premium h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Premium Info List */
.premium-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.premium-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.premium-info-row:hover {
    background: rgba(0, 229, 255, 0.05);
}

.premium-info-icon {
    font-size: 1.1rem;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.premium-info-label {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.premium-info-value {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    text-align: right;
}

.premium-value-highlight {
    color: var(--accent-green);
    text-shadow: 0 0 10px rgba(25, 255, 165, 0.3);
}

.premium-value-vip {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ==========================================
   VIP BONUS COUPON / VOUCHER STYLE
   ========================================== */
.vip-bonus-coupon {
    position: relative;
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, #1a1f2e 0%, #252b3d 100%);
    border: 2px dashed rgba(255, 215, 0, 0.4);
    border-radius: 16px;
    margin-bottom: 20px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vip-bonus-coupon:hover {
    border-color: rgba(255, 215, 0, 0.7);
    transform: scale(1.02);
    box-shadow: 
        0 8px 32px rgba(255, 215, 0, 0.15),
        0 0 60px rgba(255, 215, 0, 0.1);
}

.vip-bonus-coupon.copied {
    border-color: var(--accent-green);
    box-shadow: 0 0 30px rgba(25, 255, 165, 0.3);
}

/* Coupon Edge Designs (Ticket Perforations) */
.coupon-left-edge,
.coupon-right-edge {
    width: 20px;
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
}

.coupon-left-edge::before,
.coupon-left-edge::after,
.coupon-right-edge::before,
.coupon-right-edge::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--bg-primary);
    border-radius: 50%;
}

.coupon-left-edge::before {
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}
.coupon-left-edge::after {
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}
.coupon-right-edge::before {
    top: -6px;
    right: 50%;
    transform: translateX(50%);
}
.coupon-right-edge::after {
    bottom: -6px;
    right: 50%;
    transform: translateX(50%);
}

/* Dashed separator lines */
.coupon-left-edge,
.coupon-right-edge {
    border-right: 2px dashed rgba(255, 215, 0, 0.2);
}

.coupon-right-edge {
    border-right: none;
    border-left: 2px dashed rgba(255, 215, 0, 0.2);
}

/* Coupon Content */
.coupon-content {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.coupon-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-icon {
    font-size: 1.2rem;
}

.coupon-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 215, 0, 0.9);
}

.coupon-code {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
}

.code-text {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #FFD700, #FFC107, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.copy-code-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #FFD700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-code-btn:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
}

.coupon-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.vip-bonus-coupon.copied .coupon-hint {
    color: var(--accent-green);
    font-weight: 600;
}

/* Coupon Shine Effect */
.coupon-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.vip-bonus-coupon:hover .coupon-shine {
    left: 150%;
}

/* ==========================================
   WITHDRAWAL LIMITS VISUAL DESIGN
   ========================================== */
.withdrawal-limits-premium-card {
    height: 100%;
}

.withdrawal-limits-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.limit-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.limit-tier:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.limit-tier-min {
    border-left-color: var(--accent-cyan);
}

.limit-tier-daily {
    border-left-color: var(--accent-green);
}

.limit-tier-weekly {
    border-left-color: #FFD700;
}

.limit-tier-monthly {
    border-left-color: #FF6B6B;
}

.limit-tier-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.limit-tier-icon {
    font-size: 1.2rem;
}

.limit-tier-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.limit-tier-value {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Limits Note */
.limits-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 10px;
}

.limits-note .note-icon {
    font-size: 1rem;
}

.limits-note .note-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .premium-bonus-container {
        padding: 24px 18px;
        border-radius: 18px;
    }
    
    .premium-corner {
        display: none;
    }
    
    .card-header-premium {
        gap: 10px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
    
    .card-icon-premium {
        width: 38px;
        height: 38px;
        font-size: 1.25rem;
    }
    
    .card-header-premium h4 {
        font-size: 1.05rem;
    }
    
    .premium-info-row {
        padding: 10px 12px;
    }
    
    .premium-info-label {
        font-size: 0.85rem;
    }
    
    .premium-info-value {
        font-size: 0.9rem;
    }
    
    .vip-bonus-coupon {
        margin-bottom: 16px;
    }
    
    .coupon-content {
        padding: 16px 18px;
    }
    
    .coupon-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .code-text {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .coupon-code {
        padding: 10px 18px;
    }
    
    .copy-code-btn {
        width: 32px;
        height: 32px;
    }
    
    .limit-tier {
        padding: 14px 14px;
    }
    
    .limit-tier-value {
        font-size: 1rem;
    }
}

/* Light Mode Adjustments */
[data-theme="light"] .premium-bonus-container {
    background: linear-gradient(145deg, rgba(245, 247, 250, 0.98) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(245, 247, 250, 0.98) 100%);
    border-color: rgba(0, 153, 204, 0.2);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.08),
        0 0 60px rgba(0, 153, 204, 0.05);
}

[data-theme="light"] .premium-info-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .premium-info-row {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .premium-info-row:hover {
    background: rgba(0, 153, 204, 0.05);
}

[data-theme="light"] .vip-bonus-coupon {
    background: linear-gradient(135deg, #fefbf3 0%, #fff8e7 100%);
    border-color: rgba(204, 153, 0, 0.4);
}

[data-theme="light"] .coupon-left-edge,
[data-theme="light"] .coupon-right-edge {
    background: linear-gradient(135deg, rgba(204, 153, 0, 0.1), rgba(204, 132, 0, 0.05));
}

[data-theme="light"] .coupon-left-edge::before,
[data-theme="light"] .coupon-left-edge::after,
[data-theme="light"] .coupon-right-edge::before,
[data-theme="light"] .coupon-right-edge::after {
    background: var(--bg-secondary);
}

[data-theme="light"] .code-text {
    background: linear-gradient(135deg, #cc9900, #b38600, #cc9900);
    -webkit-background-clip: text;
    background-clip: text;
}

[data-theme="light"] .limit-tier {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .limit-tier:hover {
    background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .limits-note {
    background: rgba(0, 153, 204, 0.05);
    border-color: rgba(0, 153, 204, 0.15);
}

/* ==========================================
   CRYPTO ICON STYLES
   ========================================== */

/* Crypto icon container */
.crypto-icon {
    transition: transform 0.2s ease;
}

.crypto-icon:hover {
    transform: scale(1.1);
}

/* Ensure crypto card icons are properly sized */
#cryptocurrencies .crypto-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
}

/* Responsive crypto icons */
@media (max-width: 768px) {
    #cryptocurrencies .crypto-icon {
        width: 40px;
        height: 40px;
    }
}

/* Popular crypto bar icons */
#statistics .crypto-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* ==========================================
   PAYMENT NOTES STYLES
   ========================================== */

/* Payment Note Component */
.payment-note {
    transition: all 0.2s ease;
}

.payment-note:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.12) 0%, rgba(255, 193, 7, 0.05) 100%) !important;
    border-color: rgba(255, 193, 7, 0.3) !important;
}

/* Responsive payment note */
@media (max-width: 640px) {
    .payment-note {
        padding: 16px 18px !important;
        gap: 12px !important;
    }
    
    .payment-note-icon {
        font-size: 1.2rem !important;
    }
    
    .payment-note-content p {
        font-size: 0.9rem !important;
    }
}

/* Light theme support */
[data-theme="light"] .payment-note {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.12) 0%, rgba(255, 193, 7, 0.06) 100%) !important;
    border-color: rgba(255, 152, 0, 0.3) !important;
}

[data-theme="light"] .payment-note:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.18) 0%, rgba(255, 193, 7, 0.08) 100%) !important;
}

[data-theme="light"] .payment-note-label {
    color: rgba(230, 140, 0, 1) !important;
}

[data-theme="light"] .payment-note-content p {
    color: var(--text-primary) !important;
}

/* Forum Auth Page Spacing */
.auth-card {
    margin-top: 40px;
}

.auth-header h1 {
    margin-top: 0;
}


/* ==========================================
   MULTI-CURRENCY MINIMUM DEPOSITS/WITHDRAWALS
   ========================================== */

/* Sidebar multi-currency display */
.info-item.multi-currency-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.info-item.multi-currency-item .info-label {
    font-weight: 600;
    color: var(--accent-cyan);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.multi-currency-values {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    width: 100%;
}

.currency-min {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-tertiary, rgba(255,255,255,0.05));
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.currency-min .currency-code {
    font-weight: 600;
    color: var(--accent-cyan);
}

.currency-min .currency-amount {
    color: var(--text-primary);
    font-family: var(--font-mono, monospace);
}

/* Light theme adjustments */
[data-theme="light"] .currency-min {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .currency-min .currency-code {
    color: var(--accent-cyan);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .multi-currency-values {
        gap: 4px 8px;
    }
    
    .currency-min {
        font-size: 0.8rem;
        padding: 3px 6px;
    }
}

/* ==========================================
   COMPREHENSIVE MOBILE RESPONSIVENESS FIX
   Fixes text wrapping, button spacing, card layouts
   ========================================== */

@media (max-width: 768px) {
    /* Hero section mobile adjustments */
    .hero {
        padding: calc(var(--header-height) + 30px) 0 30px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        word-wrap: break-word;
    }
    
    /* Test cards - make them stack and wrap text */
    .tests-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .test-card {
        padding: 20px;
    }
    
    .test-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .casino-name {
        font-size: 1rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
    }
    
    /* Latest Test box fixes */
    .test-card h3,
    .test-card h4 {
        font-size: 1rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        max-width: 100%;
    }
    
    .test-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    .test-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Button improvements for mobile */
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-review,
    .btn-investigation {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
        word-wrap: break-word;
        white-space: normal;
        text-align: center;
        min-height: 44px;
    }
    
    .hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    /* Card titles and text wrapping */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal;
        max-width: 100%;
    }
    
    h1 { font-size: clamp(1.5rem, 5vw, 2rem); }
    h2 { font-size: clamp(1.3rem, 4vw, 1.75rem); }
    h3 { font-size: clamp(1.1rem, 3.5vw, 1.4rem); }
    
    /* Casino logo sizing */
    .casino-logo {
        width: 40px;
        height: 40px;
    }
    
    img.casino-logo {
        width: 40px;
        height: 40px;
    }
    
    /* Withdrawal proof card mobile */
    .withdrawal-proof {
        padding: 16px;
    }
    
    .proof-rows {
        gap: 8px;
    }
    
    .proof-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 8px 0;
    }
    
    .proof-label,
    .proof-value {
        font-size: 0.85rem;
        word-wrap: break-word;
        width: 100%;
    }
    
    /* Section headers mobile */
    .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Trust signals mobile */
    .trust-signals {
        flex-direction: column;
        gap: 10px;
        padding: 16px;
    }
    
    .trust-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    /* News cards mobile */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .news-card {
        padding: 16px;
    }
    
    .news-card h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    /* FAQ mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-item {
        padding: 16px;
    }
    
    .faq-item h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    /* Container padding mobile */
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    /* Top casinos table mobile improvements */
    .top-casinos-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .casino-table {
        min-width: 100%;
        font-size: 0.85rem;
    }
    
    .casino-table th,
    .casino-table td {
        padding: 12px 8px;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .casino-cell {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    /* Ratings mobile */
    .rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    
    .rating-value {
        font-size: 1.1rem;
    }
    
    /* How we test grid mobile */
    .how-we-test-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .test-method-card {
        padding: 20px;
    }
    
    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    /* Verification banner mobile */
    .verification-banner {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .verification-item {
        width: 100%;
    }
    
    /* Quick facts strip mobile */
    .quick-facts-strip {
        flex-direction: column;
        padding: 16px;
        gap: 12px;
    }
    
    .quick-fact {
        width: 100%;
    }
    
    /* Premium rating card mobile */
    .rating-card-premium {
        padding: 20px;
    }
    
    .overall-rating-display {
        margin-bottom: 20px;
    }
    
    .rating-circle {
        width: 120px;
        height: 120px;
    }
    
    .rating-number .rating-value {
        font-size: 2rem;
    }
    
    /* Casino identity mobile */
    .casino-identity {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    .casino-logo-large {
        width: 80px;
        height: 80px;
    }
    
    .casino-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        text-align: center;
    }
    
    .casino-badges {
        justify-content: center;
    }
    
    /* Review navigation mobile */
    .review-nav-links {
        overflow-x: auto;
        scrollbar-width: thin;
    }
    
    .review-nav-links a {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    /* Test result cards mobile */
    .test-result-card {
        padding: 16px;
    }
    
    .test-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .test-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    /* Pros cons mobile */
    .pros-cons-premium {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pros-list li,
    .cons-list li {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    /* Screenshot gallery mobile */
    .screenshot-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Verdict card mobile */
    .verdict-card-premium {
        padding: 24px;
    }
    
    .verdict-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    .verdict-score {
        font-size: 3rem;
    }
    
    .verdict-content p {
        font-size: 1rem;
    }
    
    /* Resources grid mobile */
    .resources-grid-premium {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .resource-card-premium {
        padding: 16px;
    }
    
    /* Sidebar mobile adjustments */
    .review-sidebar {
        gap: 16px;
    }
    
    .sidebar-card {
        padding: 16px;
    }
    
    .sidebar-card h4 {
        font-size: 0.95rem;
    }
    
    /* Info list mobile */
    .info-list {
        gap: 10px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding-bottom: 10px;
    }
    
    .info-label,
    .info-value {
        font-size: 0.85rem;
        text-align: left;
        width: 100%;
    }
    
    /* Crypto grid mobile */
    .crypto-grid {
        gap: 6px;
    }
    
    .crypto-badge {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    /* CTA card mobile */
    .cta-card {
        padding: 16px;
    }
    
    .cta-bonus {
        padding: 12px;
        margin-bottom: 16px;
    }
    
    .cta-bonus .bonus-value {
        font-size: 1rem;
    }
    
    /* Related list mobile */
    .related-list {
        gap: 10px;
    }
    
    .related-item {
        padding: 10px;
        gap: 10px;
    }
    
    .related-icon {
        font-size: 1.1rem;
    }
    
    .related-name {
        font-size: 0.9rem;
    }
    
    /* Investigation promo card mobile */
    .investigation-promo-card {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 20px;
    }
    
    .promo-title {
        font-size: clamp(1.3rem, 5vw, 1.75rem);
    }
    
    .promo-description {
        font-size: 1rem;
    }
    
    .fake-example {
        padding: 12px 16px;
    }
    
    .example-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    /* BNK casino card mobile */
    .bnk-card-inner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }
    
    .bnk-card-rank-col {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .bnk-rank-badge {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .bnk-casino-logo {
        width: 60px;
        height: 60px;
        margin: 0;
    }
    
    .bnk-casino-name {
        font-size: 1.2rem;
    }
    
    .bnk-casino-excerpt {
        font-size: 0.9rem;
    }
    
    .bnk-feature-tags {
        gap: 6px;
    }
    
    .bnk-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .bnk-quick-stats {
        flex-direction: column;
        gap: 8px;
        font-size: 0.85rem;
    }
    
    .bnk-card-cta-col {
        border-top: 1px solid var(--border-color);
        padding-top: 16px;
    }
    
    .bnk-rating-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
    
    .bnk-rating-value {
        font-size: 1.5rem;
    }
    
    .bnk-cta-buttons {
        gap: 8px;
    }
    
    /* BNK legend mobile */
    .bnk-legend-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .bnk-legend-item {
        padding: 10px;
    }
    
    /* BNK benefits grid mobile */
    .bnk-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .bnk-benefit-card {
        padding: 20px;
    }
    
    /* BNK criteria grid mobile */
    .bnk-criteria-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Busted banner mobile */
    .busted-banner {
        padding: 24px 16px;
    }
    
    .busted-badge {
        padding: 10px 20px;
    }
    
    .busted-icon {
        font-size: 1.5rem;
    }
    
    .busted-text {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .busted-message h2 {
        font-size: 1.3rem;
    }
    
    .alternatives-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .alternative-card {
        padding: 12px 16px;
    }
    
    /* Bonus limits grid mobile */
    .bonus-limits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Game stats strip mobile */
    .game-stats-strip {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .game-stat {
        padding: 12px 16px;
    }
    
    /* Force text wrapping on all elements */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Prevent text overflow */
    .test-card *,
    .casino-card *,
    .info-card *,
    .sidebar-card * {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Allow wrapping for specific text elements */
    p, h1, h2, h3, h4, h5, h6, li, span, div {
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        text-overflow: clip !important;
    }
}

/* Extra small mobile devices (phones < 480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .test-card,
    .news-card,
    .sidebar-card {
        padding: 12px;
    }
    
    .btn,
    .btn-primary,
    .btn-secondary {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.1rem; }
    h4 { font-size: 1rem; }
    
    .section {
        padding: 30px 0;
    }
    
    .casino-table {
        font-size: 0.8rem;
    }
    
    .casino-table th,
    .casino-table td {
        padding: 8px 6px;
    }
}
