/* ===== MONSTER CASINO UK — styles.css ===== */

/* ---- TOKENS ---- */
:root {
  --black:       #0a0a0a;
  --dark:        #111118;
  --card-bg:     #16161f;
  --card-border: #2a2a3a;
  --green:       #00e676;
  --green-dim:   #00b85a;
  --green-glow:  rgba(0,230,118,0.18);
  --red:         #ff1744;
  --red-dim:     #c8002e;
  --amber:       #ffab00;
  --white:       #f0f0f5;
  --muted:       #8888aa;
  --radius:      10px;
  --radius-lg:   18px;
  --font-head:   'Segoe UI', 'Arial Black', Arial, sans-serif;
  --font-body:   'Segoe UI', Arial, sans-serif;
  --transition:  0.22s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dim); }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- CONTAINER ---- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ---- FAVICON/LOGO SVG helpers ---- */
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green) 0%, #007a36 100%);
  display: flex; align-items: center; justify-content: center;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1;
}
.logo-text span { color: var(--green); }

/* ---- TOP BONUS BAR (sticky top) ---- */
.top-bonus-bar {
  background: linear-gradient(90deg, #002d10 0%, #005a22 40%, #003818 100%);
  border-bottom: 2px solid var(--green);
  padding: 10px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.top-bonus-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 0 auto;
}
.top-bonus-bar__text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.top-bonus-bar__text strong { color: var(--green); font-size: 1.05rem; }
.top-bonus-bar__badge {
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- HEADER ---- */
.site-header {
  background: var(--black);
  border-bottom: 1px solid var(--card-border);
  padding: 14px 0;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.header-nav a {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.header-nav a:hover { color: var(--white); background: var(--card-bg); }
.btn-header {
  background: var(--green);
  color: var(--black) !important;
  font-weight: 800;
  border-radius: 6px;
  padding: 8px 18px !important;
  font-size: 0.85rem !important;
}
.btn-header:hover { background: var(--green-dim) !important; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 800;
  border: none;
  border-radius: var(--radius);
  text-align: center;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(0,0,0,0.35); }
.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dim) 100%);
  color: var(--black);
  padding: 13px 28px;
  font-size: 1rem;
}
.btn-green:hover { background: linear-gradient(135deg, var(--green-dim) 0%, #009944 100%); color: var(--black); }
.btn-red {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dim) 100%);
  color: #fff;
  padding: 13px 28px;
  font-size: 1rem;
}
.btn-red:hover { background: linear-gradient(135deg, #ff4060 0%, var(--red) 100%); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 11px 26px;
  font-size: 0.95rem;
}
.btn-outline:hover { background: var(--green-glow); color: var(--green); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; border-radius: 7px; }

/* ---- HERO ---- */
.hero {
  background: radial-gradient(ellipse at 60% 0%, #003d18 0%, var(--dark) 60%);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--card-border);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.hero h1 { margin-bottom: 18px; color: var(--white); }
.hero h1 span { color: var(--green); }
.hero__sub { font-size: 1.05rem; color: var(--muted); margin-bottom: 28px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__bonus-card {
  background: var(--card-bg);
  border: 1px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 0 40px rgba(0,230,118,0.08);
}
.hero__bonus-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.hero__bonus-amount {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__bonus-amount span { color: var(--green); }
.hero__bonus-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; }
.hero__bonus-list { margin-bottom: 20px; }
.hero__bonus-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--muted);
  padding: 4px 0;
  border-bottom: 1px solid var(--card-border);
}
.hero__bonus-list li:last-child { border-bottom: none; }
.hero__bonus-list li strong { color: var(--white); min-width: 110px; }
.check-icon { color: var(--green); font-size: 0.8rem; flex-shrink: 0; }
.hero__terms { font-size: 0.72rem; color: var(--muted); margin-top: 10px; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--black);
  border-bottom: 1px solid var(--card-border);
  padding: 16px 0;
}
.trust-bar__inner {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.trust-item__icon {
  width: 28px; height: 28px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--green);
  border: 1px solid var(--card-border);
  flex-shrink: 0;
}

/* ---- SECTIONS ---- */
.section { padding: 60px 0; }
.section--dark { background: var(--black); }
.section--card { background: #12121a; }
.section__head { margin-bottom: 36px; }
.section__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.section__lead { color: var(--muted); font-size: 1rem; margin-top: 10px; max-width: 680px; }

/* ---- PROMO CARDS ROW ---- */
.promo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.promo-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.promo-card:hover { border-color: var(--green); box-shadow: 0 0 20px var(--green-glow); }
.promo-card__tag {
  position: absolute;
  top: -10px; left: 18px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 10px;
}
.tag-green { background: var(--green); color: var(--black); }
.tag-red   { background: var(--red);   color: #fff; }
.tag-amber { background: var(--amber); color: var(--black); }
.promo-card h3 { margin: 12px 0 8px; font-size: 1rem; }
.promo-card p  { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; }
.promo-card__meta { margin-bottom: 16px; }
.promo-card__meta li {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--muted);
  padding: 3px 0;
}
.promo-card__meta li strong { color: var(--white); min-width: 80px; }

/* ---- INLINE BONUS BANNER ---- */
.bonus-strip {
  background: linear-gradient(90deg, #001a09 0%, #003318 50%, #001a09 100%);
  border-top: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  padding: 26px 20px;
}
.bonus-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 0 auto;
}
.bonus-strip__text strong { font-size: 1.3rem; color: var(--green); display: block; font-weight: 900; }
.bonus-strip__text span { font-size: 0.85rem; color: var(--muted); }

/* ---- TABLE WRAPPER ---- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.styled-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.styled-table thead tr {
  background: #0d1f12;
  color: var(--green);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.styled-table th, .styled-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
}
.styled-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.styled-table td strong { color: var(--green); }

/* ---- CONTENT SECTIONS (article body) ---- */
.content-section { padding: 56px 0 40px; }
.content-section + .content-section { border-top: 1px solid var(--card-border); }
.content-body { max-width: 820px; }
.content-body h2 { margin-bottom: 16px; color: var(--white); }
.content-body h3 { margin: 28px 0 10px; color: var(--white); }
.content-body p { color: #c0c0d0; font-size: 0.97rem; }
.content-body ul.check-list { margin: 14px 0 20px; }
.content-body ul.check-list li {
  display: flex; gap: 10px;
  color: #c0c0d0;
  font-size: 0.93rem;
  padding: 5px 0;
  align-items: flex-start;
}
.content-body ul.check-list li::before {
  content: "✔";
  color: var(--green);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ---- FEATURE GRID (2-col with icons) ---- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px 18px;
  transition: border-color var(--transition);
}
.feature-card:hover { border-color: var(--green); }
.feature-card__icon {
  width: 44px; height: 44px;
  background: var(--green-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
  border: 1px solid rgba(0,230,118,0.25);
}
.feature-card h4 { margin-bottom: 6px; color: var(--white); }
.feature-card p { font-size: 0.83rem; color: var(--muted); margin: 0; }

/* ---- PAYMENT ICONS ---- */
.payment-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.pay-badge {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pay-badge span { color: var(--green); font-size: 0.9rem; }

/* ---- RATING BLOCK ---- */
.rating-block {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin: 28px 0;
}
.rating-block h3 { margin-bottom: 18px; }
.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.rating-row:last-child { margin-bottom: 0; }
.rating-label { min-width: 140px; font-size: 0.85rem; color: var(--muted); }
.rating-bar { flex: 1; height: 6px; background: var(--card-border); border-radius: 3px; overflow: hidden; }
.rating-fill { height: 100%; background: linear-gradient(90deg, var(--green) 0%, var(--green-dim) 100%); border-radius: 3px; }
.rating-score { font-weight: 800; font-size: 0.85rem; color: var(--green); min-width: 30px; text-align: right; }

/* ---- FAQ ---- */
.faq-list { margin-top: 28px; }
.faq-item {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--card-bg);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  text-align: left;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question.open { color: var(--green); }
.faq-arrow {
  font-size: 0.75rem;
  color: var(--green);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 20px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}
.faq-answer.open {
  max-height: 500px;
  padding: 0 20px 18px;
}

/* ---- PROS/CONS ---- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.pros-card, .cons-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px 18px;
}
.pros-card { border-left: 3px solid var(--green); }
.cons-card { border-left: 3px solid var(--red); }
.pros-card h4 { color: var(--green); margin-bottom: 12px; }
.cons-card h4 { color: var(--red); margin-bottom: 12px; }
.pros-card li, .cons-card li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 4px 0;
  border-bottom: 1px solid var(--card-border);
  display: flex; gap: 8px; align-items: flex-start;
}
.pros-card li:last-child, .cons-card li:last-child { border-bottom: none; }
.pros-card li::before { content: "+"; color: var(--green); font-weight: 900; flex-shrink: 0; }
.cons-card li::before { content: "−"; color: var(--red); font-weight: 900; flex-shrink: 0; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--card-border);
  padding: 44px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand p { color: var(--muted); font-size: 0.82rem; margin-top: 14px; line-height: 1.6; }
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { color: var(--muted); font-size: 0.82rem; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--muted); font-size: 0.75rem; }
.footer-pay { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.pay-pill {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
.gamble-safe {
  margin-top: 18px;
  font-size: 0.73rem;
  color: var(--muted);
  line-height: 1.65;
  border-top: 1px solid var(--card-border);
  padding-top: 18px;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.7rem;
  color: #fff;
  margin-right: 8px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 10px 0;
  font-size: 0.78rem;
  color: var(--muted);
  display: flex; gap: 6px; align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--card-border); }

/* ---- SCHEMA info ---- */
.schema-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; }
.schema-rating span { color: var(--muted); font-size: 0.82rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .promo-row { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .promo-row { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-header__inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .header-nav { gap: 4px; }
  .hero { padding: 40px 0 36px; }
  .hero__bonus-amount { font-size: 2.2rem; }
  .bonus-strip__inner { flex-direction: column; text-align: center; }
  .top-bonus-bar__inner { flex-direction: column; gap: 8px; }
}

@media (max-width: 420px) {
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .trust-bar__inner { gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
