/* SlotsGames.pk - Dark Gold Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

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

:root {
  --gold: #f5c518;
  --gold-light: #ffd84d;
  --gold-dark: #c9a010;
  --dark: #0d0d0d;
  --dark2: #151515;
  --dark3: #1e1e1e;
  --dark4: #252525;
  --text: #e8e8e8;
  --text-muted: #999;
  --green: #22c55e;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--text); line-height: 1.7; font-size: 16px; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }

/* HEADER */
header { background: var(--dark2); border-bottom: 2px solid var(--gold-dark); position: sticky; top: 0; z-index: 1000; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.logo-text { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--gold); }

nav#nav-menu { display: flex; gap: 4px; align-items: center; }
.nav-link { color: var(--text); padding: 6px 12px; border-radius: 6px; font-size: 0.9rem; font-weight: 500; transition: background 0.2s, color 0.2s; }
.nav-link:hover, .nav-link.active { background: var(--gold-dark); color: var(--dark); }

#nav-toggle { display: none; background: none; border: 2px solid var(--gold); color: var(--gold); width: 40px; height: 40px; border-radius: 6px; cursor: pointer; font-size: 1.3rem; }

/* HERO */
.hero { background: linear-gradient(135deg, #0d0d0d 0%, #1a1200 50%, #0d0d0d 100%); padding: 60px 16px 50px; text-align: center; border-bottom: 1px solid #2a2000; }
.hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800; color: var(--gold); line-height: 1.2; margin-bottom: 16px; }
.hero h1 span { color: #fff; }
.hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 28px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--dark); padding: 12px 28px; border-radius: 8px; font-weight: 700; font-size: 1rem; border: none; cursor: pointer; transition: background 0.2s, transform 0.1s; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); color: var(--dark); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); padding: 10px 24px; border-radius: 8px; font-weight: 600; font-size: 1rem; display: inline-block; transition: background 0.2s; }
.btn-outline:hover { background: var(--gold); color: var(--dark); }

/* SECTION */
.section { padding: 60px 16px; }
.section-alt { background: var(--dark2); }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { font-family: 'Poppins', sans-serif; font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 700; color: var(--gold); text-align: center; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; }

/* PLATFORM GRID */
.platform-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.platform-card { background: var(--dark3); border: 1px solid #2a2a2a; border-radius: var(--radius); overflow: hidden; transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
.platform-card:hover { transform: translateY(-4px); border-color: var(--gold-dark); box-shadow: var(--shadow); }
.platform-card img { width: 100%; height: 140px; object-fit: cover; }
.card-body { padding: 16px; }
.card-body h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.card-body p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; }
.card-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-play { background: var(--gold); color: var(--dark); padding: 8px 14px; border-radius: 6px; font-size: 0.85rem; font-weight: 700; cursor: pointer; border: none; transition: background 0.2s; }
.btn-play:hover { background: var(--gold-light); color: var(--dark); }
.btn-review { border: 1px solid var(--gold-dark); color: var(--gold); padding: 7px 12px; border-radius: 6px; font-size: 0.82rem; font-weight: 600; transition: background 0.2s; }
.btn-review:hover { background: var(--gold-dark); color: var(--dark); }

