/* SlotsCity Casino — Real Brand Colors from slotscity.com
   Background: #000, Text: #fff, Accent: #00C853
   Font: Outfit (Google Fonts)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #000000;
  --bg-card: #0A0A0A;
  --bg-card-hover: #111111;
  --bg-elevated: #161616;
  --cta: #00C853;
  --cta-hover: #00E676;
  --cta-dark: #00A843;
  --accent: #00C853;
  --text: #FFFFFF;
  --text-muted: #767676;
  --text-secondary: #B0B0B0;
  --border: #1A1A1A;
  --border-hover: #00C853;
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Outfit', system-ui, -apple-system, sans-serif;
  --shadow: 0 4px 24px rgba(0, 200, 83, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 200, 83, 0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 500;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cta-hover); }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
}
.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 36px; width: auto; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
.logo-text span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--text-muted); font-size: 14px; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--cta); color: #000; font-weight: 700;
  padding: 10px 24px; border-radius: var(--radius-sm);
  font-size: 14px; transition: background 0.2s; text-decoration: none;
}
.nav-cta:hover { background: var(--cta-hover); color: #000; }

/* CTA BUTTON */
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cta); color: #000; font-weight: 700;
  padding: 16px 36px; border-radius: var(--radius);
  border: none; cursor: pointer; font-size: 16px;
  transition: all 0.2s;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.cta-btn:hover { background: var(--cta-hover); color: #000; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.cta-btn-sm {
  background: var(--cta); color: #000; font-weight: 700;
  padding: 10px 24px; border-radius: var(--radius-sm);
  font-size: 14px; transition: background 0.2s; text-decoration: none;
}
.cta-btn-sm:hover { background: var(--cta-hover); color: #000; }

/* HERO */
.hero {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  font-size: 42px; font-weight: 800; margin-bottom: 20px;
  color: var(--text);
  position: relative;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--cta), var(--cta-hover));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero .lead {
  font-size: 18px; color: var(--text-muted); max-width: 700px;
  margin: 0 auto 32px; position: relative;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; position: relative; }

/* SECTIONS */
.section {
  max-width: 1200px; margin: 0 auto;
  padding: 60px 24px;
}
.section h2 {
  font-size: 32px; font-weight: 800; margin-bottom: 16px;
  color: var(--text); position: relative; padding-bottom: 12px;
}
.section h2::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 60px; height: 4px; background: var(--accent); border-radius: 2px;
}
.section p { color: var(--text-secondary); margin-bottom: 16px; }
.section a { color: var(--accent); }

/* CARD GRID */
.grid { display: grid; gap: 24px; margin-top: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.2s;
}
.card:hover { background: var(--bg-card-hover); border-color: var(--border-hover); box-shadow: var(--shadow); }
.card h3 { font-size: 20px; margin-bottom: 12px; color: var(--text); font-weight: 700; }
.card p { color: var(--text-muted); }
.card .tag {
  display: inline-block; background: rgba(0, 200, 83, 0.12);
  color: var(--accent); padding: 4px 12px; border-radius: 6px;
  font-size: 13px; font-weight: 600; margin-top: 12px;
}

