/* ===== ReelsCasino — shared styles (inspired by the Swipe Games provider look) ===== */
:root {
    --bg: #ffffff;
    --bg-soft: #f6f4f2;
    --text: #1e1e1e;
    --muted: #5a5a5a;
    --accent: #ff541e;
    --accent-2: #ff981e;
    --accent-soft: rgba(255,84,30,0.10);
    --border: #eae6e1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'DM Sans', -apple-system, "system-ui", "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--muted);
    min-height: 100vh;
}

a { color: inherit; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.top-bar { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; }
.brand { font-weight: 800; font-size: 1.25rem; color: var(--text); display: flex; align-items: center; gap: 8px; }
.brand .accent { color: var(--accent); }
.nav-cta {
    background: var(--accent); color: #fff; padding: 10px 22px; border-radius: 8px; text-decoration: none;
    font-weight: 700; font-size: 0.9rem;
}

/* ===== HERO ===== */
.hero { padding: 30px 0 50px; background: var(--bg-soft); }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 6px; background: var(--accent-soft); color: var(--accent);
    padding: 6px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 700; margin-bottom: 20px;
}
.hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.hero-text { padding-top: 10px; }
.hero h1 { font-size: 2.2rem; line-height: 1.22; color: var(--text); font-weight: 800; }
.hero h1 .accent { color: var(--accent); }
.hero .lede { max-width: 660px; color: var(--muted); font-size: 1.08rem; margin-top: 18px; line-height: 1.65; }
.hero-cta-row { margin-top: 30px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.btn-primary {
    display: inline-block; background: var(--accent); color: #fff; padding: 15px 38px; border-radius: 10px;
    text-decoration: none; font-weight: 800; font-size: 1.05rem; box-shadow: 0 10px 24px rgba(255,84,30,0.25);
    transition: 0.2s; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,84,30,0.35); }
.disclaimer-line { font-size: 0.8rem; color: var(--muted); opacity: 0.85; }

.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; font-size: 0.88rem; color: var(--muted); }
.trust-row span { display: flex; align-items: center; gap: 6px; }

.hero-video-frame {
    width: 100%; max-width: 300px; aspect-ratio: 9 / 16; border-radius: 22px; overflow: hidden;
    background: #000; box-shadow: 0 20px 50px rgba(0,0,0,0.18); border: 1px solid var(--border);
    justify-self: end;
}
.hero-video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== HOW IT WORKS ===== */
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 24px; }
.how-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.how-num {
    display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px;
    border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-weight: 800; margin-bottom: 12px; font-size: 0.95rem;
}
.how-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.how-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

/* ===== SECTIONS ===== */
.section { padding: 54px 0 0; }
.section-heading { font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.section-sub { color: var(--muted); margin-bottom: 26px; font-size: 0.98rem; max-width: 700px; }

/* ===== GAME CARDS ===== */
.game-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.game-card {
    background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
    display: flex; flex-direction: column; transition: 0.2s; box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.game-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0,0,0,0.08); border-color: rgba(255,84,30,0.3); }
.game-cover-frame { width: 100%; aspect-ratio: 3 / 4; background: #efece8; overflow: hidden; }
.game-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.game-card-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.game-tag {
    display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px;
    background: var(--accent-soft); color: var(--accent); padding: 3px 10px; border-radius: 20px; width: fit-content;
}
.game-card h3 { font-size: 1.1rem; color: var(--text); }
.game-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; flex: 1; }
.game-meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 10px; }
.game-meta strong { color: var(--text); }
.game-play-btn {
    display: block; text-align: center; padding: 11px; border-radius: 10px; margin-top: 4px;
    background: var(--accent); color: #fff; text-decoration: none; font-weight: 700; font-size: 0.9rem;
}
.game-play-btn:hover { background: #e6480f; }
.coming-soon-btn {
    display: block; text-align: center; padding: 11px; border-radius: 10px; margin-top: 4px;
    background: var(--bg-soft); color: var(--muted); font-weight: 700; font-size: 0.9rem; border: 1px dashed var(--border);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    margin: 50px 0 0; background: var(--text); color: #fff;
    border-radius: 18px; padding: 28px 30px; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
}
.cta-banner .btn-secondary {
    background: var(--accent); color: #fff; padding: 12px 28px; border-radius: 10px; text-decoration: none;
    font-weight: 700; white-space: nowrap;
}

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border); padding: 16px 4px; }
.faq-item summary { cursor: pointer; font-weight: 700; color: var(--text); }
.faq-item p { margin-top: 10px; color: var(--muted); line-height: 1.6; }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg-soft); color: var(--muted); padding: 34px 0 30px; margin-top: 60px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; margin-bottom: 14px; }
.footer-links a { text-decoration: none; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-disclaimer { border-top: 1px solid var(--border); padding-top: 18px; font-size: 0.76rem; line-height: 1.7; color: #8a8580; }
.age-badge { display: inline-block; background: var(--accent); color: #fff; font-weight: 800; font-size: 0.75rem; padding: 2px 8px; border-radius: 6px; margin-right: 8px; }

@media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-video-frame { justify-self: center; margin-top: 30px; max-width: 260px; }
}

@media (max-width: 700px) {
    .hero h1 { font-size: 1.7rem; }
    .hero-cta-row { align-items: stretch; }
    .cta-banner { flex-direction: column; text-align: center; }
}