/* ARTICLE LAYOUT */
.page-hero { background: linear-gradient(135deg, #0d0d0d, #1a1200); padding: 50px 16px 40px; border-bottom: 1px solid #2a2000; }
.page-hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: var(--gold); max-width: 900px; }
.page-hero p { color: var(--text-muted); margin-top: 12px; max-width: 700px; font-size: 1.05rem; }
.meta { display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.meta span { font-size: 0.82rem; color: var(--text-muted); }
.meta .tag { background: var(--gold-dark); color: var(--dark); padding: 3px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }

.content-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 16px; display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.article-body { min-width: 0; }
.article-body h2 { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); margin: 36px 0 14px; padding-bottom: 8px; border-bottom: 1px solid #2a2000; }
.article-body h3 { font-size: 1.1rem; font-weight: 600; color: var(--gold-light); margin: 24px 0 10px; }
.article-body p { margin-bottom: 16px; color: var(--text); }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 16px; }
.article-body li { margin-bottom: 8px; color: var(--text); }
.article-body strong { color: #fff; }
.article-img { width: 100%; border-radius: var(--radius); margin: 20px 0; border: 1px solid #2a2a2a; }

/* SIDEBAR */
.sidebar { position: sticky; top: 80px; }
.sidebar-box { background: var(--dark3); border: 1px solid #2a2a2a; border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }
.sidebar-box h4 { color: var(--gold); font-size: 1rem; font-weight: 700; margin-bottom: 14px; }
.sidebar-box ul { list-style: none; }
.sidebar-box ul li { border-bottom: 1px solid #2a2a2a; padding: 8px 0; }
.sidebar-box ul li:last-child { border: none; }
.sidebar-box ul li a { font-size: 0.88rem; color: var(--text); }
.sidebar-box ul li a:hover { color: var(--gold); }

/* BREADCRUMBS */
.breadcrumbs { background: var(--dark2); padding: 10px 16px; font-size: 0.82rem; }
.breadcrumbs-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.breadcrumb-item a { color: var(--gold); }
.breadcrumb-item.current { color: var(--text-muted); }
.breadcrumb-sep { color: var(--text-muted); }

/* FAQ */
.faq-list { margin-top: 20px; }
.faq-item { background: var(--dark3); border: 1px solid #2a2a2a; border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-q { padding: 16px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: #fff; }
.faq-q:hover { background: var(--dark4); }
.faq-q .icon { color: var(--gold); font-size: 1.2rem; transition: transform 0.2s; }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; color: var(--text-muted); font-size: 0.95rem; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 16px; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }

/* COMPARISON TABLE */
.compare-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.compare-table th { background: var(--gold-dark); color: var(--dark); padding: 12px 16px; text-align: left; font-weight: 700; }
.compare-table td { padding: 11px 16px; border-bottom: 1px solid #2a2a2a; font-size: 0.9rem; }
.compare-table tr:nth-child(even) td { background: var(--dark3); }
.compare-table tr:hover td { background: #1e1e1e; }

/* RATING */
.rating { display: flex; gap: 3px; }
.star { color: var(--gold); font-size: 1.1rem; }
.star.empty { color: #444; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, #1a1200, #0d0d0d); border: 1px solid var(--gold-dark); border-radius: var(--radius); padding: 32px; text-align: center; margin: 30px 0; }
.cta-banner h3 { font-family: 'Poppins', sans-serif; color: var(--gold); font-size: 1.4rem; margin-bottom: 10px; }
.cta-banner p { color: var(--text-muted); margin-bottom: 20px; }

/* HUB GRID */
.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.hub-card { background: var(--dark3); border: 1px solid #2a2a2a; border-radius: var(--radius); padding: 24px; transition: border-color 0.2s, transform 0.2s; }
.hub-card:hover { border-color: var(--gold-dark); transform: translateY(-3px); }
.hub-card h3 { color: var(--gold); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.hub-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; }
.hub-card a { font-size: 0.88rem; color: var(--gold); font-weight: 600; }

/* STATS ROW */
.stats-row { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin: 30px 0; }
.stat-box { background: var(--dark3); border: 1px solid #2a2a2a; border-radius: var(--radius); padding: 20px 30px; text-align: center; min-width: 140px; }
.stat-box .num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-box .label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* FOOTER */
footer { background: var(--dark2); border-top: 2px solid var(--gold-dark); padding: 50px 16px 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 30px; margin-bottom: 40px; }
.footer-col h4 { color: var(--gold); font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.88rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #2a2a2a; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-logo { color: var(--gold); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; }

/* NOTICE */
.disclaimer-notice { background: #1a0a0a; border: 1px solid #5a1a1a; border-radius: var(--radius); padding: 14px 18px; font-size: 0.82rem; color: #c9a0a0; margin: 20px 0; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 680px) {
  nav#nav-menu { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark2); border-bottom: 2px solid var(--gold-dark); padding: 10px 16px; gap: 4px; }
  nav#nav-menu.open { display: flex; }
  #nav-toggle { display: flex; align-items: center; justify-content: center; }
  .hero h1 { font-size: 1.6rem; }
  .platform-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* FAQ JS */
.faq-q { user-select: none; }