/* SLOT CARD — CSS gradient background, no images */
.slot-card {
  text-align: center;
  background: linear-gradient(135deg, #0A0A0A 0%, #0D1A0D 50%, #0A0A0A 100%);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.slot-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--cta), var(--cta-hover));
}
.slot-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.slot-card h3 { color: var(--text); font-weight: 700; }
.slot-card .rtp {
  font-size: 14px; color: var(--accent); font-weight: 700;
  margin-top: 8px;
}
.slot-card .provider { font-size: 13px; color: var(--text-muted); }
.slot-card .desc { font-size: 13px; color: var(--text-muted); margin-top: 12px; }

/* GAME TYPE CARDS */
.game-type-card {
  background: linear-gradient(135deg, #0A0A0A, #0D1A0D);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px; text-align: center;
  transition: all 0.2s;
  position: relative; overflow: hidden;
}
.game-type-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
}
.game-type-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.game-type-card .icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(0, 200, 83, 0.1); border: 1px solid rgba(0, 200, 83, 0.3);
}
.game-type-card .icon svg { width: 32px; height: 32px; fill: var(--accent); }
.game-type-card h3 { color: var(--text); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.game-type-card p { color: var(--text-muted); font-size: 14px; }

/* STEPS */
.steps { counter-reset: step; margin-top: 32px; }
.step {
  display: flex; gap: 20px; margin-bottom: 16px; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color 0.2s;
}
.step:hover { border-color: var(--border-hover); }
.step::before {
  counter-increment: step; content: counter(step);
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--accent); color: #000; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.step h3 { color: var(--text); margin-bottom: 8px; font-size: 18px; font-weight: 700; }
.step p { color: var(--text-muted); }

/* PAYMENT METHODS */
.pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
@media (max-width: 768px) { .pay-grid { grid-template-columns: repeat(2, 1fr); } }
.pay-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center;
  transition: all 0.2s;
}
.pay-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.pay-card .pay-name { font-weight: 700; color: var(--text); margin-top: 8px; }
.pay-card .pay-type { font-size: 12px; color: var(--text-muted); }
.pay-card .pay-icon { font-size: 32px; }

/* PAY SVG ICONS */
.pay-svg {
  width: 48px; height: 32px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}

/* FAQ */
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 16px; overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item summary {
  padding: 20px 28px; font-weight: 600; cursor: pointer;
  color: var(--text); font-size: 17px;
  list-style: none; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 28px; top: 20px;
  color: var(--accent); font-size: 22px; font-weight: 700;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] { border-color: var(--accent); }
.faq-item .faq-body {
  padding: 0 28px 24px; color: var(--text-muted);
}

/* BONUS BOX */
.bonus-box {
  background: linear-gradient(135deg, #0A0A0A, #0D1A0D);
  border: 1px solid var(--accent); border-radius: var(--radius);
  padding: 40px; text-align: center; margin-top: 32px;
  box-shadow: var(--shadow);
}
.bonus-box .bonus-amount {
  font-size: 36px; font-weight: 800; color: var(--accent);
}
.bonus-box .bonus-desc { color: var(--text-muted); margin: 12px 0 24px; }

/* INFO BOX */
.info-box {
  background: var(--bg-card); border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm); padding: 24px;
  margin: 24px 0;
}
.info-box p { margin: 0; color: var(--text-secondary); }

/* INTERNAL LINKS */
.internal-links {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.internal-links a {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 10px 20px; border-radius: var(--radius-sm); font-size: 14px;
  color: var(--text-muted); transition: all 0.2s; font-weight: 600;
}
.internal-links a:hover { border-color: var(--accent); color: var(--accent); }

/* RESPONSIBLE GAMBLING / 18+ */
.responsible {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; margin-top: 60px;
  text-align: center;
}
.responsible .age-badge {
  display: inline-block; border: 3px solid var(--accent);
  color: var(--accent); font-weight: 800; font-size: 24px;
  padding: 8px 16px; border-radius: var(--radius-sm); margin-bottom: 16px;
}
.responsible p { color: var(--text-muted); font-size: 14px; }

/* FOOTER */
.site-footer {
  background: #000; border-top: 1px solid var(--border);
  padding: 40px 24px; margin-top: 60px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between;
  align-items: flex-start;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo img { height: 32px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.footer-links a { color: var(--text-muted); font-size: 14px; font-weight: 600; }
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  max-width: 1200px; margin: 24px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border); text-align: center;
  color: var(--text-muted); font-size: 13px;
}

/* BREADCRUMB */
.breadcrumb { padding: 20px 24px; max-width: 1200px; margin: 0 auto; font-size: 14px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb span { color: var(--text-muted); margin: 0 8px; }
.breadcrumb .current { color: var(--accent); font-weight: 600; }

/* MOBILE NAV */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hero h1 { font-size: 28px; }
  .section h2 { font-size: 24px; }
  .section { padding: 40px 16px; }
  .hero { padding: 40px 16px; }
  .bonus-box { padding: 24px; }
  .bonus-box .bonus-amount { font-size: 28px; }
}
