/* ===========================
   CSS Reset & Base Styles
   =========================== */

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

:root {
    /* Color Palette */
    --bg-primary: #050816;
    --bg-surface: #0C1020;
    --bg-panel: #151A2D;
    --accent-gold: #F6C453;
    --accent-teal: #34D2C8;
    --text-primary: #F5F7FB;
    --text-secondary: #C3CAD9;
    --text-muted: #8A92A8;
    --border-color: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-heading: 'Segoe UI', 'Poppins', 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --glow-gold: 0 0 20px rgba(246, 196, 83, 0.3);
    --glow-teal: 0 0 20px rgba(52, 210, 200, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-gold);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/* ===========================
   Utility Classes
   =========================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
    margin: var(--spacing-sm) auto 0;
    border-radius: 2px;
}

.logo,
.footer-logo {
    width: 100%;
    max-width: 200px;
}

.logo img,
.footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-logo {
    margin-bottom: 20px;
}

/* ===========================
   Button Styles
   =========================== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-gold);
    color: #0C1020;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: #ffcf6b;
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
    color: #0C1020;
}

.btn-secondary {
    background: var(--accent-teal);
    color: #0C1020;
}

.btn-secondary:hover {
    background: #4de0d6;
    transform: translateY(-2px);
    box-shadow: var(--glow-teal);
}

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

.btn-ghost:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ===========================
   Header Styles
   =========================== */

/* Header Disclaimer */
.header-disclaimer {
    background-color: var(--accent-gold);
    color: #000;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.header-disclaimer p {
    margin: 0;
    color: #000;
}

.site-header {
    position: sticky;
    top: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    gap: var(--spacing-md);
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    white-space: nowrap;
}

.main-nav ul {
    display: flex;
    gap: var(--spacing-lg);
}

.main-nav a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-gold);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ===========================
   Hero Section
   =========================== */

.hero-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-surface) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246, 196, 83, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left h1 {
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.trust-points li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
}

.trust-points .icon {
    width: 24px;
    height: 24px;
    color: var(--accent-teal);
    flex-shrink: 0;
}

.hero-cta-group {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Hero Right - Animated Image */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    animation: floatImage 3s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    /* box-shadow: var(--shadow-lg); */
    filter: drop-shadow(0 10px 40px rgba(246, 196, 83, 0.2));
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Featured Casino Card in Hero */
.featured-casino-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    /* overflow: hidden; */

    /* Entrance Animation */
    animation: fadeInUp 0.8s ease-out, floatCard 3s ease-in-out infinite;
    animation-delay: 0s, 0.8s;

    /* Subtle glow effect */
    transition: all 0.4s ease;
}

.featured-casino-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(246, 196, 83, 0.1) 0%, transparent 70%);
    animation: rotateGlow 8s linear infinite;
    pointer-events: none;
}

.featured-casino-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 12px 40px rgba(246, 196, 83, 0.3), 0 0 30px rgba(246, 196, 83, 0.2);
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.badge-top {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: #0C1020;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
    z-index: 10;

    /* Pulse animation */
    animation: pulseBadge 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(246, 196, 83, 0.7);
}

@keyframes pulseBadge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(246, 196, 83, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(246, 196, 83, 0);
    }
}

