/* ======================================
   ARABIC SLOTS - PREMIUM GOLD / REAL-MONEY STYLE
   Rich black + gold, commercial slots lobby tone
   ====================================== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
    --primary:#7c3aed;
    --primary-dark:#4c1d95;
    --gold:#f59e0b;
    --gold-light:#fcd34d;
    --gold-dim:#b45309;
    --accent:#dc2626;
    --bg-dark:#050810;
    --bg-mid:#0a1020;
    --bg-card:#0e1628;
    --bg-card-hover:#1420380;
    --text:#f0f4ff;
    --text-muted:#8899bb;
    --green:#22c55e;
    --border:rgba(245,158,11,0.1);
    --border-hover:rgba(245,158,11,0.25);
    --radius:14px;
    --radius-lg:20px;
    --shadow:0 4px 24px rgba(0,0,0,0.5);
    --shadow-hover:0 12px 40px rgba(0,0,0,0.6);
    --transition:all 0.28s ease;
}

html{scroll-behavior:smooth}
body{
    font-family:'Segoe UI',system-ui,-apple-system,sans-serif;
    background:var(--bg-dark);
    color:var(--text);
    line-height:1.75;
    direction:rtl;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
img{display:block;max-width:100%}

.container{max-width:1200px;margin:0 auto;padding:0 20px}

/* HEADER */
.site-header{
    background:rgba(5,8,16,0.94);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid var(--border);
    position:fixed;top:0;right:0;left:0;z-index:1000;
    height:64px;
    display:flex;align-items:center;
}
.header-inner{
    display:flex;align-items:center;justify-content:space-between;width:100%;
}
.logo{
    font-size:1.25rem;font-weight:800;
    color:var(--gold);
    display:flex;align-items:center;gap:8px;
    letter-spacing:-0.3px;white-space:nowrap;
}
.logo-icon{font-size:1.4rem;line-height:1}

.main-nav{
    display:flex;gap:4px;align-items:center;
}
.main-nav a{
    color:var(--text-muted);
    font-weight:500;
    padding:8px 14px;
    border-radius:8px;
    transition:var(--transition);
    font-size:0.88rem;white-space:nowrap;
}
.main-nav a:hover{color:var(--gold-light);background:rgba(245,158,11,0.07)}
.main-nav a:focus-visible{outline:2px solid var(--gold);outline-offset:2px}

.nav-toggle{
    display:none;
    background:none;border:none;
    font-size:1.6rem;color:var(--text);
    padding:6px 10px;border-radius:8px;
}
.nav-toggle:hover{color:var(--gold)}

