/* ========================================
   CAZEUS CASINO ESPAÑA - COMPLETE CSS
   Fixed to match HTML classes
======================================== */

/* ========================================
   1. RESET & BASE
======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { 
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0d0d1a;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: #d4af37; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Cinzel', serif; line-height: 1.3; color: #fff; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* Prevent horizontal overflow */
.main-content,
.section,
.hero,
.footer {
    max-width: 100%;
    overflow-x: hidden;
}

/* Ensure grids don't overflow */
.games-grid,
.providers-grid,
.payments-grid,
.bonus-grid,
.steps-grid,
.whyus-grid,
.gamecats-grid,
.footer-grid {
    max-width: 100%;
}

/* ========================================
   2. LAYOUT
======================================== */
.main-content {
    margin-left: 220px;
    padding: 90px 30px 100px;
    min-height: 100vh;
}

/* ========================================
   3. HEADER
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 220px;
    right: 0;
    height: 70px;
    background: #0d0d1a;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 30px;
    gap: 20px;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 36px; }
.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 2px;
}

.header-search {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.header-search input {
    width: 100%;
    padding: 12px 20px 12px 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
}

.header-search input:focus {
    outline: none;
    border-color: rgba(212,175,55,0.3);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,0.4);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.header-nav a {
    padding: 10px 16px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.header-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.header-nav a.active {
    color: #d4af37;
    background: rgba(212,175,55,0.1);
}

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

.btn-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
}

.flag { font-size: 16px; }

/* ========================================
   4. BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #0a0a1a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.3);
    color: #0a0a1a;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.btn-outline:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 10px 20px;
    font-size: 13px;
}

.btn-secondary:hover {
    background: rgba(212,175,55,0.1);
}

/* ========================================
   5. SIDEBAR
======================================== */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 220px;
    background: #0a0a14;
    border-right: 1px solid rgba(255,255,255,0.06);
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.sidebar-logo {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sidebar-logo .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-logo .logo-img {
    height: 32px;
    width: auto;
}

.sidebar-logo .logo-text {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 2px;
}

.sidebar-nav {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.nav-item:hover {
    color: #fff;
    background: rgba(255,255,255,0.03);
}

.nav-item.active {
    color: #d4af37;
    background: rgba(212,175,55,0.1);
    border-left-color: #d4af37;
}

.nav-icon { font-size: 18px; width: 24px; text-align: center; }
.nav-text { flex: 1; }
.nav-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 16px; }

.sidebar-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 10px 0;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
}

.sidebar-overlay.active { display: block; }

/* ========================================
   6. MOBILE NAVIGATION
======================================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.mobile-tabs {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #0a0a14;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
}

.mobile-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    text-align: center;
}

.mobile-tab.active { color: #d4af37; }
.tab-icon { font-size: 20px; line-height: 1; }

/* ========================================
   7. HERO SLIDER
======================================== */
.hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-slider {
    position: relative;
    height: 400px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    display: flex;
    align-items: center;
    padding: 40px 50px;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,26,0.95) 0%, rgba(10,10,26,0.6) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212,175,55,0.2);
    color: #d4af37;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta svg {
    width: 20px;
    height: 20px;
    stroke: #d4af37;
    transition: transform 0.3s;
}

.btn-cta:hover svg { transform: translateX(6px); }

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
}

.hero-arrow:hover {
    background: rgba(212,175,55,0.3);
    border-color: #d4af37;
}

.hero-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    padding: 0;
    transition: all 0.3s;
}

.hero-dot:hover { background: rgba(255,255,255,0.7); }
.hero-dot.active { background: #d4af37; transform: scale(1.2); }

/* ========================================
   8. CATEGORIES SECTION
======================================== */
.categories-section {
    margin-bottom: 32px;
}

.categories-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.categories-scroll::-webkit-scrollbar { display: none; }

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.2s;
}

.category-btn:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.category-btn.active {
    background: rgba(212,175,55,0.15);
    border-color: #d4af37;
    color: #d4af37;
}

.category-icon { font-size: 16px; }