.casino-logo-placeholder {
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.featured-casino-card .casino-logo-placeholder {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.featured-casino-card .casino-logo-placeholder img {
    transition: transform 0.3s ease;
}

.featured-casino-card:hover .casino-logo-placeholder img {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.casino-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.rating-display {
    text-align: center;
    margin: var(--spacing-md) 0;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    display: inline-block;

    /* Scale in animation */
    animation: scaleIn 0.6s ease-out 0.4s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

.stars {
    text-align: center;
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);

    /* Shimmer effect */
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(246, 196, 83, 0.5);
    }

    50% {
        opacity: 0.8;
        text-shadow: 0 0 20px rgba(246, 196, 83, 0.8);
    }
}

.bonus-highlight {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.bonus-highlight strong {
    color: var(--accent-teal);
}

.featured-casino-card .bonus-highlight {
    animation: slideInUp 0.6s ease-out 0.5s both;
}

.featured-casino-card .btn-full {
    animation: slideInUp 0.6s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.featured-casino-card .btn-full::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.featured-casino-card .btn-full:hover::before {
    width: 300px;
    height: 300px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Editor's Picks Section
   =========================== */

.editors-picks {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-surface);
}

.picks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.pick-card {
    background: var(--bg-panel);
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    position: relative;
    transition: all 0.3s ease;
}

.pick-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-gold);
}

.pick-ribbon {
    background: var(--accent-gold);
    color: #0C1020;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: var(--spacing-md);
}

.ribbon-teal {
    background: var(--accent-teal);
}

.casino-name-large {
    font-size: 1.75rem;
    font-weight: 700;
    margin: var(--spacing-md) 0;
    text-align: center;
}

.rating-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.rating-score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stars-small {
    color: var(--accent-gold);
    font-size: 1rem;
}

.pick-highlights {
    margin: var(--spacing-md) 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.pick-highlights li {
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--text-secondary);
}

.pick-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 700;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.payment-icon {
    height: 24px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.featured-casino-card .payment-methods {
    animation: fadeIn 0.8s ease-out 0.7s both;
}

.featured-casino-card .payment-icon {
    animation: bounceIn 0.6s ease-out both;
}

.featured-casino-card .payment-icon:nth-child(1) {
    animation-delay: 0.8s;
}

.featured-casino-card .payment-icon:nth-child(2) {
    animation-delay: 0.9s;
}

.featured-casino-card .payment-icon:nth-child(3) {
    animation-delay: 1s;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(20px);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 0.8;
        transform: scale(1) translateY(0);
    }
}

.payment-methods-small {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.payment-icon-small {
    height: 18px;
    width: auto;
    opacity: 0.7;
}

/* ===========================
   Comparison Table Section
   =========================== */

.comparison-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-primary);
}

.comparison-table {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    /* overflow: hidden; */
}

.table-header {
    display: grid;
    grid-template-columns: 80px 200px 1fr 1fr 120px 150px;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--bg-panel);
    border-bottom: 2px solid var(--border-color);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    align-items: center;
}

.table-header .col-casino {
    text-align: center;
}

.sort-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-left: 4px;
    opacity: 0.5;
}

.table-row {
    display: grid;
    grid-template-columns: 80px 200px 1fr 1fr 120px 150px;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
    align-items: center;
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 0 0 1px var(--accent-teal);
}

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

/* Featured Table Row with Ribbon */
.table-row-featured {
    position: relative;
    background: rgba(246, 196, 83, 0.03);
    border: 2px solid rgba(246, 196, 83, 0.3);
}

.table-row-featured:hover {
    background: rgba(246, 196, 83, 0.05);
    box-shadow: inset 0 0 0 2px var(--accent-gold);
}

.table-ribbon {
    position: absolute;
    top: -12px;
    left: 78px;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: #0C1020;
    padding: 0.35rem 1.25rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.8125rem;
    white-space: nowrap;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);

    /* Pulse animation */
    animation: pulseRibbon 2.5s ease-in-out infinite;
}

@keyframes pulseRibbon {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(246, 196, 83, 0.4);
    }

    50% {
        box-shadow: 0 2px 8px rgba(246, 196, 83, 0.7), 0 0 0 4px rgba(246, 196, 83, 0.2);
    }
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: #0C1020;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
}

.casino-logo {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.casino-logo-small {
    max-width: 120px;
    height: auto;
    display: block;
}

.col-bonus {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-align: center;
}

.col-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.col-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col-casino {
    padding: 10px 5px;
    border: none;
    border-radius: 16px;
    display: flex;
    justify-content: center;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(52, 210, 200, 0.1);
    border: 1px solid rgba(52, 210, 200, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    color: var(--accent-teal);
    white-space: nowrap;
}

.tag-deposit {
    background: rgba(246, 196, 83, 0.15);
    border-color: rgba(246, 196, 83, 0.4);
    color: var(--accent-gold);
    font-weight: 600;
}

.col-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.rating-large {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.stars-tiny {
    font-size: 0.875rem;
    color: var(--accent-gold);
}

/* ===========================
   Detailed Reviews Section
   =========================== */

.detailed-reviews {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-surface);
}

.review-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(52, 210, 200, 0.3);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.review-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.review-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.review-title-area h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-gold);
}

.review-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.review-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.pros,
.cons {
    background: rgba(255, 255, 255, 0.02);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.pros {
    border-left: 3px solid var(--accent-teal);
}

.cons {
    border-left: 3px solid #e74c3c;
}

.pros h4,
.cons h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.pros h4 {
    color: var(--accent-teal);
}

.cons h4 {
    color: #e74c3c;
}

.pros ul,
.cons ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.pros li,
.cons li {
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 700;
}

.cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

/* ===========================
   How We Rate Section
   =========================== */

.how-we-rate {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-primary);
}