/* HERO */
.hero{
    min-height:100vh;
    padding:100px 0 72px;
    display:flex;align-items:center;
    position:relative;overflow:hidden;
}
.hero-glow{
    position:absolute;inset:0;pointer-events:none;
    background:
        radial-gradient(ellipse 60% 50% at 60% 0%,rgba(245,158,11,0.14) 0%,transparent 55%),
        radial-gradient(ellipse 40% 35% at 20% 60%,rgba(124,58,237,0.08) 0%,transparent 50%),
        linear-gradient(180deg,#050810 0%,#0a1020 100%);
}
.hero-inner{
    display:grid;
    grid-template-columns:1fr auto;
    gap:48px;align-items:center;width:100%;position:relative;z-index:2;
}
.hero-text{}
.hero-eyebrow{
    display:inline-block;
    background:rgba(245,158,11,0.12);
    border:1px solid rgba(245,158,11,0.3);
    color:var(--gold-light);
    padding:6px 16px;border-radius:999px;
    font-size:0.82rem;font-weight:700;
    margin-bottom:16px;letter-spacing:0.3px;
}
.hero-title{
    font-size:2.8rem;font-weight:900;line-height:1.18;
    margin-bottom:18px;color:#fff;
    text-shadow:0 2px 20px rgba(245,158,11,0.15);
}
.hero-desc{
    font-size:1.05rem;color:var(--text-muted);
    margin-bottom:28px;line-height:1.85;max-width:600px;
}
.hero-stats{
    display:flex;gap:12px;margin-bottom:32px;flex-wrap:wrap;
}
.stat-chip{
    background:rgba(14,22,40,0.8);
    border:1px solid var(--border);
    border-radius:12px;padding:14px 20px;
    display:flex;flex-direction:column;align-items:center;min-width:100px;
    backdrop-filter:blur(8px);
}
.stat-num{font-size:1.55rem;font-weight:900;color:var(--gold);line-height:1.2}
.stat-label{font-size:0.72rem;color:var(--text-muted);margin-top:2px;letter-spacing:0.2px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}

.hero-visual{
    width:320px;height:280px;
    display:flex;align-items:center;justify-content:center;
    position:relative;z-index:2;flex-shrink:0;
}
.hero-img-frame{
    width:100%;height:100%;
    border-radius:var(--radius-lg);overflow:hidden;
    border:1px solid var(--border-hover);
    background:linear-gradient(135deg,#1a1030,#0d0820);
    box-shadow:0 0 40px rgba(245,158,11,0.12),0 20px 60px rgba(0,0,0,0.5);
    display:flex;align-items:center;justify-content:center;
}
.hero-img-frame img{
    width:100%;height:100%;object-fit:cover;opacity:0.55;
}

/* BUTTONS */
.btn{
    display:inline-block;padding:12px 26px;
    border-radius:10px;font-weight:700;font-size:0.9rem;
    border:none;transition:var(--transition);
    text-align:center;cursor:pointer;white-space:nowrap;
}
.btn-primary{
    background:linear-gradient(135deg,var(--gold),var(--gold-dim));
    color:#050810;box-shadow:0 4px 18px rgba(245,158,11,0.35);
    font-weight:800;
}
.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 30px rgba(245,158,11,0.5);
    background:linear-gradient(135deg,var(--gold-light),var(--gold));
}
.btn-primary:active{transform:translateY(0)}

.btn-gold{
    background:rgba(245,158,11,0.08);
    color:var(--gold-light);
    border:1.5px solid rgba(245,158,11,0.35);
}
.btn-gold:hover{
    background:rgba(245,158,11,0.14);
    border-color:var(--gold);
    transform:translateY(-2px);
    box-shadow:0 6px 20px rgba(245,158,11,0.15);
}

.btn-sm{padding:9px 18px;font-size:0.82rem;border-radius:8px}
.btn-lg{padding:15px 36px;font-size:1rem;border-radius:12px}

/* SECTIONS */
.section{padding:72px 0}
.section-alt{background:rgba(255,255,255,0.015)}
.section-head{margin-bottom:20px}
.section-title{
    font-size:1.9rem;font-weight:900;
    text-align:center;margin-bottom:6px;
    color:#fff;letter-spacing:-0.3px;
}
.section-sub{
    text-align:center;color:var(--text-muted);
    margin-bottom:44px;font-size:0.95rem;
}

/* GAMES */
.games-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(210px,1fr));
    gap:20px;
}
.game-card{
    background:linear-gradient(180deg,rgba(14,22,40,0.9),rgba(10,16,32,0.9));
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;
    transition:var(--transition);
    display:flex;flex-direction:column;
    box-shadow:0 4px 16px rgba(0,0,0,0.3);
}
.game-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-hover),0 0 30px rgba(245,158,11,0.1);
    border-color:var(--border-hover);
}
.game-thumb{
    height:140px;
    background:linear-gradient(135deg,#1a1040,#0d0820);
    display:flex;align-items:center;justify-content:center;
    position:relative;overflow:hidden;
}
.game-thumb img{
    position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0.5;
}
.game-thumb-icon{font-size:3rem;line-height:1;position:relative;z-index:2}
.game-badge{
    position:absolute;top:10px;right:10px;
    padding:3px 10px;border-radius:20px;
    font-size:0.65rem;font-weight:800;letter-spacing:0.5px;color:#fff;z-index:3;
}
.game-badge-hot{background:var(--accent)}
.game-badge-new{background:var(--gold);color:#050810}

.game-info{
    padding:16px 16px 18px;display:flex;flex-direction:column;gap:6px;flex:1;
}
.game-name{font-size:0.95rem;font-weight:700;color:#fff}
.game-provider{font-size:0.75rem;color:var(--text-muted)}
.game-meta{display:flex;gap:10px;font-size:0.78rem;margin-top:2px}
.game-meta .rtp{color:var(--green);font-weight:700}
.game-meta .volatility{color:var(--gold);font-weight:600}
.game-link{
    display:block;margin-top:auto;padding-top:10px;
    background:rgba(245,158,11,0.1);
    color:var(--gold-light);
    border:1px solid rgba(245,158,11,0.2);
    border-radius:8px;padding:8px;text-align:center;
    font-size:0.82rem;font-weight:700;transition:var(--transition);
}
.game-link:hover{background:var(--gold);color:#050810;border-color:var(--gold)}

/* CATEGORIES */
.cats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(155px,1fr));
    gap:16px;
}
.cat-card{
    background:rgba(14,22,40,0.6);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:24px 14px;text-align:center;
    display:flex;flex-direction:column;align-items:center;gap:8px;
    transition:var(--transition);
    backdrop-filter:blur(6px);
}
.cat-card:hover{
    background:rgba(14,22,40,0.9);
    border-color:var(--border-hover);
    transform:translateY(-3px);
    box-shadow:0 8px 24px rgba(0,0,0,0.3);
}
.cat-icon{font-size:2rem;line-height:1}
.cat-name{font-weight:700;font-size:0.9rem;color:#fff}
.cat-desc{font-size:0.75rem;color:var(--text-muted)}

/* BONUSES */
.bonuses-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:20px;
}
.bonus-card{
    background:linear-gradient(180deg,rgba(14,22,40,0.9),rgba(10,16,32,0.9));
    border:1px solid var(--border);
    border-radius:var(--radius-lg);overflow:hidden;display:flex;
    transition:var(--transition);
    box-shadow:0 4px 16px rgba(0,0,0,0.3);
}
.bonus-card:hover{
    border-color:var(--border-hover);
    transform:translateY(-5px);
    box-shadow:var(--shadow-hover),0 0 25px rgba(245,158,11,0.08);
}
.bonus-visual{
    width:96px;min-height:100px;
    background:linear-gradient(135deg,rgba(245,158,11,0.2),rgba(180,83,9,0.2));
    border-left:1px solid var(--border);
    display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.bonus-visual-icon{font-size:2.8rem}
.bonus-content{
    padding:22px;flex:1;display:flex;flex-direction:column;gap:6px;
}
.bonus-badge{
    background:rgba(245,158,11,0.12);
    color:var(--gold-light);
    padding:3px 10px;border-radius:20px;
    font-size:0.7rem;font-weight:700;
    display:inline-block;width:fit-content;
    border:1px solid rgba(245,158,11,0.2);
}
.bonus-card h3{font-size:0.98rem;font-weight:700;color:#fff}
.bonus-card p{font-size:0.82rem;color:var(--text-muted);line-height:1.6}
.bonus-link{
    display:inline-block;margin-top:auto;
    background:rgba(245,158,11,0.1);
    color:var(--gold-light);
    border:1px solid rgba(245,158,11,0.2);
    border-radius:8px;padding:8px 16px;
    font-size:0.8rem;font-weight:700;
    transition:var(--transition);width:fit-content;
}
.bonus-link:hover{background:var(--gold);color:#050810;border-color:var(--gold)}

/* FEATURES */
.feats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
    gap:20px;
}
.feat-item{
    text-align:center;padding:28px 18px;
    background:rgba(14,22,40,0.5);
    border:1px solid var(--border);
    border-radius:var(--radius);
    transition:var(--transition);
}
.feat-item:hover{
    border-color:var(--border-hover);
    background:rgba(14,22,40,0.8);
    transform:translateY(-3px);
    box-shadow:0 8px 24px rgba(0,0,0,0.3);
}
.feat-icon{font-size:2.2rem;display:block;margin-bottom:12px}
.feat-item h3{font-size:0.92rem;font-weight:700;margin-bottom:8px;color:#fff}
.feat-item p{font-size:0.82rem;color:var(--text-muted);line-height:1.65}

/* WHY / BENEFITS */
.why-section{
    padding:72px 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%,rgba(245,158,11,0.06) 0%,transparent 60%),
        var(--bg-dark);
}
.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(210px,1fr));
    gap:20px;
}
.why-item{
    text-align:center;padding:32px 20px;
    background:rgba(245,158,11,0.03);
    border:1px solid rgba(245,158,11,0.12);
    border-radius:var(--radius);
    transition:var(--transition);
}
.why-item:hover{
    background:rgba(245,158,11,0.07);
    transform:translateY(-4px);
    box-shadow:0 8px 24px rgba(245,158,11,0.1);
    border-color:rgba(245,158,11,0.3);
}
.why-icon{font-size:2.4rem;margin-bottom:14px;display:block}
.why-item h3{font-size:0.95rem;font-weight:700;margin-bottom:10px;color:var(--gold-light)}
.why-item p{font-size:0.85rem;color:var(--text-muted);line-height:1.7}

/* RTP */
.rtp-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
    gap:20px;
}
.rtp-card{
    background:linear-gradient(180deg,rgba(14,22,40,0.8),rgba(10,16,32,0.8));
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:32px 20px;text-align:center;
    transition:var(--transition);
}
.rtp-card:hover{
    border-color:var(--border-hover);
    transform:translateY(-3px);
    box-shadow:0 8px 24px rgba(0,0,0,0.3);
}
.rtp-value{
    font-size:2.8rem;font-weight:900;
    color:var(--gold);margin-bottom:6px;line-height:1;
    text-shadow:0 2px 16px rgba(245,158,11,0.3);
}
.rtp-card h3{font-size:0.9rem;font-weight:700;margin-bottom:10px;color:#fff}
.rtp-card p{font-size:0.82rem;color:var(--text-muted);line-height:1.65}

/* PROVIDERS */
.providers{padding:72px 0}
.providers-showcase{
    display:flex;flex-wrap:wrap;gap:10px;justify-content:center;
}
.provider-tag{
    background:rgba(14,22,40,0.5);
    border:1px solid var(--border);
    padding:9px 20px;border-radius:30px;
    font-size:0.85rem;font-weight:600;color:var(--text-muted);
    transition:var(--transition);
}
.provider-tag:hover{
    border-color:var(--border-hover);
    color:var(--gold-light);
    background:rgba(245,158,11,0.06);
}

/* FAQ */
.faq-section{padding:72px 0}
.faq-list{max-width:720px;margin:0 auto;display:flex;flex-direction:column;gap:10px}
.faq-item{
    background:rgba(14,22,40,0.5);
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;transition:var(--transition);
    backdrop-filter:blur(6px);
}
.faq-item:hover{border-color:var(--border-hover)}
.faq-item.open{border-color:var(--gold)}
.faq-question{
    width:100%;padding:18px 24px;
    text-align:right;
    font-size:0.95rem;font-weight:600;color:var(--text);
    display:flex;justify-content:space-between;align-items:center;
    background:none;border:none;cursor:pointer;
    transition:var(--transition);
}
.faq-question::after{
    content:'+';font-size:1.3rem;
    color:var(--text-muted);transition:var(--transition);
    flex-shrink:0;margin-right:12px;
}
.faq-item.open .faq-question::after{content:'-';color:var(--gold)}
.faq-question:hover{color:var(--gold-light)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.3s ease}
.faq-item.open .faq-answer{max-height:300px}
.faq-answer p{padding:0 24px 18px;font-size:0.88rem;color:var(--text-muted);line-height:1.7}

/* CTA */
.cta-section{
    background:
        radial-gradient(ellipse 50% 70% at 50% 50%,rgba(245,158,11,0.1) 0%,transparent 70%),
        rgba(10,16,32,0.95);
    text-align:center;
    padding:80px 0;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}
.cta-section h2{font-size:2.1rem;font-weight:900;margin-bottom:12px;color:#fff}
.cta-section p{color:var(--text-muted);margin-bottom:28px;font-size:1rem}

/* FOOTER */
.site-footer{background:#030508;padding:56px 0 0}
.footer-inner{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
    gap:36px;margin-bottom:36px;
}
.footer-col h4{font-size:0.9rem;font-weight:700;margin-bottom:14px;color:var(--gold)}
.footer-col a{display:block;font-size:0.84rem;color:var(--text-muted);margin-bottom:9px;transition:var(--transition)}
.footer-col a:hover{color:var(--gold-light)}
.footer-bottom{
    border-top:1px solid var(--border);
    padding:20px;text-align:center;
    font-size:0.8rem;color:var(--text-muted);
}
.local-notice{
    background:rgba(245,158,11,0.06);
    border:1px solid rgba(245,158,11,0.2);
    border-radius:var(--radius);
    margin:16px 20px 24px;
    padding:12px 20px;
    text-align:center;
}
.local-notice p{
    font-size:0.8rem;color:var(--gold);
    font-weight:600;
}

/* RESPONSIVE */
@media(max-width:900px){
    .hero-inner{grid-template-columns:1fr;gap:32px}
    .hero-visual{display:none}
    .main-nav{
        display:none;flex-direction:column;
        position:absolute;top:64px;right:0;left:0;
        background:rgba(5,8,16,0.98);
        padding:16px;gap:6px;
        border-bottom:1px solid var(--border);
        backdrop-filter:blur(14px);
    }
    .main-nav.active{display:flex}
    .nav-toggle{display:block}
    .hero-title{font-size:2.2rem}
    .hero-stats{gap:10px}
    .stat-chip{min-width:85px;padding:10px 14px}
    .hero-actions{flex-direction:column;align-items:flex-start}
}
@media(max-width:600px){
    .hero{padding:88px 0 56px}
    .hero-title{font-size:1.75rem}
    .section-title{font-size:1.55rem}
    .section{padding:56px 0}
    .games-grid{grid-template-columns:repeat(2,1fr);gap:14px}
    .cats-grid{grid-template-columns:repeat(2,1fr);gap:12px}
    .bonuses-grid{grid-template-columns:1fr}
    .bonus-card{flex-direction:column}
    .bonus-visual{width:100%;min-height:80px}
    .feats-grid{grid-template-columns:repeat(2,1fr);gap:14px}
    .why-grid{grid-template-columns:repeat(2,1fr);gap:14px}
    .rtp-grid{grid-template-columns:repeat(2,1fr);gap:14px}
    .container{padding:0 14px}
    .cta-section h2{font-size:1.6rem}
    .cta-section{padding:60px 0}
}
