/* ================================================
   FELICEBET CASINO REVIEW — custom.css
   Clean editorial style, no-fancy-design
   Fonts: Oswald (headings) + Source Serif 4 (body)
   ================================================ */

/* ---- CSS Variables ---- */
:root {
  --gold: #c9960a;
  --gold-light: #f0b429;
  --gold-pale: #fef9ec;
  --dark: #0f0f0f;
  --dark-2: #1a1a1a;
  --dark-3: #2b2b2b;
  --text: #1c1c1c;
  --text-light: #555;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --border: #e0dbd0;
  --green: #1b7d3e;
  --green-pale: #edf7f1;
  --red-pale: #fdf2f2;
  --red: #c0392b;
  --section-max: 1080px;
  --nav-h: 64px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--gold-light); }

img { max-width: 100%; display: block; }

ul { list-style: disc; padding-left: 1.4rem; }
ul li { margin-bottom: 0.35rem; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; letter-spacing: -0.5px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 3px solid var(--gold); display: inline-block; }
h3 { font-size: 1.25rem; font-weight: 600; margin: 1.8rem 0 0.6rem; color: var(--dark-2); }
h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--dark-3); }

p { margin-bottom: 1rem; color: var(--text); }

/* ---- NAV ---- */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  height: var(--nav-h);
  border-bottom: 3px solid var(--gold);
  transition: box-shadow 0.3s;
}
.main-nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.5); }

.nav-inner {
  max-width: var(--section-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}
.nav-links li a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ccc;
  padding: 0.35rem 0.55rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.4rem 0.9rem !important;
  font-weight: 600 !important;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  background: var(--dark-2);
  background-image: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 40%, #2b2800 100%);
  color: var(--white);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(201,150,10,0.03) 40px,
    rgba(201,150,10,0.03) 80px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.hero h1 { color: var(--white); margin-bottom: 0.8rem; }

.hero-sub {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 2px; }
.rating-text { color: #ccc; font-size: 0.95rem; }
.rating-text strong { color: var(--white); }

.hero-disclaimer { font-size: 0.75rem; color: #666; margin-top: 0.75rem; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); text-decoration: none; }
.btn-large { font-size: 1.15rem; padding: 1.1rem 2.8rem; }

/* ---- SEO INTRO ---- */
.seo-intro {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.seo-intro-inner {
  max-width: var(--section-max);
  margin: 0 auto;
}
.seo-intro p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}
.seo-intro strong { color: var(--text); }
.seo-intro em { font-style: italic; color: var(--text); }

/* ---- PAGE WRAPPER ---- */
.page-wrapper { background: var(--white); }

/* ---- CONTENT SECTIONS ---- */
.content-section {
  padding: 4rem 1.5rem;
  max-width: var(--section-max);
  margin: 0 auto;
}
.alt-bg {
  background: var(--off-white);
  max-width: 100%;
  padding: 4rem 1.5rem;
}
.alt-bg > * { max-width: var(--section-max); margin-left: auto; margin-right: auto; }

/* ---- CARD GRID ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 1.2rem 1.4rem;
  border-radius: 2px;
}
.info-card.green { border-left-color: var(--green); background: var(--green-pale); }
.info-card h4 { margin-bottom: 0.5rem; }
.info-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ---- STEPS GRID ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin: 1.2rem 0 2rem;
}
.step-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 1.2rem;
  border-radius: 2px;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.step-card h4, .step-card h3 { margin: 0.4rem 0 0.5rem; font-size: 1rem; }
.step-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ---- TIPS BOX ---- */
.tips-box {
  background: #fffbf0;
  border: 1px solid #e8d48a;
  border-left: 5px solid var(--gold);
  padding: 1.4rem 1.6rem;
  border-radius: 2px;
  margin: 1.5rem 0;
}
.tips-box h4 { margin-bottom: 0.75rem; color: var(--dark); }
.tips-box ul { padding-left: 0; list-style: none; }
.tips-box ul li { font-size: 0.92rem; padding: 0.3rem 0; border-bottom: 1px solid #f0e5b8; }
.tips-box ul li:last-child { border: none; }

/* ---- NOTE BOX ---- */
.note-box {
  background: #f0f4ff;
  border: 1px solid #c5d0f0;
  border-left: 5px solid #3a5fc0;
  padding: 1.2rem 1.5rem;
  border-radius: 2px;
  margin: 1.5rem 0;
}
.note-box.warning {
  background: var(--red-pale);
  border-color: #f5b8b8;
  border-left-color: var(--red);
}
.note-box h4 { margin-bottom: 0.6rem; }
.note-box p, .note-box ul { font-size: 0.9rem; margin: 0; }
.note-box ul { padding-left: 0; list-style: none; }
.note-box ul li { padding: 0.2rem 0; }

/* ---- FACTS TABLE ---- */
.facts-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: 0.92rem;
}
.facts-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.facts-table tr:nth-child(even) td { background: var(--off-white); }
.facts-table td:first-child { width: 40%; color: var(--text-light); }
.facts-table h4 { margin: 0; font-size: 0.92rem; }

/* ---- GAMES GRID ---- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
  margin: 1.5rem 0;
}
.game-card {
  border: 1px solid var(--border);
  padding: 1.3rem;
  border-radius: 2px;
  background: var(--white);
  transition: box-shadow 0.2s;
}
.game-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.game-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.game-card h3 { font-size: 1.05rem; margin: 0 0 0.5rem; }
.game-card p { font-size: 0.86rem; color: var(--text-light); margin: 0 0 0.75rem; }
.game-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

/* ---- BONUS CARDS ---- */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.bonus-card {
  border: 1px solid var(--border);
  border-top: 5px solid var(--gold);
  padding: 1.5rem;
  border-radius: 2px;
  background: var(--white);
}
.bonus-card.featured {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.bonus-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.bonus-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.bonus-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.bonus-card ul { font-size: 0.88rem; padding-left: 1.2rem; margin-bottom: 0.75rem; }
.bonus-terms { font-size: 0.78rem; color: var(--text-light); border-top: 1px solid var(--border); padding-top: 0.6rem; margin: 0; }

/* ---- REG STEPS ---- */
.reg-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.1rem;
  margin: 1.2rem 0 2rem;
}
.reg-step {
  border: 1px solid var(--border);
  padding: 1.2rem;
  background: var(--off-white);
  border-radius: 2px;
}
.reg-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.reg-step h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.reg-step p { font-size: 0.86rem; color: var(--text-light); margin: 0; }

/* ---- FORM PREVIEW ---- */
.form-preview {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 1.8rem;
  border-radius: 2px;
  margin: 1rem 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.form-field label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}
.field-mock {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.6rem 0.8rem;
  border-radius: 2px;
  font-size: 0.9rem;
  color: #bbb;
}
.form-cta { grid-column: 1 / -1; text-align: center; padding-top: 0.5rem; }

/* ---- PAYMENT GRID ---- */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
  margin: 1.2rem 0;
}
.payment-group {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.2rem;
  border-radius: 2px;
}
.payment-group h4 { margin-bottom: 0.75rem; font-size: 0.95rem; }
.payment-group ul { font-size: 0.88rem; color: var(--text-light); }

/* ---- COMPARISON TABLE ---- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 1.2rem 0;
}
.comparison-table th {
  background: var(--dark);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  padding: 0.75rem 1rem;
  text-align: left;
}
.comparison-table th:first-child { background: var(--dark-2); }
.comparison-table th:nth-child(2) { background: var(--gold); color: var(--dark); }
.comparison-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.comparison-table tr:nth-child(even) td { background: var(--off-white); }
.green-cell { color: var(--green); font-weight: 600; }

/* ---- PROVIDERS GRID ---- */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
  margin: 1.5rem 0;
}
.provider-card {
  border: 1px solid var(--border);
  padding: 1.3rem;
  border-radius: 2px;
  background: var(--white);
}
.prov-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.provider-card h3 { font-size: 1.05rem; margin: 0 0 0.5rem; }
.provider-card p { font-size: 0.86rem; color: var(--text-light); margin: 0; }

/* ---- PROS & CONS ---- */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.2rem 0;
}
.pros, .cons {
  padding: 1.5rem;
  border-radius: 2px;
}
.pros {
  background: var(--green-pale);
  border: 1px solid #b8dfc8;
  border-left: 5px solid var(--green);
}
.cons {
  background: var(--red-pale);
  border: 1px solid #f5c0c0;
  border-left: 5px solid var(--red);
}
.pros h3, .cons h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.pros ul, .cons ul { font-size: 0.9rem; padding-left: 1.2rem; }
.pros ul li { color: var(--green); }
.cons ul li { color: var(--red); }