.rating-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.rating-intro {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.rating-intro p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.rating-factors {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.factor-card {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.factor-card:hover {
    border-color: var(--accent-teal);
    box-shadow: var(--glow-teal);
}

.factor-icon {
    flex-shrink: 0;
}

.factor-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-teal);
}

.factor-content {
    flex: 1;
}

.factor-content h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.factor-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-sm);
}

.factor-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.factor-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
    border-radius: 3px;
    transition: width 1s ease;
}

/* ===========================
   Trust Strip Section
   =========================== */

.trust-strip {
    padding: var(--spacing-lg) 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-content {
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
}

.trust-badge svg {
    width: 28px;
    height: 28px;
    color: var(--accent-teal);
}

.trust-disclaimer {
    color: var(--text-muted);
    font-size: 0.875rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================
   Informative Content Sections
   =========================== */

.info-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-primary);
}

.info-article {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    transition: all 0.3s ease;
}

.info-article.legal ul {
    list-style: disc;
    margin-left: 30px;
}

.info-article.legal ul li:last-child {
    margin-bottom: 10px;
}

.info-article:last-child {
    margin-bottom: 0;
}

.info-article:hover {
    border-color: rgba(246, 196, 83, 0.2);
    box-shadow: var(--shadow-md);
}

.info-article h2 {
    color: var(--accent-gold);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.info-article p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.info-article p:last-child {
    margin-bottom: 0;
}

.info-article strong {
    color: var(--accent-teal);
    font-weight: 600;
}

/* ===========================
   FAQ Section
   =========================== */

.faq-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-surface);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: transparent;
    color: var(--text-primary);
    font-size: 1.0625rem;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-question .chevron {
    width: 24px;
    height: 24px;
    color: var(--accent-teal);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-lg) var(--spacing-md);
}

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

/* ===========================
   Footer Section
   =========================== */

.site-footer {
    background: var(--bg-surface);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    align-items: start;
}

.footer-column h3 {
    font-size: 1rem;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-column a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-teal);
}

.footer-disclaimer p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-responsible {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: var(--spacing-lg);
}

.responsible-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.age-badge,
.gamble-aware {
    padding: 0.5rem 1.5rem;
    background: var(--bg-panel);
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-sm);
    font-weight: 700;
    color: var(--accent-gold);
}

.responsible-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.footer-bottom p {
    margin-bottom: var(--spacing-xs);
}

.affiliate-notice {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===========================
   Responsive Design
   =========================== */

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* Table becomes cards on tablet */
    .table-header {
        display: none;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }

    .table-row-featured {
        padding-top: calc(var(--spacing-md) + 8px);
    }

    .table-ribbon {
        top: -10px;
        left: 50%;
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }

    .col-rank {
        position: absolute;
        top: var(--spacing-md);
        right: var(--spacing-md);
    }

    .table-row-featured .col-rank {
        top: calc(var(--spacing-md) + 8px);
    }

    .col-casino {
        font-size: 1.25rem;
        padding-top: var(--spacing-sm);
    }

    .col-features {
        order: 3;
    }

    .col-rating {
        order: 2;
        flex-direction: row;
        justify-content: flex-start;
        gap: var(--spacing-sm);
    }

    .col-cta {
        order: 4;
    }

    .col-cta .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-xxl: 3rem;
    }

    /* Header */
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-surface);
        padding: var(--spacing-xl) var(--spacing-lg);
        transition: left 0.3s ease;
        z-index: 9999;
        box-shadow: var(--shadow-lg);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Hero */
    .trust-points {
        grid-template-columns: 1fr;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .hero-image-container {
        max-width: 100%;
        padding: var(--spacing-md);
    }

    .hero-right {
        /* order: -1; */
        margin-bottom: var(--spacing-lg);
    }
    .hero-subtitle {
        display: none;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    /* Detailed Reviews */
    .review-header {
        grid-template-columns: 1fr;
    }

    .review-image {
        max-width: 100%;
    }

    .review-pros-cons {
        grid-template-columns: 1fr;
    }

    .payment-methods-small {
        flex-wrap: wrap;
    }

    /* Info Articles */
    .info-article {
        padding: var(--spacing-lg);
    }

    .info-article h2 {
        font-size: 1.5rem;
    }

    .info-article p {
        font-size: 0.9375rem;
    }
    .rank-badge {
        display: none;
    }
    .col-bonus {
        text-align: left;
    }

    .col-casino {
        padding: 5px;
        justify-content: start;
    }
    /* .hero-section {
        display: none;
    } */
    .comparison-section {
        padding: var(--spacing-xl) 0;
    }
}

@media (max-width: 480px) {
    .info-article {
        padding: var(--spacing-md);
    }

    .info-article h2 {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-md);
    }

    .info-article p {
        font-size: 0.875rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .rating-number {
        font-size: 2.5rem;
    }

    .casino-name-large {
        font-size: 1.375rem;
    }
}

/* ===========================
   Accessibility & Focus States
   =========================== */

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        animation-delay: 0ms !important;
    }

    .featured-casino-card {
        animation: none !important;
    }

    .featured-casino-card::before {
        animation: none !important;
    }

    .badge-top,
    .rating-number,
    .stars,
    .bonus-highlight,
    .payment-icon,
    .table-ribbon {
        animation: none !important;
    }
}

