/* =====================================================
   VERDE CASINO HR — Main Stylesheet
   Colors: #003D2B (dark green), #BEF424 (lime), #FFF (white)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
    --green-dark: #003D2B;
    --green-mid: #005C42;
    --green-light: #007A58;
    --lime: #BEF424;
    --lime-hover: #d4ff2e;
    --lime-dark: #9bc41a;
    --white: #ffffff;
    --off-white: #f5f5f0;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --text-light: #999999;
    --gold: #FFD700;
    --gold-light: #FFF0A0;
    --card-bg: #ffffff;
    --border: #e8e8e8;
    --shadow: 0 4px 24px rgba(0, 61, 43, 0.10);
    --shadow-hover: 0 8px 40px rgba(0, 61, 43, 0.18);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: 0.25s ease;
    --max-width: 1320px;
    --header-h: 72px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: var(--green-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--lime);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    color: var(--green-dark);
    letter-spacing: -1px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--lime);
}

/* Main Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.10);
}

.main-nav a.active {
    color: var(--lime);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-signin {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.40);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-signin:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-signup {
    background: var(--lime);
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 700;
    padding: 9px 22px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}

.btn-signup:hover {
    background: var(--lime-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(190, 244, 36, 0.40);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    margin: 5px 0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    background: var(--green-dark);
    position: relative;
    overflow: hidden;
    padding: 40px 24px 60px;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(190, 244, 36, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(0, 122, 88, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(190, 244, 36, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 15%, rgba(190, 244, 36, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 60%, rgba(255, 255, 255, 0.2) 0%, transparent 100%),
        radial-gradient(2px 2px at 90% 70%, rgba(190, 244, 36, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(190, 244, 36, 0.15);
    border: 1px solid rgba(190, 244, 36, 0.30);
    color: var(--lime);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero h1 .highlight {
    color: var(--lime);
}

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lime);
    color: var(--green-dark);
    font-weight: 800;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--lime-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(190, 244, 36, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-size: 26px;
    font-weight: 900;
    color: var(--lime);
    display: block;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.60);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-height: 380px;
    object-fit: cover;
}

.hero-bonus-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--lime);
    color: var(--green-dark);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 11px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(190, 244, 36, 0.5);
    animation: pulse-badge 2s ease-in-out infinite;
    line-height: 1.2;
}

.hero-bonus-badge strong {
    font-size: 18px;
    display: block;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--green-mid);
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 13px;
    font-weight: 500;
}

.trust-item .icon {
    color: var(--lime);
    font-size: 18px;
}

/* ============================================================
   GAME FILTER BAR
   ============================================================ */
.game-filter {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--header-h);
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.game-filter-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.game-filter-inner::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-muted);
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    font-family: inherit;
}

.filter-btn:hover {
    color: var(--green-dark);
}

.filter-btn.active {
    color: var(--green-dark);
    border-bottom-color: var(--lime);
}

/* ============================================================
   SECTIONS / LAYOUT
   ============================================================ */
section {
    padding: 64px 24px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 61, 43, 0.08);
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================================
   BONUS CARDS
   ============================================================ */
.bonus-section {
    background: var(--off-white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bonus-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.bonus-card-header {
    background: var(--green-dark);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 200px;
}

.bonus-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    position: relative;
    z-index: 0;
}

.bonus-card-header::after {
    display: none;
}


.bonus-amount {
    display: none;
}

.bonus-type {
    display: table;
    background: var(--green-dark);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 11px 5px;
    border-radius: 20px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 8px;
    margin-top: 0;
}


.bonus-card-body {
    padding: 24px;
}

.bonus-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    color: #1a1a1a;
    font-weight: 500;
}

.bonus-feature .check {
    color: #16a34a;
    font-weight: 800;
    font-size: 15px;
}

.btn-bonus {
    display: block;
    text-align: center;
    background: var(--lime);
    color: var(--green-dark);
    font-weight: 700;
    font-size: 15px;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
}

.btn-bonus:hover {
    background: var(--lime-hover);
}

.bonus-terms {
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    margin-top: 8px;
}

/* ============================================================
   GAME GRID
   ============================================================ */
.games-section {
    background: var(--white);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.game-card {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 3/4;
    background: var(--green-dark);
}

.game-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 61, 43, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-card-name {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}

.game-card-play {
    background: var(--lime);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    text-align: center;
}

.game-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--lime);
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    text-transform: uppercase;
}

/* Game placeholder cards */
.game-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 12px;
}

.game-placeholder .game-emoji {
    font-size: 32px;
}

.show-more {
    text-align: center;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-dark);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-show-more:hover {
    background: var(--green-mid);
}

/* ============================================================
   FEATURES / WHY VERDE
   ============================================================ */
.features-section {
    background: var(--green-dark);
    color: var(--white);
}

