/* 
  * Pandido Canada - Frontend Styles
  * Developed for 2026 Gaming Standards
  * Author: Development Team
  * Last Updated: Dec 2025
  * Notes: Using Geologica for better readability on high-DPI screens
  */

:root {
    /* Main Theme Colors - Verified for accessibility */
    --bg-primary: #0e326d;
    --bg-secondary: #0a2552;
    --bg-header: #0e326d;
    --accent-green: #529600;
    --accent-green-dark: #286300;
    --accent-gold: #e6c989;
    --text-white: #ffffff;
    --text-blue-light: #ceedfc;
    --line-color: rgba(255, 255, 255, 0.1);
    --glass: rgba(255, 255, 255, 0.05);

    /* UI Measurements */
    --radius: 8px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --maxw: 1200px;
    --mcta-h: 64px;

    /* Interactive Elements Gradients */
    --btn-blue-gradient: linear-gradient(180deg, #1e69d2 0%, #104a9e 100%);
    --btn-blue-glow: 0 0 20px rgba(30, 105, 210, 0.4);
    --btn-green-gradient: linear-gradient(180deg, #529600 0%, #286300 100%);
    --btn-green-glow: 0 0 20px rgba(82, 150, 0, 0.4);
}

/* Global Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg-primary);
    color: var(--text-white);
    font: 16px/1.7 'Geologica', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 64px 0;
    content-visibility: auto;
}

h1,
h2,
h3 {
    font-weight: 900;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

h1 {
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.1;
    margin: 0 0 16px;
}

h2 {
    font-size: clamp(22px, 3.6vw, 32px);
    margin: 0 0 14px;
}

h3 {
    font-size: clamp(18px, 2.6vw, 22px);
    margin: 18px 0 10px;
}

/* header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg-header);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.header__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand img {
    height: 35px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav a {
    color: var(--text-white);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 0;
}

.nav a:hover,
.nav a.active {
    color: var(--accent-gold);
}

.nav .btn {
    padding-left: 50px;
    padding-right: 50px;
}

/* Language Switcher Dropdown */
.lang-switcher {
    position: relative;
    display: inline-block;
    margin-left: 20px;
    z-index: 150;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 40px;
    padding: 0 12px;
    color: #000;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 8px;
    background: var(--accent-gold);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(230, 201, 137, 0.3);
}


.lang-switcher:hover .lang-toggle {
    background: #fff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(10, 37, 82, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--line-color);
    border-radius: 12px;
    padding: 8px;
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 38px;
    min-width: 60px;
    padding: 0 12px;
    margin: 2px 0;
    color: var(--text-white) !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
}

.lang-item:hover {
    background: var(--glass);
    color: var(--accent-gold) !important;
}

.lang-item.active {
    background: rgba(230, 201, 137, 0.1);
    color: var(--accent-gold) !important;
    cursor: default;
}

@media (max-width: 960px) {
    .lang-switcher {
        margin-left: 0;
        margin-top: 25px;
        display: flex;
        justify-content: center;
    }

    .lang-dropdown {
        left: 50%;
        right: auto;
        transform: translate(-50%, 10px);
    }

    .lang-switcher:hover .lang-dropdown {
        transform: translate(-50%, 0);
    }

    .expert-score-card {
        padding: 10px 15px;
        gap: 12px;
        width: 100%;
        justify-content: center;
    }

    .expert-score-value {
        font-size: 24px;
    }

    .expert-section {
        flex-direction: column;
        text-align: center;
    }
}


.burger {
    display: none;
    /* Hidden on desktop */
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border: 1px solid var(--line-color);
    border-radius: 8px;
    cursor: pointer;
    color: white;
}

@media (max-width: 960px) {
    .burger {
        display: flex;
        /* Show on mobile */
    }
}

@media (max-width: 960px) {
    .nav {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #0a2552;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 0 40px;
        gap: 0;
        z-index: 10000;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav.nav--open {
        left: 0;
    }

    .nav a {
        color: #ffffff !important;
        font-size: 16px !important;
        font-weight: 700;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 18px 30px !important;
        width: 100%;
        display: block !important;
        text-align: left;
        text-decoration: none;
        background: transparent;
        cursor: pointer;
    }

    .nav a:active {
        background: rgba(255, 255, 255, 0.2);
    }

    .nav a:hover,
    .nav a.active {
        background: rgba(255, 255, 255, 0.1);
        color: var(--accent-gold) !important;
    }

    .nav .btn {
        margin: 20px 30px;
        padding: 14px 30px !important;
        width: calc(100% - 60px);
        border-radius: 50px;
        border-bottom: none;
        text-align: center;
    }

    .burger {
        z-index: 10001;
        position: relative;
    }

    body.menu-open {
        overflow: hidden;
    }

    .lang-switcher {
        margin-left: 0;
        margin-top: 20px;
        padding: 0 30px;
        justify-content: flex-start;
    }
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 44px;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 15px;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
    pointer-events: none;
}

.btn:hover::after {
    left: 140%;
}

.btn--green {
    background: var(--btn-green-gradient);
    color: white;
    box-shadow: var(--btn-green-glow);
    animation: pulse 3s infinite;
}

.btn--blue {
    background: var(--btn-blue-gradient);
    color: white;
    box-shadow: var(--btn-blue-glow);
}

.btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.btn--blue:hover {
    box-shadow: 0 8px 25px rgba(30, 105, 210, 0.6);
}

.btn--green:hover {
    box-shadow: 0 8px 25px rgba(82, 150, 0, 0.6);
}

.btn--ghost {
    border: 1px solid var(--line-color);
    background: transparent;
    color: white;
}

.btn--xl {
    padding: 22px 56px;
    font-size: 20px;
}

.btn--yellow {
    background: var(--accent-gold);
    color: #000;
}

.pandido-glow {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%),
        url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    display: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 960px;
    background: rgba(255, 255, 255, 0.1);
    /* Прозрачное белое стекло */
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 60px 50px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
}

.hero__lead {
    font-size: 20px;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

.hero__cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}

/* cards */
.card {
    background: var(--bg-secondary);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-category {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    margin-right: 8px;
}

.game-category.live {
    background: #ff4444;
    color: white;
}

.game-category.table {
    background: var(--accent-green);
    color: white;
}

.game-card {
    position: relative;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--line-color);
    aspect-ratio: 158/220;
    display: block;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 158/220;
    overflow: hidden;
}

.game-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-image {
    transform: scale(1.1);
}

.game-card-info {
    display: none;
}


.game-rank {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-gold);
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.game-badge--new {
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--accent-green);
    color: white;
    padding: 4px 35px;
    font-size: 10px;
    font-weight: 900;
    transform: rotate(45deg);
    z-index: 5;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* game sections */
.game-section {
    margin-bottom: 40px;
}

.game-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.game-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin: 0;
    color: var(--text-white);
    text-transform: uppercase;
}

.game-section-title svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.game-section-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-view-all {
    color: var(--text-blue-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 10px;
}

.btn-scroll {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--line-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-scroll:hover {
    background: var(--line-color);
    color: var(--accent-gold);
}

.games-scroll-container {
    position: relative;
    width: 100%;
}

.games-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 160px;
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.games-scroll::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.games-scroll-single-row {
    grid-template-rows: 1fr;
}

/* category strip */
.category-strip {
    background: var(--bg-secondary);
    padding: 15px 0;
    border-bottom: 1px solid var(--line-color);
    overflow-x: auto;
    white-space: nowrap;
}

.category-item {
    color: var(--text-blue-light);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-right: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.category-item:hover,
.category-item.active {
    color: var(--accent-green);
}

.category-item svg {
    width: 24px;
    height: 24px;
}

/* footer */
.footer {
    background: var(--bg-secondary);
    padding: 40px 0;
    text-align: center;
    color: var(--text-blue-light);
    font-size: 14px;
}

/* mobile enhancements */
@media (max-width: 480px) {
    .hero {
        min-height: 480px;
        padding: 60px 15px;
    }

    .hero__inner {
        padding: 30px 15px;
        width: 100%;
        background: rgba(10, 22, 40, 0.6);
        /* Чуть темнее для мобильных */
    }

    .hero__cta {
        flex-direction: column;
    }

    .header__wrap {
        padding: 0 15px;
    }
}

/* Grid utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 40px 0;
}

.section.card {
    background: var(--bg-secondary);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
}

.breadcrumbs {
    padding: 16px 0;
    color: var(--text-blue-light);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--accent-gold);
    text-decoration: none;
}

.breadcrumbs span {
    margin: 0 8px;
    opacity: 0.5;
}

.promo-code-block {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(251, 191, 36, 0.4);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

/* sticky mobile CTA */
.m-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    background: linear-gradient(180deg, rgba(14, 50, 109, 0.8), rgba(14, 50, 109, 0.95));
    border-top: 1px solid var(--line-color);
    display: none;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    backdrop-filter: blur(10px);
}

.m-cta .btn {
    min-width: 200px;
}

@media (max-width: 880px) {
    .m-cta {
        display: flex;
    }
}

@media (max-width: 880px) {

    .grid-2,
    .grid-3,
    .grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Premium UI Components */
.trust-badge-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
}

.expert-score-card {
    background: rgba(14, 50, 109, 0.6);
    border: 1px solid var(--accent-gold);
    padding: 15px 25px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.expert-score-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
}

.expert-score-label {
    text-align: left;
}

.expert-score-label div:first-child {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.expert-score-label div:last-child {
    font-size: 16px;
    font-weight: 700;
}

/* Bonus Voucher Card */
.bonus-voucher {
    background: linear-gradient(135deg, #1a4a9e 0%, #0a2552 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.bonus-voucher::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 201, 137, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-voucher__title {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 20px;
    color: #fff;
}

.bonus-voucher__amount {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(230, 201, 137, 0.3);
}

.bonus-voucher__code {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed var(--accent-gold);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 30px;
}

/* Score Bars for Pros/Cons */
.score-bar-group {
    margin-bottom: 20px;
}

.score-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
}

.score-bar-bg {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    background: var(--accent-gold);
    border-radius: 4px;
}

.provider-logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.provider-logo-grid img {
    height: 25px;
    filter: grayscale(1) brightness(2);
    transition: all 0.3s;
}

.provider-logo-grid img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

/* Sticky Bottom Navigation for Mobile (Buyer's Choice) */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(14, 50, 109, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--line-color);
    padding: 12px 20px;
    z-index: 1000;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
        gap: 10px;
    }

    .mobile-sticky-cta .btn {
        flex: 1;
        padding: 14px;
        font-size: 14px;
        border-radius: 12px;
    }

    body {
        padding-bottom: 70px;
        /* Space for the footer */
    }
}

/* Enhanced Expert Badge Styles */
.expert-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(82, 150, 0, 0.1);
    color: #529600;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(82, 150, 0, 0.3);
    margin-bottom: 15px;
}

.expert-verified-badge svg {
    width: 16px;
    height: 16px;
}

/* Floating "Claim Bonus" bubble for Desktop */
.floating-side-cta {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 1200px) {
    .floating-side-cta {
        display: none;
    }
}

/* Speed Comparison Table */
.speed-table-container {
    margin: 40px 0;
    overflow-x: auto;
}

.speed-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-secondary);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line-color);
}