/* ========================================
   9. SECTION HEADERS
======================================== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 500;
}

.section-link svg {
    width: 16px;
    height: 16px;
}

.section-link:hover { color: #e5c349; }

/* ========================================
   10. GAMES GRID - FIXED CLASS NAMES
======================================== */
.games-section {
    margin-bottom: 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a2e;
    transition: all 0.3s;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* FIXED: Using .game-image instead of .game-card-image */
.game-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

/* FIXED: Using .game-overlay */
.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .game-overlay { opacity: 1; }

.btn-play {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #0a0a1a;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-play:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}

/* FIXED: Using .game-info instead of .game-card-info */
.game-info {
    padding: 12px;
}

/* FIXED: Using .game-name instead of .game-card-title */
.game-name {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* FIXED: Using .game-provider */
.game-provider {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
}

/* Game Badges */
.game-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.game-badge.hot { background: #ef4444; color: #fff; }
.game-badge.new { background: #22c55e; color: #fff; }
.game-badge.jackpot { background: #d4af37; color: #0a0a1a; }
.game-badge.live { background: #ef4444; color: #fff; }

/* Live Casino */
.live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

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

/* Live Indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    background: rgba(239,68,68,0.2);
    border: 1px solid rgba(239,68,68,0.5);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 16px;
}

/* Page Hero - Inner Pages */
.page-hero {
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(10,10,26,0.95) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.page-hero h1 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #fff;
}

.page-hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.page-hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Cinzel', serif;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

/* Live Categories */
.live-categories {
    margin-bottom: 24px;
}

.categories-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
}

.category-btn:hover {
    border-color: rgba(212,175,55,0.3);
    color: #fff;
}

.category-btn.active {
    background: rgba(212,175,55,0.15);
    border-color: #d4af37;
    color: #d4af37;
}

.category-icon {
    font-size: 18px;
}

/* Filters Bar */
.filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.filters-left {
    display: flex;
    gap: 12px;
}

.filter-dropdown {
    position: relative;
}

.filter-dropdown select {
    padding: 10px 36px 10px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    appearance: none;
    cursor: pointer;
}

.players-count {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
    z-index: 2;
}

/* ========================================
   11. PROVIDERS GRID
======================================== */
.providers-section {
    margin-bottom: 40px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.provider-logo {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    transition: all 0.3s;
}

.provider-logo:hover {
    border-color: rgba(212,175,55,0.3);
}

.provider-logo img {
    max-height: 36px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(50%);
    opacity: 0.8;
    transition: all 0.3s;
}

.provider-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========================================
   11.5 JACKPOT SECTIONS
======================================== */

/* Jackpot Counters Grid */
.jackpot-counters-section {
    margin-bottom: 48px;
}

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

.jackpot-counter {
    background: linear-gradient(135deg, rgba(20,20,40,0.9) 0%, rgba(10,10,26,0.95) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jackpot-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
}

.jackpot-counter.mega::before {
    background: linear-gradient(90deg, #d4af37, #ffd700);
}

.jackpot-counter.major::before {
    background: linear-gradient(90deg, #9333ea, #c084fc);
}

.jackpot-counter.minor::before {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.jackpot-type {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.jackpot-counter.mega .jackpot-type { color: #d4af37; }
.jackpot-counter.major .jackpot-type { color: #c084fc; }
.jackpot-counter.minor .jackpot-type { color: #60a5fa; }

.jackpot-amount {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.jackpot-counter.mega .jackpot-amount {
    color: #d4af37;
    font-size: 36px;
}

.jackpot-game {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.jackpot-counter .btn {
    width: 100%;
}

/* Jackpot Game Cards */
.top-jackpots-section {
    margin-bottom: 48px;
}

.jackpot-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.jackpot-game-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.jackpot-game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.jackpot-game-card.featured {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(10,10,26,0.95) 100%);
}

.jackpot-game-card .game-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a1a;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.jackpot-game-card .game-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
}

.jackpot-game-card .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jackpot-game-card:hover .game-image img {
    transform: scale(1.05);
}

.jackpot-game-card .game-info {
    padding: 20px;
}

.jackpot-game-card .game-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.jackpot-game-card .game-provider {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.jackpot-current {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.jackpot-current .label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.jackpot-current .amount {
    font-size: 20px;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Cinzel', serif;
}

.jackpot-game-card .game-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.jackpot-game-card .btn-block {
    width: 100%;
}

/* ========================================
   11.6 PROMOTIONS SECTION
======================================== */

/* Featured Promos Grid */
.promos-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.promo-featured-card {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: rgba(20,20,40,0.9);
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
}

.promo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.promo-tag {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a1a;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.promo-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.promo-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

/* Calendar Grid */
.calendar-section {
    margin-bottom: 48px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.calendar-day {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.calendar-day:hover {
    border-color: rgba(212,175,55,0.3);
    background: rgba(212,175,55,0.05);
}

.day-header {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.day-name {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.day-icon {
    font-size: 24px;
}

.day-promo h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.day-promo p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

/* ========================================
   11.7 TOURNAMENTS SECTION
======================================== */

.active-tournaments-section {
    margin-bottom: 48px;
}

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

.tournament-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.tournament-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.tournament-card.featured {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(10,10,26,0.95) 100%);
}

.tournament-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.tournament-card.featured .tournament-badge {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a1a;
}

.tournament-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
}

.tournament-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tournament-card:hover .tournament-image img {
    transform: scale(1.05);
}

.tournament-info {
    padding: 20px;
}

.tournament-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.tournament-provider {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.tournament-prize {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prize-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.prize-amount {
    font-size: 20px;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Cinzel', serif;
}

.tournament-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
}

.time-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.countdown {
    font-size: 14px;
    font-weight: 600;
    color: #ef4444;
    font-family: 'Courier New', monospace;
}

.tournament-details {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.tournament-card .btn {
    width: 100%;
}

/* ========================================
   11.8 SPORTS BETTING SECTION
======================================== */

/* Sports Bonus Card */
.sports-bonus-section {
    margin-bottom: 48px;
}

.sports-bonus-card {
    background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(10,10,26,0.95) 100%);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.sports-bonus-card .bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a1a;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.bonus-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.bonus-amount {
    text-align: center;
}

.bonus-amount .percent {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Cinzel', serif;
    line-height: 1;
}

.bonus-amount .upto {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
}

.bonus-details {
    text-align: left;
    max-width: 300px;
}

.bonus-details p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
}

.bonus-details ul {
    list-style: none;
    padding: 0;
}

.bonus-details li {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
}

/* Sports Grid */
.sports-categories-section {
    margin-bottom: 48px;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.sport-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.sport-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.3);
    background: rgba(212,175,55,0.05);
}

.sport-card.popular {
    border-color: rgba(212,175,55,0.3);
    background: rgba(212,175,55,0.05);
}

.sport-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.sport-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.sport-events {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.sport-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a1a;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Live Betting Features */
.live-betting-section {
    margin-bottom: 48px;
}

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

.live-feature {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.live-feature:hover {
    border-color: rgba(212,175,55,0.3);
}

.live-feature-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.live-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.live-feature p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* ========================================
   11.9 INFO SECTION (index.html)
======================================== */
.info-section {
    margin-bottom: 48px;
}

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

.info-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.info-text {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ========================================
   12. BONUS SECTION
======================================== */
.bonus-section {
    margin-bottom: 40px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bonus-card {
    background: linear-gradient(145deg, #1e1e3f, #16162e);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.bonus-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
}

.bonus-card.featured {
    border-color: rgba(212,175,55,0.3);
    background: linear-gradient(145deg, #252550, #1a1a3a);
}

.bonus-badge {
    display: inline-block;
    background: rgba(212,175,55,0.2);
    color: #d4af37;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.bonus-title {
    color: #d4af37;
    font-size: 20px;
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.bonus-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 16px;
}

.bonus-features {
    margin-bottom: 20px;
}

.bonus-features li {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 6px 0 6px 20px;
    position: relative;
}

.bonus-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
}

/* ========================================
   13. PAYMENTS SECTION
======================================== */
.payments-section {
    margin-bottom: 40px;
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.payment-logo {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 14px 12px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s;
}

.payment-logo:hover {
    border-color: rgba(212,175,55,0.3);
}

.payment-logo.featured {
    background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 100%);
    border-color: rgba(212,175,55,0.4);
    color: #d4af37;
    font-weight: 600;
    position: relative;
}

.payment-logo.featured::before {
    content: "⭐";
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 14px;
}

.popular-tag {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #0a0a1a;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

/* ========================================
   14. HOW TO SECTION (STEPS)
======================================== */
.howto-section {
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.step-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #0a0a1a;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon { font-size: 36px; margin-bottom: 14px; }
.step-title { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
.step-text { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.5; }

/* ========================================
   15. WHY US SECTION
======================================== */
.whyus-section {
    margin-bottom: 48px;
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.whyus-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}

.whyus-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
}

.whyus-icon { font-size: 44px; margin-bottom: 16px; }
.whyus-card h3 { color: #fff; font-size: 17px; margin-bottom: 12px; font-family: 'Montserrat', sans-serif; }
.whyus-card p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }

/* ========================================
   16. GAME CATEGORIES SECTION
======================================== */
.gamecats-section {
    margin-bottom: 48px;
}

.gamecats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gamecat-card {
    display: block;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.gamecat-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
}

.gamecat-icon { font-size: 44px; margin-bottom: 14px; }
.gamecat-card h3 { color: #fff; font-size: 18px; margin-bottom: 6px; font-family: 'Montserrat', sans-serif; }

.gamecat-count {
    display: inline-block;
    background: rgba(212,175,55,0.15);
    color: #d4af37;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.gamecat-card p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.5; }

/* ========================================
   17. BONUS DETAILS SECTION
======================================== */
.bonusdetails-section {
    margin-bottom: 48px;
}

.bonusdetails-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: linear-gradient(145deg, #1e1e3f, #16162e);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 20px;
    padding: 40px;
}

.bonusdetails-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonusdetails-highlight {
    text-align: center;
    margin-bottom: 32px;
}

.highlight-label {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.highlight-value {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 700;
    color: #d4af37;
}

.bonusdetails-breakdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
}

.breakdown-icon { font-size: 32px; }
.breakdown-info { display: flex; flex-direction: column; }
.breakdown-info strong { color: #fff; font-size: 16px; margin-bottom: 4px; }
.breakdown-info span { color: rgba(255,255,255,0.6); font-size: 13px; }

.bonusdetails-terms {
    background: rgba(0,0,0,0.2);
    border-radius: 16px;
    padding: 28px;
}

.bonusdetails-terms h4 {
    color: #d4af37;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.bonusdetails-terms ul { margin-bottom: 24px; }

.bonusdetails-terms li {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bonusdetails-terms li:last-child { border-bottom: none; }
.bonusdetails-terms li strong { color: #fff; }

.bonusdetails-example {
    background: rgba(212,175,55,0.1);
    border-radius: 10px;
    padding: 16px;
}

.bonusdetails-example h5 {
    color: #d4af37;
    font-size: 14px;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.bonusdetails-example p {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   18. APP SECTION
======================================== */
.app-section {
    margin-bottom: 48px;
    background: linear-gradient(145deg, #1e1e3f, #16162e);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 20px;
    overflow: hidden;
}

.app-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 48px;
    align-items: center;
}

.app-title { color: #fff; font-size: 28px; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; }
.app-text { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }

.app-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.app-feature {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-feature span { color: #22c55e; }

.app-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.app-requirements { color: rgba(255,255,255,0.4); font-size: 12px; }
.app-visual { display: flex; justify-content: center; }
.app-mockup { max-width: 280px; }
.app-screenshot { width: 100%; border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

/* ========================================
   19. TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    margin-bottom: 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 16px;
}

.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px;
}

.testimonial-stars { margin-bottom: 16px; font-size: 16px; }

.testimonial-text {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar { font-size: 32px; }
.author-info { display: flex; flex-direction: column; }
.author-info strong { color: #fff; font-size: 14px; }
.author-info span { color: rgba(255,255,255,0.5); font-size: 12px; }
.testimonials-disclaimer { text-align: center; color: rgba(255,255,255,0.4); font-size: 12px; }

/* ========================================
   20. SEO CONTENT
======================================== */
.seo-content {
    margin-bottom: 48px;
}

.content-article {
    max-width: 900px;
}

.content-article h2 {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 20px;
}

.content-article h3 {
    color: #fff;
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-article h4 {
    color: #d4af37;
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.content-article p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.content-article li {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.content-article ul li { list-style: disc; }
.content-article ol li { list-style: decimal; }

/* Content Toggle */
.content-toggle { margin: 24px 0; }

.toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 600;
}

.toggle-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.toggle-btn:hover { color: #e5c349; }
.toggle-btn.active svg { transform: rotate(180deg); }

.content-expanded { display: none; }
.content-expanded.active { display: block; }

/* Info Tables */
.info-table-container {
    overflow-x: auto;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
}

.seo-table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
}

.seo-table {
    width: 100%;
    min-width: 400px;
    border-collapse: collapse;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    overflow: hidden;
}

.seo-table th,
.seo-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
}

.seo-table th {
    background: rgba(212,175,55,0.1);
    color: #d4af37;
    font-weight: 600;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    overflow: hidden;
}

.info-table th,
.info-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.info-table th {
    background: rgba(212,175,55,0.1);
    color: #d4af37;
    font-weight: 600;
    font-size: 13px;
}

.info-table td {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

.info-table tr:last-child td { border-bottom: none; }

/* ========================================
   21. FAQ SECTION
======================================== */
.faq-section {
    margin-bottom: 48px;
}

.faq-container {
    max-width: 900px;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

/* Details/Summary FAQ styles */
details.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 12px;
}

details.faq-item summary {
    list-style: none;
    cursor: pointer;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary::marker {
    display: none;
    content: '';
}

.faq-question {
    width: 100%;
    padding: 18px 50px 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    transition: all 0.2s;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Button FAQ specific reset */
button.faq-question {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
}

button.faq-question:focus {
    outline: none;
}

.faq-question:hover { color: #d4af37; }

/* CSS arrow for FAQ - simple chevron */
.faq-question::after {
    content: '';
    position: absolute;
    right: 24px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease;
}

details.faq-item[open] .faq-question::after {
    transform: translateY(-30%) rotate(-135deg);
}

.faq-item.active .faq-question::after {
    transform: translateY(-30%) rotate(-135deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 18px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
}

details.faq-item .faq-answer {
    display: none;
}

details.faq-item[open] .faq-answer {
    display: block;
}

.faq-item.active .faq-answer { display: block; }

/* FAQ Answer lists */
.faq-answer ul,
.faq-answer ol {
    margin: 12px 0;
    padding-left: 24px;
}

.faq-answer ul li {
    list-style: disc;
    margin-bottom: 6px;
}

.faq-answer ol li {
    list-style: decimal;
    margin-bottom: 6px;
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ========================================
   22. RESPONSIBLE GAMBLING SECTION
======================================== */
.responsible-section {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
    text-align: center;
}

.responsible-container { max-width: 700px; margin: 0 auto; }
.responsible-icon { font-size: 48px; margin-bottom: 16px; }
.responsible-title { color: #fff; font-size: 20px; margin-bottom: 12px; font-family: 'Montserrat', sans-serif; }
.responsible-text { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }

.responsible-tools {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tool-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.responsible-links a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.responsible-links a:hover { color: #d4af37; }

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #ef4444;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
}

/* ========================================
   23. FOOTER
======================================== */
.footer {
    background: #0a0a14;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 48px 30px 24px;
    margin-top: 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand .logo-img {
    height: 40px;
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.7;
}

.footer-col h4 {
    color: #d4af37;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    transition: color 0.2s;
}

.footer-col a:hover { color: #d4af37; }

.footer-description {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.age-badge {
    background: #dc3545;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.license-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
}

.ssl-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

.footer-payments {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 24px;
}

.footer-payments h4 {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.payment-icons span {
    background: rgba(255,255,255,0.05);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.footer-disclaimer {
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    line-height: 1.6;
    margin-top: 8px;
}

.footer-disclaimer a {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

.footer-legal a:hover { color: #d4af37; }

/* ========================================
   24. AI SECTION (PLACEHOLDER)
======================================== */
.ai-section { margin-bottom: 40px; }
.ai-container { display: none; }

/* ========================================
   25. STICKY CTA
======================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 220px;
    right: 0;
    background: linear-gradient(90deg, #1a1a2e, #16162e);
    border-top: 1px solid rgba(212,175,55,0.2);
    padding: 12px 24px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 100;
}

.sticky-cta.visible { display: flex; }
.sticky-text { color: #fff; font-size: 14px; font-weight: 500; }
.sticky-btn { 
    padding: 10px 24px; 
    font-size: 13px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #0a0a1a;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
}
.sticky-close { 
    color: rgba(255,255,255,0.5); 
    font-size: 20px; 
    padding: 8px;
    flex-shrink: 0;
}
.sticky-content { 
    display: flex; 
    align-items: center; 
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hide sticky CTA when mobile tabs are visible */
@media (max-width: 768px) {
    .sticky-cta {
        bottom: 60px; /* Above mobile tabs */
        left: 0;
        padding: 10px 16px;
    }
    .sticky-text { font-size: 13px; }
    .sticky-btn { padding: 8px 16px; font-size: 12px; }
}

/* ========================================
   25. MISSING COMPONENT STYLES
======================================== */

/* === CRASH GAMES (aviator.html) === */
.crash-games-section,
.all-crash-section {
    margin-bottom: 48px;
}

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

.crash-game-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.crash-game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.crash-game-card.featured {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(10,10,26,0.95) 100%);
    grid-column: span 2;
}

.crash-game-card .game-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a1a 100%);
}

.crash-game-card .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crash-game-card .game-info {
    padding: 20px;
}

.crash-game-card .game-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.crash-game-card .game-provider {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.crash-game-card .game-stats {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.crash-game-card .btn {
    width: 100%;
    margin-bottom: 8px;
}

.crash-game-card .btn-demo {
    background: transparent;
    border-color: rgba(255,255,255,0.2);
}

.crash-features-section {
    margin-bottom: 48px;
}

/* === DOWNLOAD CARDS (app.html) === */
.download-section {
    margin-bottom: 48px;
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.download-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: rgba(212,175,55,0.3);
}

.download-card.android {
    border-top: 3px solid #3DDC84;
}

.download-card.ios {
    border-top: 3px solid #007AFF;
}

.download-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.download-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.download-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.download-card .btn {
    width: 100%;
}

/* Devices Section */
.devices-section {
    margin-bottom: 48px;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.device-category {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
}

.device-category h4 {
    font-size: 16px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.device-category ul {
    list-style: none;
    padding: 0;
}

.device-category li {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.device-category li:last-child {
    border-bottom: none;
}

/* Comparison Section */
.comparison-section {
    margin-bottom: 48px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.comparison-table th {
    background: rgba(212,175,55,0.1);
    color: #d4af37;
    font-weight: 600;
}

.comparison-table td {
    color: rgba(255,255,255,0.8);
}

/* === FEATURE CARDS === */
.features-section {
    margin-bottom: 48px;
}

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

.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* === BENEFIT CARDS (afiliados.html) === */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.benefit-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(212,175,55,0.3);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* Commission Section */
.commission-section {
    margin-bottom: 48px;
}

.commission-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.commission-table {
    width: 100%;
    border-collapse: collapse;
}

.commission-table th,
.commission-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.commission-table th {
    background: rgba(212,175,55,0.1);
    color: #d4af37;
    font-weight: 600;
    font-size: 13px;
}

.commission-table td {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.commission-table tr:hover {
    background: rgba(255,255,255,0.02);
}

.commission-notes {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Dashboard Section */
.dashboard-section {
    margin-bottom: 48px;
}

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

.dashboard-feature {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.dashboard-feature h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-top: 12px;
}

/* Affiliates CTA */
.affiliates-cta-section {
    margin-bottom: 48px;
}

.cta-content {
    background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(10,10,26,0.95) 100%);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

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

.cta-contact {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.cta-contact a {
    color: #d4af37;
}

/* === CALCULATOR (cashback.html) === */
.calculator-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    margin: 0 auto 48px;
}

.calculator-form {
    margin-bottom: 24px;
}

.calc-input-group {
    margin-bottom: 20px;
}

.calc-input-group label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.calc-input-group input,
.calc-input-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
}

.calc-input-group input:focus,
.calc-input-group select:focus {
    border-color: #d4af37;
    outline: none;
}

.calculator-result {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.calculator-result .result-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.calculator-result .result-value {
    font-size: 36px;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Cinzel', serif;
}

.calculator-note {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    margin-top: 16px;
}

/* === BET TYPES (apuestas-deportivas.html) === */
.bet-types-section {
    margin-bottom: 48px;
}

.bet-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bet-type-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
}

.bet-type-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 12px;
}

.bet-type-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* === BONUS CARDS (bonos.html) === */
.bonus-featured {
    margin-bottom: 48px;
}

.bonus-card-large {
    background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(10,10,26,0.95) 100%);
    border: 2px solid rgba(212,175,55,0.4);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.bonus-card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a1a;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.bonus-amount {
    margin-bottom: 20px;
}

.amount-percent {
    font-size: 64px;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Cinzel', serif;
    line-height: 1;
}

.amount-text {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
}

.amount-plus {
    font-size: 24px;
    color: rgba(255,255,255,0.5);
    margin: 0 8px;
}

.amount-spins {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.amount-value {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
}

.bonus-description {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.bonus-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.bonus-features span {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.bonus-card-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-card-image img {
    max-width: 100%;
    border-radius: 12px;
}

/* Smaller Bonus Cards */
.bonus-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
}

.bonus-card-header {
    padding: 20px;
    background: rgba(212,175,55,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bonus-card-header .bonus-type {
    font-size: 11px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.bonus-card-header .bonus-value {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.bonus-card-body {
    padding: 20px;
}

.bonus-card-content {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.bonus-terms {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.bonus-terms li {
    margin-bottom: 6px;
}

.bonus-card-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.bonus-card-footer .btn {
    width: 100%;
}

.bonus-badge-small {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

/* === HIGHLIGHT CARDS === */
.highlight-card {
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(10,10,26,0.95) 100%);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.highlight-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 16px;
}

.highlight-card .highlight-value {
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Cinzel', serif;
}

/* === METHOD/PAYMENT CARDS === */
.method-card,
.payment-method {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.method-card:hover,
.payment-method:hover {
    border-color: rgba(212,175,55,0.3);
}

.method-card .method-icon,
.payment-method .method-icon {
    font-size: 32px;
    min-width: 48px;
    text-align: center;
}

.method-card .method-info h4,
.payment-method .method-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.method-card .method-info p,
.payment-method .method-info p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* === VIP LEVELS (vip.html) === */
.vip-levels-section {
    margin-bottom: 48px;
}

.vip-levels-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.vip-level {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.vip-level:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
}

.vip-level.current {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(10,10,26,0.95) 100%);
}

.vip-level .level-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.vip-level h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.vip-level .level-requirement {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.vip-level .level-benefits {
    text-align: left;
}

.vip-level .level-benefits li {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.vip-level .level-benefits li:last-child {
    border-bottom: none;
}

/* === VERIFICATION STEPS (verificacion.html) === */
.verification-section {
    margin-bottom: 48px;
}

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

.verification-step {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    position: relative;
}

.verification-step .step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 16px;
}

.verification-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.verification-step p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* === SECURITY FEATURES (seguridad.html) === */
.security-section {
    margin-bottom: 48px;
}

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

.security-feature {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-feature:hover {
    border-color: rgba(212,175,55,0.3);
}

.security-feature .security-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.security-feature h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.security-feature p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* === CONTACT CARDS (contacto.html) === */
.contact-section {
    margin-bottom: 48px;
}

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

.contact-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(212,175,55,0.3);
}

.contact-card .contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.contact-card .contact-value {
    font-size: 16px;
    font-weight: 600;
    color: #d4af37;
}

/* === TOOL CARDS (juego-responsable.html, afiliados.html) === */
.tools-section {
    margin-bottom: 48px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tool-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: rgba(212,175,55,0.3);
}

.tool-card .tool-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.tool-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.tool-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* === RESPONSIBLE GAMBLING SECTION === */
.responsible-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.responsible-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
}

.responsible-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.responsible-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* === TIMELINE ITEMS === */
.timeline-section {
    margin-bottom: 48px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(212,175,55,0.3);
}

.timeline-item {
    position: relative;
    padding-bottom: 32px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 4px;
    width: 12px;
    height: 12px;
    background: #d4af37;
    border-radius: 50%;
    border: 3px solid #0a0a1a;
}

.timeline-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* === HELP RESOURCES === */
.help-resources {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.help-resource {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.help-resource .resource-icon {
    font-size: 32px;
    min-width: 48px;
}

.help-resource h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.help-resource p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.help-resource a {
    color: #d4af37;
}

/* === REGISTRATION STEPS (registro.html) === */
.reg-steps-section {
    margin-bottom: 48px;
}

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

.reg-step {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    position: relative;
}

.reg-step .step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 16px;
}

.reg-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.reg-step p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* === LOGIN METHODS (login.html) === */
.login-methods-section {
    margin-bottom: 48px;
}

.login-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.login-method {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.login-method:hover {
    border-color: rgba(212,175,55,0.3);
}

.login-method .method-icon {
    font-size: 32px;
    min-width: 48px;
}

.login-method h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.login-method p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* === PRIVACY/POLICY/TERMS SECTIONS === */
.privacy-section,
.policy-section,
.terms-section,
.legal-section {
    margin-bottom: 48px;
}

.privacy-card,
.policy-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.privacy-card h3,
.policy-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-card p,
.policy-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 12px;
}

.privacy-card ul,
.policy-card ul {
    list-style: none;
    padding: 0;
}

.privacy-card li,
.policy-card li {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    padding: 8px 0 8px 20px;
    position: relative;
}

.privacy-card li::before,
.policy-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
}

.legal-content {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    padding: 32px;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 24px 0 12px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    line-height: 1.6;
}

/* === ABOUT SECTION (sobre-nosotros.html) === */
.about-section {
    margin-bottom: 48px;
}

.about-intro {
    max-width: 800px;
    margin-bottom: 48px;
}

.about-intro p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.about-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.about-stat .stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.about-stat .stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Cinzel', serif;
    margin-bottom: 4px;
}

.about-stat .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.team-section {
    margin-bottom: 48px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-member {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.team-member .member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px;
}

.team-member h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.team-member .member-role {
    font-size: 13px;
    color: #d4af37;
}

/* === WARNING/INFO BOXES === */
.warning-box {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    border-left: 4px solid #ef4444;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.warning-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.warning-box p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.info-box {
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.3);
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.info-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.success-box {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    border-left: 4px solid #22c55e;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.success-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 8px;
}

.success-box p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* === RESPONSIVE FOR NEW COMPONENTS === */
@media (max-width: 1200px) {
    .crash-games-grid { grid-template-columns: repeat(3, 1fr); }
    .crash-game-card.featured { grid-column: span 3; }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard-features { grid-template-columns: repeat(2, 1fr); }
    .vip-levels-grid { grid-template-columns: repeat(3, 1fr); }
    .verification-steps { grid-template-columns: repeat(2, 1fr); }
    .security-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .reg-steps { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .crash-games-grid { grid-template-columns: repeat(2, 1fr); }
    .crash-game-card.featured { grid-column: span 2; }
    .bonus-card-large { grid-template-columns: 1fr; padding: 30px; }
    .bonus-card-image { order: -1; }
    .amount-percent { font-size: 48px; }
}

@media (max-width: 768px) {
    .crash-games-grid { grid-template-columns: 1fr; gap: 16px; }
    .crash-game-card.featured { grid-column: span 1; }
    .download-cards { grid-template-columns: 1fr; }
    .devices-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .feature-card { padding: 16px; }
    .feature-icon { font-size: 28px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .dashboard-features { grid-template-columns: 1fr; }
    .bet-types-grid { grid-template-columns: 1fr; }
    .bonus-card-large { padding: 24px; }
    .amount-percent { font-size: 36px; }
    .amount-spins { font-size: 24px; }
    .vip-levels-grid { grid-template-columns: 1fr; }
    .verification-steps { grid-template-columns: 1fr; }
    .security-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .tools-grid { grid-template-columns: 1fr; }
    .responsible-grid { grid-template-columns: 1fr; }
    .help-resources { grid-template-columns: 1fr; }
    .reg-steps { grid-template-columns: 1fr; }
    .login-methods { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .team-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .cta-content { padding: 32px 20px; }
}

/* ========================================
   25.5 SLOTS PAGE SPECIFIC STYLES
======================================== */

/* Filters Bar */
.filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filters-left {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filters-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Filter Dropdowns */
.filter-dropdown {
    position: relative;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: rgba(212,175,55,0.3);
    background: rgba(255,255,255,0.08);
}

.filter-btn::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
    margin-left: 4px;
}

.filter-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 12px;
    margin-top: 8px;
    z-index: 100;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.filter-dropdown.active .filter-dropdown-content {
    display: block;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.filter-checkbox:hover {
    background: rgba(255,255,255,0.05);
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #d4af37;
}

.filter-checkbox label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
}

/* Active Filters */
.active-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.active-filters-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.filter-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #d4af37;
}

.filter-tag .remove {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.filter-tag .remove:hover {
    opacity: 1;
}

.clear-filters-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    cursor: pointer;
    transition: color 0.2s;
}

.clear-filters-btn:hover {
    color: #d4af37;
}

/* Demo Button */
.demo-btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 6px 12px;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s;
    cursor: pointer;
}

.game-card:hover .demo-btn {
    opacity: 1;
}

.demo-btn:hover {
    background: rgba(212,175,55,0.8);
    border-color: #d4af37;
}

/* Game Badges */
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.badge-hot {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
}

.badge-new {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

.badge-jackpot {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a1a;
}

.badge-classic {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.badge-popular {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #fff;
}

/* Feature Text */
.feature-text {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* ========================================
   25.6 ADDITIONAL MISSING STYLES
======================================== */

/* Load More Button */
.load-more-section {
    text-align: center;
    margin: 32px 0;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid rgba(212,175,55,0.5);
    border-radius: 8px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.load-more-btn:hover {
    background: rgba(212,175,55,0.1);
    border-color: #d4af37;
}

/* Game Stats in Cards */
.game-stats-bar {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(0,0,0,0.3);
    font-size: 11px;
}

.game-stats-bar span {
    color: rgba(255,255,255,0.6);
}

/* Slots Categories Tabs */
.slots-categories {
    margin-bottom: 24px;
}

/* Provider Filter Tags */
.provider-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.provider-tag {
    padding: 8px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.2s;
}

.provider-tag:hover,
.provider-tag.active {
    border-color: #d4af37;
    color: #d4af37;
    background: rgba(212,175,55,0.1);
}

/* Volatility Indicator */
.volatility {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

.volatility-bars {
    display: flex;
    gap: 2px;
}

.volatility-bar {
    width: 4px;
    height: 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

.volatility-bar.active {
    background: #d4af37;
}

/* RTP Display */
.rtp {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.rtp-value {
    color: #22c55e;
    font-weight: 600;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.no-results h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}

.no-results p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* Day Badge */
.day-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a1a;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Promo Cards */
.promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.promo-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.promo-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
}

.promo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a1a;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}

.promo-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.promo-card:hover .promo-image img {
    transform: scale(1.05);
}

.promo-info {
    padding: 20px;
}

.promo-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.promo-description {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.promo-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.promo-cta {
    width: 100%;
}

/* Promo Hero Variant */
.promo-hero {
    background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(10,10,26,0.95) 100%);
}

/* ========================================
   26.5 LIVE CASINO STYLES
======================================== */

.live-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.live-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.live-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.live-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.live-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.live-card:hover .live-card-image img {
    transform: scale(1.05);
}

.live-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg, #1a1a2e, #0a0a1a);
}

.live-placeholder.roulette { background: linear-gradient(135deg, #1a472a, #0a2015); }
.live-placeholder.blackjack { background: linear-gradient(135deg, #1a1a2e, #2d1b4e); }
.live-placeholder.baccarat { background: linear-gradient(135deg, #3d1a1a, #1a0a0a); }
.live-placeholder.lightning { background: linear-gradient(135deg, #3d3a1a, #1a1a0a); }
.live-placeholder.vip { background: linear-gradient(135deg, #4a3a1a, #2a1a0a); }

.live-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
}

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(239,68,68,0.9);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.live-badge .live-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a1a;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.live-multiplier {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(212,175,55,0.9);
    color: #0a0a1a;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.live-card-info {
    padding: 16px;
}

.live-card-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    font-family: 'Cinzel', serif;
}

.live-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.live-limits {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.live-language {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

.dealer-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
}

.baccarat-stats,
.hot-number {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.baccarat-stats span,
.hot-number span {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.live-card.game-show {
    border-color: rgba(212,175,55,0.2);
}

/* ========================================
   26.6 JACKPOTS PAGE STYLES
======================================== */

.how-jackpots-section,
.jackpot-levels,
.jackpot-tips-section,
.all-jackpots-section {
    margin-bottom: 48px;
}

.jackpot-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.jackpot-type-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.jackpot-type-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.jackpot-type-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.jackpot-type-card .example {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.level-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.level-card.mega {
    border-color: rgba(212,175,55,0.3);
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(10,10,26,0.95) 100%);
}

.level-card.major {
    border-color: rgba(168,85,247,0.3);
    background: linear-gradient(135deg, rgba(168,85,247,0.1) 0%, rgba(10,10,26,0.95) 100%);
}

.level-card.minor {
    border-color: rgba(59,130,246,0.3);
    background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(10,10,26,0.95) 100%);
}

.level-card.mini {
    border-color: rgba(34,197,94,0.3);
    background: linear-gradient(135deg, rgba(34,197,94,0.1) 0%, rgba(10,10,26,0.95) 100%);
}

.level-name {
    font-size: 14px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.level-card.major .level-name { color: #a855f7; }
.level-card.minor .level-name { color: #3b82f6; }
.level-card.mini .level-name { color: #22c55e; }

.level-range {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.level-freq {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   26.7 VIP PAGE STYLES
======================================== */

.points-section,
.benefits-comparison-section {
    margin-bottom: 48px;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.perk-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.perk-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-2px);
}

.perk-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.perk-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.perk-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.points-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.points-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.points-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.points-info p,
.points-info li {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.points-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.points-info li {
    margin-bottom: 6px;
}

.level-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.level-tag {
    display: inline-block;
    background: rgba(212,175,55,0.2);
    color: #d4af37;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 8px;
}

/* ========================================
   26.8 SPORTS PAGE STYLES
======================================== */

.leagues-section {
    margin-bottom: 48px;
}

.leagues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.league-category {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
}

.league-category h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
}

.league-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.league-category li {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.league-category li:last-child {
    border-bottom: none;
}

/* ========================================
   26.9 SLOTS PAGE STYLES
======================================== */

/* Results Info */
.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
}

.results-count {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.results-count strong {
    color: #d4af37;
}

/* Sort & View Controls */
.sort-select {
    padding: 10px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
    border-color: rgba(212,175,55,0.5);
}

.view-toggle {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 4px;
}

.view-btn {
    padding: 8px 12px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.2s;
}

.view-btn svg {
    width: 18px;
    height: 18px;
}

.view-btn.active {
    background: rgba(212,175,55,0.2);
    color: #d4af37;
}

.view-btn:hover {
    color: #fff;
}

/* Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

/* Slot Card */
.slot-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.slot-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Slot Image */
.slot-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.slot-card:hover .slot-image img {
    transform: scale(1.05);
}

/* Slot Badges */
.slot-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

/* Slot Overlay */
.slot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.play-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #0a0a1a;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.play-btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

/* Slot Info */
.slot-info {
    padding: 12px;
}

.slot-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slot-provider {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.slot-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.slot-rtp {
    color: rgba(255,255,255,0.6);
}

.slot-volatility {
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 10px;
}

.slot-volatility.low {
    background: rgba(34,197,94,0.2);
    color: #22c55e;
}

.slot-volatility.medium {
    background: rgba(234,179,8,0.2);
    color: #eab308;
}

.slot-volatility.high {
    background: rgba(239,68,68,0.2);
    color: #ef4444;
}

/* ========================================
   27. RESPONSIVE
======================================== */

/* Large screens */
@media (max-width: 1400px) {
    .games-grid { grid-template-columns: repeat(5, 1fr); }
    .providers-grid { grid-template-columns: repeat(6, 1fr); }
    .payments-grid { grid-template-columns: repeat(6, 1fr); }
}

/* Desktop */
@media (max-width: 1200px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    .sidebar.active { transform: translateX(0); }
    
    .header { left: 0; }
    .main-content { margin-left: 0; padding: 90px 24px 100px; }
    .sticky-cta { left: 0; }
    
    .mobile-menu-btn { display: flex; }
    
    .games-grid { grid-template-columns: repeat(4, 1fr); }
    .providers-grid { grid-template-columns: repeat(5, 1fr); }
    .payments-grid { grid-template-columns: repeat(4, 1fr); }
    .bonus-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .whyus-grid { grid-template-columns: repeat(2, 1fr); }
    .gamecats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    
    .jackpot-games-grid { grid-template-columns: repeat(3, 1fr); }
    
    /* New components at 1200px */
    .slots-grid { grid-template-columns: repeat(5, 1fr); }
    .live-grid { grid-template-columns: repeat(3, 1fr); }
    .perks-grid { grid-template-columns: repeat(3, 1fr); }
    .leagues-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-slider { height: 350px; }
    .hero-slide { padding: 30px; }
    .hero-title { font-size: 40px; }
    .hero-subtitle { font-size: 18px; }
    .hero-arrow { width: 36px; height: 36px; }
    .hero-arrow svg { width: 16px; height: 16px; }
    
    .games-grid { grid-template-columns: repeat(3, 1fr); }
    .providers-grid { grid-template-columns: repeat(4, 1fr); }
    .payments-grid { grid-template-columns: repeat(4, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    
    .jackpot-counters-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .jackpot-games-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .jackpot-counter { padding: 24px 16px; }
    .jackpot-amount { font-size: 24px; }
    .jackpot-counter.mega .jackpot-amount { font-size: 28px; }
    
    .promos-featured-grid { grid-template-columns: 1fr; }
    .promo-featured-card { height: 240px; }
    .calendar-grid { grid-template-columns: repeat(4, 1fr); }
    .tournaments-grid { grid-template-columns: repeat(2, 1fr); }
    .sports-grid { grid-template-columns: repeat(4, 1fr); }
    .live-features-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* New components at 992px */
    .slots-grid { grid-template-columns: repeat(4, 1fr); }
    .live-grid { grid-template-columns: repeat(2, 1fr); }
    .jackpot-types-grid { grid-template-columns: repeat(2, 1fr); }
    .perks-grid { grid-template-columns: repeat(2, 1fr); }
    
    .bonusdetails-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .highlight-value { font-size: 36px; }
    
    .app-container {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    .app-visual { order: -1; }
    .app-mockup { max-width: 220px; }
    
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
}

/* Mobile */
@media (max-width: 768px) {
    .main-content { 
        padding: 70px 16px 80px; /* Adjusted for smaller header and mobile tabs */
        overflow-x: hidden;
    }
    
    .header {
        height: 60px;
    }
    
    .header-container {
        padding: 0 12px;
        gap: 12px;
    }
    
    .logo-img { height: 28px; }
    
    .mobile-tabs { display: flex; }
    
    .header-search { display: none; }
    .header-actions .btn-lang { display: none; }
    
    .hero-slider { height: 280px; }
    .hero-slide { padding: 20px; }
    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 15px; margin-bottom: 16px; }
    .hero-badge { font-size: 11px; padding: 6px 12px; }
    .hero-arrow { display: none; }
    .hero-dots { bottom: 12px; }
    .hero-dot { width: 8px; height: 8px; }
    
    .games-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px; 
    }
    .providers-grid { grid-template-columns: repeat(3, 1fr); }
    .payments-grid { grid-template-columns: repeat(3, 1fr); }
    .bonus-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .whyus-grid { grid-template-columns: 1fr; gap: 16px; }
    .gamecats-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; gap: 16px; }
    
    /* Filters responsive */
    .filters-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .filters-left,
    .filters-right {
        width: 100%;
        justify-content: flex-start;
    }
    .filter-btn {
        flex: 1;
        justify-content: center;
    }
    
    /* Promos responsive */
    .promos-grid {
        grid-template-columns: 1fr;
    }
    .promos-featured-grid {
        grid-template-columns: 1fr;
    }
    .promo-featured-card {
        height: 200px;
    }
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Live casino responsive */
    .live-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .live-card-info {
        padding: 12px;
    }
    .live-card-info h3 {
        font-size: 14px;
    }
    
    /* Jackpots page responsive */
    .jackpot-types-grid {
        grid-template-columns: 1fr;
    }
    .levels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* VIP page responsive */
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .points-card {
        flex-direction: column;
        text-align: center;
    }
    
    /* Sports page responsive */
    .leagues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Slots page responsive */
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .slot-info {
        padding: 10px;
    }
    .slot-title {
        font-size: 13px;
    }
    .slot-provider {
        font-size: 11px;
    }
    .view-toggle {
        display: none;
    }
    .results-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    /* Jackpot responsive */
    .jackpot-counters-grid { 
        grid-template-columns: 1fr; 
        gap: 16px; 
    }
    .jackpot-games-grid { 
        grid-template-columns: 1fr; 
        gap: 16px; 
    }
    .jackpot-counter { 
        padding: 20px; 
    }
    .jackpot-amount { 
        font-size: 28px; 
    }
    .jackpot-counter.mega .jackpot-amount { 
        font-size: 32px; 
    }
    .jackpot-game-card .game-info { 
        padding: 16px; 
    }
    .jackpot-game-card .game-info h3 { 
        font-size: 16px; 
    }
    .jackpot-current .amount { 
        font-size: 18px; 
    }
    
    /* Page hero responsive */
    .page-hero {
        padding: 24px 16px;
    }
    .page-hero h1 {
        font-size: 24px;
    }
    .page-hero-subtitle {
        font-size: 14px;
    }
    .page-hero-stats {
        gap: 16px;
    }
    .stat-value {
        font-size: 20px;
    }
    
    /* Categories scroll */
    .categories-scroll {
        gap: 8px;
        padding-bottom: 12px;
    }
    .category-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
    .category-icon {
        font-size: 16px;
    }
    
    /* Promo responsive */
    .promos-featured-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .promo-featured-card {
        height: 200px;
    }
    .promo-content {
        padding: 16px;
    }
    .promo-content h3 {
        font-size: 18px;
    }
    
    /* Calendar responsive */
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .calendar-day {
        padding: 12px;
    }
    .day-icon {
        font-size: 20px;
    }
    .day-promo h4 {
        font-size: 13px;
    }
    .day-promo p {
        font-size: 11px;
    }
    
    /* Tournament responsive */
    .tournaments-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .tournament-info {
        padding: 16px;
    }
    .tournament-info h3 {
        font-size: 16px;
    }
    .prize-amount {
        font-size: 18px;
    }
    
    /* Sports responsive */
    .sports-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .sport-card {
        padding: 16px 8px;
    }
    .sport-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .sport-card h3 {
        font-size: 12px;
    }
    .live-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .bonus-main {
        flex-direction: column;
        gap: 20px;
    }
    .bonus-amount .percent {
        font-size: 36px;
    }
    .bonus-details {
        text-align: center;
    }
    
    .bonusdetails-container { padding: 20px; }
    .highlight-value { font-size: 26px; }
    
    .app-buttons { flex-direction: column; gap: 12px; }
    .app-buttons .btn { width: 100%; justify-content: center; }
    
    .footer-top { grid-template-columns: 1fr; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-bottom { 
        flex-direction: column; 
        text-align: center;
        gap: 12px;
    }
    
    .sticky-cta { left: 0; }
    
    /* Section spacing */
    .section { margin-bottom: 32px; }
    .section-header { margin-bottom: 16px; }
    .section-title { font-size: 20px; }
    
    /* Table scrolling */
    .info-table-container,
    .seo-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
    }
    
    /* Breadcrumbs */
    .breadcrumbs {
        font-size: 12px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 8px;
    }
    
    /* Page hero */
    .page-hero { padding: 24px 16px; }
    .page-hero h1 { font-size: 24px; }
    
    /* SEO content */
    .seo-content { padding: 20px; }
    .seo-content h2 { font-size: 20px; }
    .seo-content h3 { font-size: 17px; }
    .seo-content p { font-size: 14px; }
    
    /* CTA section */
    .cta-section { padding: 24px 16px; }
    .cta-card h2 { font-size: 22px; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .main-content { padding: 80px 12px 90px; }
    
    .hero-slider { height: 260px; }
    .hero-title { font-size: 24px; }
    .hero-subtitle { font-size: 14px; }
    
    .games-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px; 
    }
    .providers-grid { grid-template-columns: repeat(2, 1fr); }
    .payments-grid { grid-template-columns: repeat(2, 1fr); }
    
    .bonusdetails-container { padding: 16px; }
    .highlight-value { font-size: 22px; }
    .breakdown-item { padding: 12px; }
    .breakdown-icon { font-size: 20px; }
    
    .section-title { font-size: 18px; }
    .section-link { font-size: 12px; }
    
    .btn { padding: 10px 16px; font-size: 13px; }
    .btn-cta { padding: 12px 20px; font-size: 14px; }
    
    .header-actions .btn { padding: 8px 12px; font-size: 12px; }
    .header-actions .btn-outline { display: none; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-brand { text-align: center; }
    .footer-badges { justify-content: center; }
    .payment-icons { justify-content: center; }
    
    /* Fix tables on mobile */
    .info-table-container,
    .seo-table-wrapper {
        margin: 0 -12px;
        padding: 0 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .info-table,
    .seo-table {
        min-width: 500px;
    }
    
    /* Fix hero overflow */
    .hero { 
        border-radius: 12px; 
        margin: 0 -12px 20px;
        width: calc(100% + 24px);
    }
    
    /* Fix cards */
    .bonus-card,
    .game-card,
    .step-card,
    .whyus-card {
        padding: 16px;
    }
    
    /* FAQ improvements */
    .faq-question { 
        padding: 14px 16px; 
        font-size: 14px;
    }
    .faq-answer { padding: 12px 16px 16px; }
}

/* ========================================
   27. PROSCONS SECTION
======================================== */
.proscons-section { margin-bottom: 48px; }

.proscons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pros-card,
.cons-card {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 28px;
}

.pros-card { border: 1px solid rgba(34,197,94,0.3); }
.cons-card { border: 1px solid rgba(239,68,68,0.3); }

.pros-card h3 { color: #22c55e; font-size: 18px; margin-bottom: 20px; font-family: 'Montserrat', sans-serif; }
.cons-card h3 { color: #ef4444; font-size: 18px; margin-bottom: 20px; font-family: 'Montserrat', sans-serif; }

.pros-card li,
.cons-card li {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.pros-card li::before { content: '✓'; position: absolute; left: 0; color: #22c55e; font-weight: bold; }
.cons-card li::before { content: '✗'; position: absolute; left: 0; color: #ef4444; font-weight: bold; }

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

/* ============================================
   INTERNAL LINKING STYLES
   ============================================ */

/* Related Pages Section */
.related-pages {
    margin: 40px 0;
    padding: 32px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.related-pages .section-title {
    font-size: 18px;
    margin-bottom: 20px;
}

.related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.related-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.related-link:hover {
    background: rgba(212,175,55,0.15);
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
}

/* Contextual Links in Content */
.contextual-link {
    color: #d4af37;
    text-decoration: none;
    border-bottom: 1px dotted rgba(212,175,55,0.5);
    transition: all 0.2s ease;
}

.contextual-link:hover {
    color: #f0d060;
    border-bottom-color: #f0d060;
}

/* Quick Links Box */
.quick-links-box {
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.quick-links-box h4 {
    color: #d4af37;
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.quick-links-list a {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
}

.quick-links-list a:hover {
    background: rgba(212,175,55,0.2);
    color: #d4af37;
}

/* In-content CTA Box */
.inline-cta {
    background: linear-gradient(135deg, #1e1e3f, #16162e);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.inline-cta-content h4 {
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 8px;
}

.inline-cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}

/* See Also Section */
.see-also {
    background: rgba(255,255,255,0.03);
    border-left: 3px solid #d4af37;
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}

.see-also-title {
    color: #d4af37;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.see-also-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.see-also-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.see-also-links a:hover {
    color: #d4af37;
}

.see-also-links a::before {
    content: '→ ';
    color: #d4af37;
}

/* Navigation Cards */
.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-card:hover {
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
}

.nav-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.nav-card-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.nav-card-desc {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    text-align: center;
    margin-top: 4px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .related-grid {
        gap: 8px;
    }
    
    .related-link {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .inline-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .see-also-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   VERSION 16 - New Pages Styles
   opiniones.html, ayuda.html, legal updates
   ============================================ */

/* Legal Update Box (bonos.html) */
.legal-update-box {
    background: linear-gradient(135deg, rgba(46,125,50,0.15) 0%, rgba(46,125,50,0.05) 100%);
    border: 1px solid rgba(46,125,50,0.4);
    border-left: 4px solid #4caf50;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.legal-update-box h3 {
    color: #4caf50;
    font-size: 18px;
    margin: 0 0 12px 0;
}

.legal-update-box p {
    margin: 8px 0;
}

/* Highlight Box (registro.html) */
.highlight-box {
    background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 100%);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.highlight-box h3 {
    color: #d4af37;
    font-size: 18px;
    margin: 0 0 12px 0;
}

.highlight-box ul {
    margin: 12px 0;
    padding-left: 20px;
}

.highlight-box li {
    margin: 6px 0;
}

/* Trust Summary (opiniones.html) */
.trust-summary {
    margin: 32px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.trust-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: rgba(212,175,55,0.3);
    background: rgba(212,175,55,0.05);
}

.trust-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.trust-card h3 {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0 0 8px 0;
    font-weight: 500;
}

.trust-answer {
    font-size: 28px;
    font-weight: 700;
    color: #4caf50;
    margin: 0;
}

.trust-detail {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-top: 4px;
}

/* Verdict Box (opiniones.html) */
.verdict-box {
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.verdict-box.positive {
    background: linear-gradient(135deg, rgba(46,125,50,0.15) 0%, rgba(46,125,50,0.05) 100%);
    border: 1px solid rgba(46,125,50,0.4);
    border-left: 4px solid #4caf50;
}

.verdict-box h3 {
    color: #4caf50;
    margin: 0 0 12px 0;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.review-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
}

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

.review-stars {
    color: #d4af37;
}

.review-author {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 600;
}

.review-text {
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.review-date {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

/* Conclusion Box */
.conclusion-box {
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.03) 100%);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}

.conclusion-box p {
    margin: 12px 0;
}

/* Help Categories (ayuda.html) */
.help-categories {
    margin: 32px 0;
}

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

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
}

.category-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.category-card h3 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 8px 0;
}

.category-card p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin: 0;
}

/* Contact Banner */
.contact-banner {
    background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, rgba(212,175,55,0.05) 100%);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin: 32px 0;
}

.contact-banner h2 {
    color: #d4af37;
    margin: 0 0 8px 0;
}

.contact-banner p {
    color: rgba(255,255,255,0.7);
    margin: 0 0 20px 0;
}

.contact-options {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Problem Card */
.problem-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.problem-card h3 {
    color: #ff6b6b;
    font-size: 18px;
    margin: 0 0 16px 0;
}

.solution-steps {
    padding-left: 8px;
}

.solution-steps h4 {
    color: #4caf50;
    font-size: 15px;
    margin: 0 0 12px 0;
}

.solution-steps ol,
.solution-steps ul {
    padding-left: 20px;
    margin: 12px 0;
}

.solution-steps li {
    margin: 12px 0;
    line-height: 1.6;
}

.solution-steps li strong {
    color: #fff;
}

.solution-steps li p {
    margin: 4px 0 0 0;
    color: rgba(255,255,255,0.7);
}

.solution-tip {
    background: rgba(212,175,55,0.1);
    border-left: 3px solid #d4af37;
    padding: 12px 16px;
    margin-top: 16px;
    border-radius: 0 8px 8px 0;
}

.solution-tip strong {
    color: #d4af37;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, rgba(46,125,50,0.15) 0%, rgba(46,125,50,0.05) 100%);
    border: 1px solid rgba(46,125,50,0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin: 40px 0;
}

.emergency-contact h2 {
    color: #4caf50;
    margin: 0 0 8px 0;
}

.emergency-contact > p {
    color: rgba(255,255,255,0.7);
    margin: 0 0 24px 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.contact-method {
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 20px;
}

.method-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.contact-method h4 {
    color: #fff;
    margin: 0 0 4px 0;
}

.contact-method p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin: 0 0 12px 0;
}

/* Responsive - New Pages */
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .trust-card {
        padding: 16px 12px;
    }
    
    .trust-answer {
        font-size: 22px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .problem-card {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-update-box,
    .highlight-box,
    .verdict-box {
        padding: 16px;
    }
}

/* ============================================
   RELATED RESOURCES (Outbound Links)
   ============================================ */
.related-resources {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 20px 25px;
    margin: 30px 0;
}

.related-resources h3 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.related-resources p {
    color: #b8c5d6;
    line-height: 1.8;
    font-size: 0.95rem;
}

.related-resources a {
    color: #4fc3f7;
    text-decoration: none;
    border-bottom: 1px dotted rgba(79, 195, 247, 0.5);
    transition: all 0.2s ease;
}

.related-resources a:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

@media (max-width: 768px) {
    .related-resources {
        padding: 15px 18px;
        margin: 20px 0;
    }
    
    .related-resources h3 {
        font-size: 1rem;
    }
    
    .related-resources p {
        font-size: 0.9rem;
    }
}

/* ============================================
   SEO INTRO SECTION - CRITICAL FOR RANKING
   ============================================ */
.seo-intro-section {
    padding: 25px 20px;
    background: linear-gradient(180deg, #0a0a1a 0%, #1a1a2e 100%);
}

.seo-intro {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    border-left: 4px solid #ffd700;
    padding: 25px 30px;
    margin: 0 auto;
    max-width: 1200px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.seo-intro p {
    color: #e8e8e8;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.seo-intro strong {
    color: #ffd700;
    font-weight: 600;
}

@media (max-width: 768px) {
    .seo-intro-section {
        padding: 15px 10px;
    }
    
    .seo-intro {
        padding: 18px 20px;
    }
    
    .seo-intro p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}