.features-section .section-header h2 {
    color: var(--white);
}

.features-section .section-badge {
    background: rgba(190, 244, 36, 0.15);
    color: var(--lime);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(190, 244, 36, 0.30);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(190, 244, 36, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
    border: 1px solid rgba(190, 244, 36, 0.20);
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.feature-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* ============================================================
   PAYMENT LOGOS
   ============================================================ */
.payment-section {
    background: var(--off-white);
    padding: 40px 24px;
}

.payment-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.payment-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
}

.payment-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.payment-logo {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

.payment-logo:hover {
    box-shadow: var(--shadow);
}

.payment-logo .logo-icon-small {
    font-size: 20px;
}

/* ============================================================
   REVIEW / RECENZIJA CONTENT
   ============================================================ */
.review-section {
    background: var(--white);
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.review-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.review-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--green-dark);
}

.review-content p {
    font-size: 15.5px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 14px;
}

.review-content ul {
    margin: 12px 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #444;
}

.review-content ul li::before {
    content: '✓';
    color: var(--green-dark);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Rating Sidebar */
.rating-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.rating-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.rating-overall {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.rating-score {
    font-size: 64px;
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1;
}

.rating-max {
    font-size: 24px;
    color: var(--text-light);
}

.rating-stars {
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 2px;
    margin: 8px 0;
}

.rating-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.rating-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rating-item-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.rating-bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--lime);
    border-radius: 3px;
    transition: width 1s ease;
}

.btn-cta-big {
    display: block;
    text-align: center;
    background: var(--lime);
    color: var(--green-dark);
    font-weight: 800;
    font-size: 17px;
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-top: 24px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
}

.btn-cta-big:hover {
    background: var(--lime-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(190, 244, 36, 0.40);
}

.cta-note {
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    margin-top: 8px;
}

/* ============================================================
   INFO TABLE
   ============================================================ */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.info-table tr {
    border-bottom: 1px solid var(--border);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 12px 8px;
    font-size: 14.5px;
    vertical-align: top;
}

.info-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 40%;
    white-space: nowrap;
}

.info-table td:last-child {
    color: #444;
}

/* Comparison Table */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.compare-table th {
    background: var(--green-dark);
    color: var(--white);
    padding: 14px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
}

.compare-table th:first-child {
    width: 40%;
}

.compare-table td {
    padding: 13px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.compare-table tr:hover td {
    background: var(--off-white);
}

.compare-table .yes {
    color: #16a34a;
    font-weight: 700;
}

.compare-table .no {
    color: #dc2626;
    font-weight: 700;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    background: var(--off-white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: var(--green-dark);
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15.5px;
    color: var(--text-dark);
    gap: 16px;
}

.faq-question:hover {
    color: var(--green-dark);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    transition: var(--transition);
    color: var(--green-dark);
    font-weight: 700;
}

.faq-item.open .faq-icon {
    background: var(--green-dark);
    color: var(--lime);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    border-top: 1px solid var(--border);
}

.faq-item.open .faq-answer {
    display: block;
    padding-top: 16px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 14.5px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 14px;
}

.testimonial-date {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================================
   RESPONSIBLE GAMBLING
   ============================================================ */
.responsible-bar {
    background: #1a1a1a;
    padding: 16px 24px;
    text-align: center;
}

.responsible-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.age-badge {
    background: #dc2626;
    color: var(--white);
    font-weight: 900;
    font-size: 16px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.responsible-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.responsible-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.responsible-links a {
    color: rgba(255, 255, 255, 0.50);
    font-size: 12px;
    text-decoration: underline;
    transition: var(--transition);
}

.responsible-links a:hover {
    color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.70);
    padding: 60px 24px 32px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.60);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--lime);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-license {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.40);
    max-width: 700px;
    line-height: 1.6;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.40);
    white-space: nowrap;
}

.footer-seo-text {
    margin-top: 32px;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.40);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 24px;
}

.footer-seo-text h2 {
    font-size: 15px;
    font-weight: 700;
    color: inherit;
    margin-bottom: 8px;
    opacity: 0.85;
}

.footer-seo-text p {
    color: inherit;
    opacity: 0.75;
}

/* ============================================================
   PAGE CONTENT (inner pages)
   ============================================================ */
.page-hero {
    background:
        linear-gradient(to bottom, rgba(8, 28, 14, 0.78) 0%, rgba(13, 42, 20, 0.85) 100%),
        url('/images/page_hero_bg.webp') center center / cover no-repeat;
    padding: 60px 24px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(190, 244, 36, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(190, 244, 36, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.50);
    justify-content: center;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.50);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--lime);
}

.breadcrumb span {
    color: var(--lime);
}