.speed-table th {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    text-align: left;
    font-size: 14px;
    color: var(--text-blue-light);
    text-transform: uppercase;
}

.speed-table td {
    padding: 20px;
    border-bottom: 1px solid var(--line-color);
}

.speed-table tr:last-child td {
    border-bottom: none;
}

.payout-rank {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    color: var(--accent-gold);
}

.rank-pill {
    background: var(--accent-green);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Live Activity Ticker */
.live-activity {
    background: rgba(82, 150, 0, 0.1);
    border: 1px solid rgba(82, 150, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 14px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

/* Quick Info Grid */
.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 30px 0;
}

.quick-info-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line-color);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}

.quick-info-item h4 {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.quick-info-item p {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.verdict-tag {
    display: inline-block;
    background: linear-gradient(90deg, #22c55e, #10b981);
    color: white;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 12px;

}

@media (max-width: 600px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Smaller hero buttons on mobile */
    .hero .btn {
        padding: 12px 24px !important;
        font-size: 14px !important;
        min-width: auto;
    }

    .hero h1 {
        font-size: 24px !important;
    }

    .hero__inner {
        padding: 40px 20px !important;
    }

    .hero {
        padding: 40px 10px;
        min-height: auto;
    }

    .hero__inner {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .bonus-voucher {
        padding: 24px;
        margin: 20px 0;
    }

    .bonus-voucher__amount {
        font-size: 40px;
    }

    .quick-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .quick-info-item {
        padding: 12px;
    }

    .section {
        padding: 30px 0;
    }

    .section.card {
        padding: 20px 15px;
    }

    .trust-badge-container {
        gap: 8px;
    }

    .trust-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .expert-score-card {
        padding: 12px;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .expert-score-value {
        font-size: 24px;
    }

    .category-strip {
        padding: 10px 0;
        scrollbar-width: none;
    }

    .category-strip::-webkit-scrollbar {
        display: none;
    }
}

/* Fix for horizontal scroll issues on tables */
.table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
    border-radius: 12px;
}

/* Ensure images don't break layout */
.game-card-image {
    display: block;
    width: 100%;
}

/* Better mobile menu spacing */
@media (max-width: 960px) {
    .nav.nav--open {
        padding-top: 100px;
        justify-content: flex-start;
    }
}