/* ===========================
   Popup Styles
   =========================== */

/* Age Verification Popup */
.age-verify-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeInBackdrop 0.3s ease-in-out;
}

.age-verify-backdrop.active {
    display: flex;
}

@keyframes fadeInBackdrop {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.age-verify-modal {
    background: linear-gradient(135deg, var(--bg-panel) 0%, var(--bg-surface) 100%);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(246, 196, 83, 0.3), 0 0 0 1px var(--accent-gold);
    animation: slideUpModal 0.4s ease-out;
    position: relative;
    overflow: hidden;
}

@keyframes slideUpModal {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.age-verify-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-teal) 100%);
}

.age-verify-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(246, 196, 83, 0.4);
}

.age-verify-icon svg {
    width: 45px;
    height: 45px;
    fill: #000;
}

.age-verify-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.age-verify-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.age-verify-terms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
    text-align: left;
}

.age-verify-terms input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-gold);
    flex-shrink: 0;
}

.age-verify-terms label {
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

.age-verify-terms a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

.age-verify-terms a:hover {
    text-decoration: underline;
    color: var(--accent-teal);
}

.age-verify-error {
    display: none;
    color: #ff4444;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.age-verify-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.age-verify-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
}

.age-verify-btn.confirm {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-teal) 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(246, 196, 83, 0.4);
}

.age-verify-btn.confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 196, 83, 0.6);
}

.age-verify-btn.deny {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.age-verify-btn.deny:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.age-rejection-modal {
    text-align: center;
}

.age-rejection-modal .age-verify-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.age-rejection-modal p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Cookie Consent Popup */
#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    animation: slideUpCookie 0.4s ease-out;
}

@keyframes slideUpCookie {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-box {
    background: linear-gradient(135deg, var(--bg-panel) 0%, var(--bg-surface) 100%);
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--accent-gold);
    padding: 20px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.cookie-box .dismiss-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cookie-box .dismiss-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.cookie-box .dismiss-btn::before,
.cookie-box .dismiss-btn::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
}

.cookie-box .dismiss-btn::before {
    transform: rotate(45deg);
}

.cookie-box .dismiss-btn::after {
    transform: rotate(-45deg);
}

.cookie-message {
    text-align: center;
    margin-bottom: 20px;
    padding-right: 40px;
}

.cookie-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.cookie-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.cookie-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-actions .cookie-action {
    padding: 12px 24px;
    min-width: 140px;
    font-size: 14px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cookie-actions .cookie-action.primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-teal) 100%);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(246, 196, 83, 0.4);
}

.cookie-actions .cookie-action.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 196, 83, 0.6);
}

.cookie-actions .cookie-action.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-actions .cookie-action.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .age-verify-modal {
        padding: 30px 20px;
        width: 95%;
    }

    .age-verify-title {
        font-size: 24px;
    }

    .age-verify-description {
        font-size: 13px;
    }

    .age-verify-terms {
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 8px;
    }

    .age-verify-btn {
        font-size: 14px;
        padding: 12px 24px;
        width: 100%;
    }

    .cookie-box {
        padding: 20px 15px;
    }

    .cookie-message {
        padding-right: 35px;
    }

    .cookie-title {
        font-size: 18px;
    }

    .cookie-desc {
        font-size: 13px;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions .cookie-action {
        width: 100%;
        min-width: auto;
    }
    .header-disclaimer p {
        font-size: 11px;
    }
}

@media (min-width: 768px) {
    .age-verify-modal {
        padding: 50px 40px;
    }

    .age-verify-title {
        font-size: 32px;
    }

    .age-verify-description {
        font-size: 16px;
    }

    .cookie-box {
        padding: 25px 40px;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .cookie-message {
        flex: 1;
        margin-bottom: 0;
        text-align: left;
    }

    .cookie-title {
        font-size: 22px;
    }

    .cookie-desc {
        font-size: 15px;
    }

    .cookie-actions {
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    .cookie-box {
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 16px 16px 0 0;
    }
}