/* ---- FAQ ---- */
.faq-list { margin: 1.2rem 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.5rem 1rem 0;
  cursor: pointer;
  position: relative;
  margin: 0;
  color: var(--dark);
  font-family: 'Oswald', sans-serif;
  border: none;
  display: block;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-q:hover { color: var(--gold); }
.faq-a {
  display: none;
  padding: 0.5rem 0 1.2rem;
}
.faq-a p { font-size: 0.92rem; color: var(--text-light); margin: 0; }
.faq-item.open .faq-a { display: block; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--dark);
  background-image: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 60%, #2b2800 100%);
  color: var(--white);
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-section h2 { color: var(--white); border-color: transparent; display: block; font-size: 2rem; margin-bottom: 1rem; }
.cta-section p { color: #bbb; margin-bottom: 1.5rem; }
.cta-bonus {
  display: inline-block;
  background: rgba(201,150,10,0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  padding: 0.6rem 1.8rem;
  border-radius: 2px;
  margin-bottom: 1.8rem;
}
.cta-disclaimer { font-size: 0.75rem; color: #555; margin-top: 1rem; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark-2);
  color: #aaa;
  padding: 3rem 1.5rem 0;
  font-size: 0.88rem;
}
.footer-inner {
  max-width: var(--section-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}
.footer-col h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 1rem;
  border: none;
  padding: 0;
  display: block;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: #aaa; font-size: 0.86rem; }
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }
.footer-col p { font-size: 0.84rem; line-height: 1.65; margin-bottom: 0.75rem; }
.footer-license { color: #666; }
.footer-rg { color: #888; font-size: 0.8rem; margin-top: 0.5rem; }

.footer-bottom {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: #555;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--dark);
    padding: 1rem 1.5rem;
    border-top: 1px solid #333;
    gap: 0.1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 0.6rem 0; font-size: 0.9rem; }
  .nav-toggle { display: block; }
  .main-nav { position: sticky; }

  .pros-cons-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.78rem; overflow-x: auto; display: block; }
  .hero-stats { gap: 1.2rem; }

  .content-section, .alt-bg { padding: 2.8rem 1rem; }
  h2 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1rem 2.5rem; }
  .stat-num { font-size: 1.5rem; }
  .bonus-amount { font-size: 1.2rem; }
}
