﻿
/* ============================================
   ARABIC SLOTS TEMPLATE - GOOGLE-ALIGNED REDO
   RTL | Clean Luxury | Mobile-First | Accessible
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --midnight: #080818;
    --navy: #0a0a1e;
    --deep-blue: #0f0f2a;
    --card-bg: #12122a;
    --card-bg2: #1a1a3a;
    --card-bg3: #1e1e40;
    --primary: #6c3ce1;
    --primary-dark: #4a1fb0;
    --primary-light: #8b5cf6;
    --gold: #ffd700;
    --gold-dark: #c9a600;
    --gold-light: #ffe44d;`n    --gold-ultra: #fff3a0;
    --accent-magenta: #e63946;
    --accent-teal: #06b6d4;
    --text: #e8e8f0;
    --text-muted: #9090aa;
    --text-dim: #666688;
    --green: #22c55e;
    --border: rgba(255, 255, 255, 0.07);
    --border-gold: rgba(255, 215, 0, 0.2);
    --border-primary: rgba(108, 60, 225, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 40px rgba(108, 60, 225, 0.25);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Segoe UI', 'Tahoma', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--midnight);
    color: var(--text);
    line-height: 1.8;
    direction: rtl;
    overflow-x: hidden;
    font-size: 16px;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 16px rgba(108, 60, 225, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(108, 60, 225, 0.55);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a1e;
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-ultra), var(--gold-light));
    color: #0a0a1e;
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.15);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 15px 38px; font-size: 1rem; }

/* ---- HEADER ---- */
.site-header {
    background: rgba(8, 8, 24, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gold);
    transition: var(--transition);
}
.logo:hover { color: var(--gold-light); }
.logo-icon { font-size: 1.4rem; }
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-nav a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: var(--radius-xs);
    transition: var(--transition);
}
.main-nav a:hover {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.07);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-xs);
    transition: var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,0.05); }
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
    position: relative;
    padding: 80px 0 70px;
    overflow: hidden;
    background: var(--navy);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(108, 60, 225, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 25%, rgba(230, 57, 70, 0.08) 0%, transparent 45%);
    pointer-events: none;
}
.hero-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.hero-glow-2 {
    top: auto;
    bottom: -120px;
    left: -80px;
    right: auto;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.07) 0%, transparent 70%);
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero-visual-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual-inner {
    position: relative;
    width: 240px;
    height: 240px;
    background: linear-gradient(145deg, var(--card-bg2), var(--card-bg3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-gold);
    box-shadow: 0 0 50px rgba(108, 60, 225, 0.25), 0 0 100px rgba(255, 215, 0, 0.08);
}
.hero-visual-img {
    border-radius: 50%;
    width: 240px;
    height: 240px;
    animation: heroFloat 3.5s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-text { text-align: right; }
.hero-badge-line {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.hero-badge {
    background: rgba(255, 215, 0, 0.09);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.hero-title {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 460px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.hero-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.stat-chip {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 78px;
}
.stat-val {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.stat-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ---- SECTION HEADERS ---- */
.section-header {
    text-align: center;
    margin-bottom: 44px;
}
.section-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    border-radius: 2px;
}
.section-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 14px;
}

/* ---- FEATURED GAMES ---- */
.featured-games { padding: 80px 0; background: var(--navy); }
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.game-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card), 0 0 30px rgba(108, 60, 225, 0.2);
    border-color: var(--border-primary);
}
.game-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--card-bg2);
}
.game-thumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: linear-gradient(to top, var(--card-bg), transparent);
}
.game-thumb-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
.game-badge-hot, .game-badge-new {
    position: absolute;
    top: 8px;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 4;
}
.game-badge-hot { left: 8px; background: var(--accent-magenta); color: #fff; }
.game-badge-new { right: 8px; background: var(--green); color: #fff; }
.game-info { padding: 16px 18px 18px; }
.game-name { font-size: 1rem; font-weight: 700; margin-bottom: 3px; color: #fff; }
.game-provider { font-size: 0.76rem; color: var(--text-muted); display: block; margin-bottom: 10px; }
.game-meta { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.meta-chip { font-size: 0.7rem; font-weight: 600; padding: 3px 8px; border-radius: 4px; }
.rtp-chip { background: rgba(34, 197, 94, 0.12); color: var(--green); }
.vol-chip { background: rgba(255, 215, 0, 0.08); color: var(--gold); }

/* ---- CATEGORIES ---- */
.categories { padding: 72px 0; background: var(--midnight); }
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.cat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    color: var(--text);
}
.cat-card:hover {
    background: var(--card-bg2);
    transform: translateY(-3px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
    color: var(--text);
}
.cat-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(108, 60, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.cat-name { font-weight: 700; font-size: 0.85rem; color: #fff; }
.cat-count { font-size: 0.68rem; color: var(--text-muted); }

/* ---- PROMO STRIP ---- */
.promo-strip {
    position: relative;
    padding: 44px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--card-bg2) 0%, var(--deep-blue) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.promo-strip-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(108, 60, 225, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.promo-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 210px;
}
.promo-icon { font-size: 2.2rem; flex-shrink: 0; }
.promo-text h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.promo-text p { font-size: 0.78rem; color: var(--text-muted); }
.promo-divider { width: 1px; height: 52px; background: var(--border); flex-shrink: 0; }

/* ---- FEATURES ---- */
.features-block { padding: 80px 0; background: var(--navy); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 20px;
    text-align: center;
    transition: var(--transition);
}
.feature-card:hover {
    background: var(--card-bg2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
    border-color: rgba(108, 60, 225, 0.18);
}
.feature-icon-wrap { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.feature-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ---- RTP BLOCK ---- */
.rtp-block { padding: 72px 0; background: var(--midnight); }
.rtp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.rtp-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.rtp-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}
.rtp-glow {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.rtp-value {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 6px;
    position: relative;
    line-height: 1;
}
.rtp-card h3 { font-size: 0.9rem; margin-bottom: 8px; color: #fff; }
.rtp-card p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.7; }
.rtp-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
}
.rtp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    border-radius: 2px;
}

/* ---- PROVIDERS ---- */
.providers { padding: 72px 0; background: var(--navy); }
.providers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.provider-logo {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px 14px;
    text-align: center;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.provider-logo:hover {
    background: var(--card-bg2);
    border-color: var(--primary);
    color: var(--primary-light);
}

/* ---- WHY SLOTS ---- */
.why-slots { padding: 72px 0; background: var(--midnight); }
.why-slots-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    background: linear-gradient(135deg, var(--card-bg2), var(--card-bg3));
    border-radius: var(--radius);
    padding: 44px;
    border: 1px solid var(--border);
}
.why-slots-text h2 { font-size: 1.7rem; font-weight: 900; color: #fff; margin-bottom: 14px; }
.why-slots-text p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 20px; line-height: 1.8; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.why-list li {
    font-size: 0.88rem;
    color: var(--text);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    gap: 8px;
}
.why-list li::before {
    content: '92';
    color: var(--gold);
    font-weight: 700;
}
.why-visual-card {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 0 50px rgba(108, 60, 225, 0.4);
    flex-shrink: 0;
}
.why-visual-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}
.why-visual-text { font-size: 0.8rem; font-weight: 700; color: #fff; }

/* ---- FAQ ---- */
.faq-section { padding: 80px 0; background: var(--navy); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(108, 60, 225, 0.18); }
.faq-item.open { border-color: var(--primary); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 17px 20px;
    text-align: right;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}
.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--primary-light);
    transition: transform 0.25s;
    flex-shrink: 0;
}
.faq-item.open .faq-question::after { content: '2'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer[hidden] { display: none; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 20px 16px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.85; }

/* ---- CTA SECTION ---- */
.cta-section {
    position: relative;
    padding: 88px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(108, 60, 225, 0.16) 0%, transparent 65%),
                var(--midnight);
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 560px;
    height: 280px;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.cta-content { position: relative; z-index: 2; }
.cta-section h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 12px; color: #fff; }
.cta-section p { color: var(--text-muted); margin-bottom: 32px; font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.site-footer { background: #060610; border-top: 1px solid var(--border); padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 12px;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }
.footer-col h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 16px; color: var(--gold); }
.footer-col a { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 9px; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .games-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .providers-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .rtp-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .hero-text { text-align: center; }
    .hero-desc { margin: 0 auto 26px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual-panel { order: -1; }
    .hero-visual-inner { width: 190px; height: 190px; }
    .hero-visual-img { width: 190px; height: 190px; }
    .hero-title { font-size: 2.1rem; }
    .why-slots-inner { grid-template-columns: 1fr; text-align: center; padding: 32px; }
    .why-visual-card { width: 130px; height: 130px; margin: 0 auto; }
    .why-visual-img { width: 80px; height: 80px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .promo-content { flex-direction: column; }
    .promo-divider { width: 100%; height: 1px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .rtp-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .container { padding: 0 16px; }
    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(8, 8, 24, 0.98);
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        z-index: 99;
    }
    .main-nav.active { display: flex; }
    .nav-toggle { display: flex; }
    .hero { padding: 52px 0 44px; }
    .hero-title { font-size: 1.7rem; }
    .hero-stats { gap: 8px; }
    .stat-chip { min-width: 68px; padding: 8px 10px; }
    .section-title { font-size: 1.5rem; }
    .games-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .providers-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .cta-section h2 { font-size: 1.7rem; }
    .why-slots-inner { padding: 24px; gap: 24px; }
    .rtp-grid { gap: 14px; }
}

/* ======================
   LOCAL IMAGE WRAPPERS
   ====================== */
.games-featured-img-wrap {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 40px rgba(255,215,0,0.1);
    border: 2px solid rgba(255,215,0,0.3);
}

.games-featured-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.promo-visual-wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,215,0,0.2);
}

.promo-visual-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Override promo strip background to work with real image */
.promo-strip {
    position: relative;
    overflow: hidden;
}

.promo-strip-bg {
    display: none;
}


/* ---- LOCAL DISPLAY NOTICE ---- */
.local-display-notice {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(230, 57, 70, 0.06));
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    padding: 12px 0;
    margin-top: 0;
}
.notice-text {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 215, 0, 0.7);
    font-weight: 600;
    letter-spacing: 0.02em;
}