/* Main content + sidebar layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
    padding: 64px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.main-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 32px 0 14px;
    color: var(--text-dark);
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 24px 0 10px;
    color: var(--green-dark);
}

.main-content p {
    font-size: 15.5px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 14px;
}

.main-content ul {
    margin: 12px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.main-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.main-content ul li::before {
    content: '✓';
    color: var(--green-dark);
    font-weight: 700;
    flex-shrink: 0;
}

/* Sidebar CTA */
.sidebar {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.sidebar-card.featured {
    border-color: var(--green-dark);
    border-width: 2px;
}

.sidebar-card.featured h3 {
    color: var(--green-dark);
}

/* Alert boxes */
.alert {
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 14.5px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.alert-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.alert-info {
    background: #e8f5e9;
    border-left: 4px solid var(--green-dark);
    color: #2d5a27;
}

.alert-warning {
    background: #fff8e1;
    border-left: 4px solid #f59e0b;
    color: #92400e;
}

.alert-tip {
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
    color: #166534;
}

/* Step list */
.step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--lime);
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 92vw);
    height: 100%;
    background: var(--green-dark);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-nav.open {
    transform: translateX(0);
}

/* backdrop overlay */
.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.32s ease;
    pointer-events: none;
}

.mobile-nav-backdrop.open {
    opacity: 1;
    pointer-events: all;
    cursor: pointer;
}

/* Remove panel class if exists (no-op) */
.mobile-nav-panel {
    display: contents;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}


.mobile-nav-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.mobile-nav-links a {
    color: rgba(255, 255, 255, 0.80);
    font-size: 20px;
    font-weight: 600;
    padding: 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--lime);
}

.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .bonus-grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
}

/* ── 1380px: compact nav (скрыть Prijava, уменьшить шрифт) ── */
@media (max-width: 1380px) {
    .header-cta .btn-signin {
        display: none;
    }

    .main-nav a {
        padding: 8px 10px;
        font-size: 13px;
    }

    .btn-signup {
        font-size: 13px;
        padding: 9px 16px;
    }

    .header-inner {
        gap: 12px;
    }
}

/* ── ≤1100px: hamburger — скрыть desktop nav ── */
@media (max-width: 1100px) {
    :root {
        --header-h: 62px;
    }

    .main-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .header-cta {
        display: none;
    }
}

/* ── 768px: full mobile layout ── */
@media (max-width: 768px) {
    .hero {
        padding: 48px 20px 40px;
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-image {
        order: -1;
    }

    .hero-bonus-badge {
        width: 80px;
        height: 80px;
        top: -10px;
        right: -10px;
        font-size: 10px;
    }

    .hero-bonus-badge strong {
        font-size: 15px;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .trust-bar-inner {
        gap: 20px;
        justify-content: flex-start;
    }

    section {
        padding: 48px 20px;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .content-layout {
        padding: 40px 20px;
    }
}


@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   FEATURED SIDEBAR CTA CARD
   ============================================================ */
.rating-card.featured {
    background: var(--green-dark);
    border-color: var(--lime);
    color: var(--white);
}

.rating-card.featured .info-table tr {
    border-bottom-color: rgba(255, 255, 255, 0.10);
}

.rating-card.featured .info-table td {
    color: rgba(255, 255, 255, 0.70);
}

.rating-card.featured .info-table td:first-child {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.rating-card.featured .info-table strong {
    color: var(--lime);
}

.rating-card.featured .rating-item-label {
    color: rgba(255, 255, 255, 0.80);
}

.rating-card.featured .rating-bar {
    background: rgba(255, 255, 255, 0.15);
}

.rating-card.featured .sidebar-card h3 {
    color: var(--lime);
}

/* Download section responsive */
@media (max-width: 600px) {
    div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* Promo code highlight box */
.promo-code-box {
    background: var(--off-white);
    border: 2px dashed var(--green-dark);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    margin-bottom: 28px;
}

.promo-code-value {
    background: var(--green-dark);
    color: var(--lime);
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 4px;
    padding: 18px 36px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin: 12px 0 16px;
    transition: var(--transition);
    cursor: text;
    user-select: all;
}

.promo-code-value:hover {
    box-shadow: 0 0 0 3px rgba(190, 244, 36, 0.4);
}

/* Info grid blocks */
.info-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.info-grid-4 .info-block {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.info-grid-4 .info-block .num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--lime);
    display: block;
}

.info-grid-4 .info-block .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .info-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .info-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .promo-code-value {
        font-size: 1.4rem;
        letter-spacing: 2px;
        padding: 14px 20px;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease both;
}

.animate-in:nth-child(2) {
    animation-delay: 0.1s;
}

.animate-in:nth-child(3) {
    animation-delay: 0.2s;
}

.animate-in:nth-child(4) {
    animation-delay: 0.3s;
}