/* ================================================
   MEMO CASINO UK — STYLESHEET
   Brand: Deep Navy + Gold + Emerald
   Fonts: Playfair Display (headings) + Inter (body)
   ================================================ */

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

:root {
  --navy:      #0A0E1A;
  --navy-mid:  #131929;
  --navy-soft: #1C2438;
  --gold:      #D4AF37;
  --gold-light:#F0D060;
  --gold-dark: #A88A20;
  --emerald:   #1A6B3C;
  --emerald-lt:#228950;
  --cream:     #F5F0E8;
  --cream-dim: #C8C0AE;
  --white:     #FFFFFF;
  --text-body: #D6CEBC;
  --text-muted:#8A8272;
  --border:    rgba(212,175,55,0.18);
  --border-soft:rgba(255,255,255,0.07);
  --radius:    10px;
  --radius-sm: 6px;
  --shadow:    0 4px 24px rgba(0,0,0,0.45);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---- BUTTONS ---- */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  border: none;
  padding: 0.62rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,175,55,0.38); }
.btn-primary.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.18);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-banner {
  background: var(--navy);
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.btn-banner:hover { background: var(--gold); color: var(--navy); }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,26,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-svg { height: 40px; width: auto; }

.main-nav { display: flex; gap: 1.6rem; flex: 1; }
.main-nav a {
  color: var(--cream-dim);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.header-cta { display: flex; gap: 0.75rem; align-items: center; flex-shrink: 0; }

/* ---- TOP BONUS BANNER ---- */
.top-bonus-banner {
  background: linear-gradient(90deg, #0f2518 0%, #1A6B3C 45%, #0f2518 100%);
  border-bottom: 1px solid var(--emerald-lt);
}
.top-bonus-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.bonus-badge {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.22rem 0.7rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.bonus-text {
  color: var(--white);
  font-size: 0.95rem;
  flex: 1;
  min-width: 200px;
}
.bonus-text strong { color: var(--gold-light); }

/* ---- HERO ---- */
.hero {
  background: radial-gradient(ellipse at 70% 50%, #1a2540 0%, var(--navy) 70%);
  padding: 5rem 1.5rem 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L37 21H60L42 34L49 55L30 42L11 55L18 34L0 21H23Z' fill='%23D4AF37' fill-opacity='0.025'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--cream-dim);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  min-width: 240px;
}
.pill {
  background: var(--navy-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.pill-icon { font-size: 1.6rem; }
.pill-label { font-size: 0.78rem; font-weight: 600; color: var(--cream-dim); }

/* ---- GAMES STRIP ---- */
.games-strip {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border-soft);
  padding: 0;
  overflow: hidden;
}
.strip-inner { overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.strip-inner::-webkit-scrollbar { display: none; }
.strip-track {
  display: flex;
  gap: 0;
  width: max-content;
  padding: 0;
}
.game-tag {
  padding: 0.85rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream-dim);
  cursor: pointer;
  white-space: nowrap;
  border-right: 1px solid var(--border-soft);
  transition: background 0.2s, color 0.2s;
}
.game-tag:hover { background: var(--navy-soft); color: var(--gold); }

/* ---- MAIN CONTENT ---- */
.main-content {}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-block { padding: 4rem 0; }
.section-alt { background: var(--navy-mid); }

.section-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.section-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.section-block p { margin-bottom: 1rem; color: var(--text-body); }
.section-block p:last-child { margin-bottom: 0; }

/* ---- INFO GRID (4 cards) ---- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.info-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 1rem;
  text-align: center;
}
.info-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.info-card h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.info-card p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 0; }

/* ---- MID BANNER ---- */
.mid-banner {
  background: linear-gradient(90deg, #0a1a12 0%, #1A6B3C 50%, #0a1a12 100%);
  border-top: 1px solid var(--emerald-lt);
  border-bottom: 1px solid var(--emerald-lt);
  padding: 1.4rem 1.5rem;
}
.mid-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.mid-banner-text { display: flex; flex-direction: column; gap: 0.2rem; }
.mid-banner-text strong { font-size: 1.1rem; color: var(--white); }
.mid-banner-text span { font-size: 0.88rem; color: var(--cream-dim); }

/* ---- PROVIDERS GRID ---- */
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.provider-chip {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.38rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream-dim);
  transition: border-color 0.2s, color 0.2s;
}
.provider-chip:hover { border-color: var(--gold); color: var(--gold); }

/* ---- TABLE ---- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: 0.9rem;
}
.data-table th {
  background: var(--navy-soft);
  color: var(--gold);
  font-weight: 600;
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-table td {
  padding: 0.8rem 1rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.data-table tr:hover td { background: rgba(212,175,55,0.04); }

/* ---- RG GRID ---- */
.rg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.rg-card {
  background: var(--navy-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 1rem;
  text-align: center;
}
.rg-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.rg-card h3 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.rg-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0; }

/* ---- SUPPORT METHODS ---- */
.support-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.support-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--navy-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
}
.support-icon { font-size: 1.6rem; flex-shrink: 0; }
.support-detail { display: flex; flex-direction: column; gap: 0.1rem; }
.support-detail strong { color: var(--white); font-size: 0.95rem; }
.support-detail span { color: var(--text-muted); font-size: 0.82rem; }

/* ---- STEPS LIST ---- */
.steps-list {
  margin: 1.5rem 0 0;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.steps-list li {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}
.steps-list li strong { color: var(--gold); }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 1.5rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--gold); }

.faq-question {
  width: 100%;
  background: var(--navy-soft);
  border: none;
  padding: 1.1rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(212,175,55,0.06); }
.faq-item.open .faq-question { background: rgba(212,175,55,0.08); }

.faq-question span:first-child {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  flex: 1;
  line-height: 1.4;
}
.faq-arrow {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.25s;
  display: inline-block;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 1rem 1.3rem 1.2rem;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.9rem; color: var(--text-body); margin-bottom: 0; line-height: 1.7; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

.footer-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border-soft);
}
.footer-logo { height: 38px; width: auto; margin-bottom: 1rem; }
.footer-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
}

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.footer-col a { font-size: 0.84rem; color: var(--text-muted); }
.footer-col a:hover { color: var(--gold); }
.footer-support-note { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.75rem; }

.providers-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.provider-chip-sm {
  background: var(--navy-soft);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 0.28rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-bottom {
  padding: 1.2rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.footer-bottom strong { color: var(--gold); }

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .rg-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 1rem; gap: 1rem; }
  .main-nav { display: none; }
  .header-cta .btn-outline { display: none; }

  .hero { padding: 3rem 1rem 2.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-pills { grid-template-columns: repeat(4, 1fr); min-width: unset; }
  .pill { padding: 0.75rem 0.5rem; }
  .pill-icon { font-size: 1.2rem; }
  .pill-label { font-size: 0.68rem; }

  .top-bonus-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  .section-block { padding: 2.5rem 0; }

  .info-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .rg-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  .mid-banner-inner { flex-direction: column; align-items: flex-start; }

  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-top { gap: 1.5rem; }
}

@media (max-width: 540px) {
  .hero-pills { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .rg-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-ghost { text-align: center; }
  .hero-text h1 { font-size: 2.2rem; }
}

@media (max-width: 380px) {
  .info-grid { grid-template-columns: 1fr; }
  .rg-grid { grid-template-columns: 1fr; }
}

/* ---- SCROLLBAR STYLE ---- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--navy-mid); }
::-webkit-scrollbar-thumb { background: var(--navy-soft); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }
