/* ============================================
   ME88LUCKSPIN.SITE — Global Stylesheet
   Color Theme: me88 — #ff4e00 / #ffb800 / #161616
   ============================================ */

:root {
  --primary: #ff4e00;
  --secondary: #ffb800;
  --gradient: linear-gradient(39.71deg, #ff4e00 7.3%, #ffb800 100%);
  --bg-dark: #161616;
  --bg-mid: #2c2c2c;
  --bg-card: #1e1e1e;
  --text-white: #ffffff;
  --text-grey: #bebebe;
  --text-muted: #8a8a8a;
  --border: #333333;
  --radius: 8px;
  --radius-lg: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.7;
  font-size: 16px;
}

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

img { max-width: 100%; height: auto; }

/* ── HEADER ── */
header {
  background: #0d0d0d;
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 24px;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo img {
  height: 42px;
  width: auto;
}

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  color: var(--text-grey);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}

nav a:hover, nav a.active {
  color: var(--text-white);
  background: rgba(255,78,0,0.15);
}

.header-actions { display: flex; gap: 10px; align-items: center; }

.btn-login {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-login:hover {
  background: var(--primary);
  color: #fff;
}

.btn-register {
  background: var(--gradient);
  border: none;
  color: #fff;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-register:hover { opacity: 0.88; color: #fff; }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* ── HERO BANNER ── */
.hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a00 50%, #0d0d0d 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,78,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-grey);
  max-width: 680px;
  margin: 0 auto 32px;
}

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.cta-primary {
  background: var(--gradient);
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  transition: opacity 0.2s;
  display: inline-block;
}

.cta-primary:hover { opacity: 0.88; color: #fff; }

.cta-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.2s;
  display: inline-block;
}

.cta-secondary:hover { background: var(--primary); color: #fff; }

/* ── SECTIONS ── */
section { padding: 64px 24px; }

.section-inner { max-width: 1280px; margin: 0 auto; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--text-grey);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--gradient);
  border-radius: 4px;
  margin: 12px 0 28px;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.card-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-white);
}

.card p {
  font-size: 0.92rem;
  color: var(--text-grey);
  line-height: 1.6;
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ── GAME CATEGORIES ── */
.game-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.game-cat-btn {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  color: var(--text-grey);
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.game-cat-btn:hover, .game-cat-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--bg-mid);
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p { color: var(--text-grey); font-size: 0.9rem; margin-top: 4px; }

/* ── PROMO BANNER ── */
.promo-banner {
  background: linear-gradient(135deg, #1a0800 0%, #2c1500 50%, #1a0800 100%);
  border: 1px solid rgba(255,78,0,0.3);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.promo-banner h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.promo-banner p { color: var(--text-grey); }

.promo-tag {
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

/* ── PROVIDER LOGOS ── */
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.provider-chip {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-grey);
  transition: all 0.2s;
}

.provider-chip:hover {
  border-color: var(--primary);
  color: var(--text-white);
}

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 860px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  color: var(--text-white);
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover { background: #252525; }

.faq-question .icon {
  font-size: 1.3rem;
  transition: transform 0.3s;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-question.open .icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 18px 22px;
  color: var(--text-grey);
  background: #191919;
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-answer.open { display: block; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a00 60%, #0d0d0d 100%);
  padding: 60px 24px 50px;
  border-bottom: 2px solid rgba(255,78,0,0.25);
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-grey);
  font-size: 1.05rem;
  max-width: 700px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb span { color: var(--primary); }

/* ── CONTENT SECTION ── */
.content-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 28px;
}

.content-block h2 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-white);
}

.content-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 20px 0 10px;
}

.content-block p {
  color: var(--text-grey);
  margin-bottom: 14px;
  line-height: 1.8;
}

.content-block ul, .content-block ol {
  color: var(--text-grey);
  padding-left: 22px;
  margin-bottom: 14px;
  line-height: 1.85;
}

.content-block li { margin-bottom: 6px; }

/* ── TABLE ── */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 0.92rem;
}

.styled-table th {
  background: rgba(255,78,0,0.15);
  color: var(--primary);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--primary);
}

.styled-table td {
  padding: 12px 16px;
  color: var(--text-grey);
  border-bottom: 1px solid var(--border);
}

.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: rgba(255,78,0,0.05); }

/* ── FOOTER ── */
footer {
  background: #0d0d0d;
  border-top: 2px solid var(--primary);
  padding: 56px 24px 30px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 14px 0 20px;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }

.age-badge {
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 6px;
}

.payment-methods { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 16px; }

.pay-chip {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-grey);
}

/* ── RESPONSIBLE GAMING ── */
.responsible-bar {
  background: var(--bg-mid);
  padding: 14px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.responsible-bar a { color: var(--text-muted); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #0d0d0d; padding: 16px; border-top: 1px solid var(--border); }
  nav.open { display: flex; }
  .hamburger { display: flex; }
  .header-actions .btn-login { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .promo-banner { flex-direction: column; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  section { padding: 40px 16px; }
  .content-block { padding: 22px 18px; }
}
