@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700;800&family=Orbitron:wght@600;700;800&family=Rajdhani:wght@400;500;600;700&display=swap');

/* ============================================================
   STYLE 3 — GEM Neon Luxe
   LuckyGEM Casino
   ============================================================ */
:root {
  --bg:          #000000;
  --bg-mid:      #0a2218;
  --bg-card:     rgba(8, 28, 20, 0.62);
  --gold:        #ffd700;
  --amber:       #ffb300;
  --gold-soft:   #ffe566;
  --green:       #0d3a28;
  --text:        #e8f0ea;
  --text-muted:  #9bb5a6;
  --white:       #ffffff;
  --glow:        0 0 18px rgba(255, 215, 0, 0.45), 0 0 42px rgba(255, 179, 0, 0.18);
  --radius:      14px;
  --max-w:       1180px;
  --font:        'Rajdhani', system-ui, sans-serif;
  --font-head:   'Exo 2', system-ui, sans-serif;
  --font-display:'Orbitron', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: linear-gradient(180deg, #000000 0%, #0a2218 38%, #06140f 72%, #000000 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'%3E%3Cpath fill='none' stroke='%23ffd700' stroke-width='1' d='M60 4 L116 52 L60 100 L4 52 Z M60 4 L60 100 M4 52 L116 52 M32 28 L88 76 M88 28 L32 76'/%3E%3C/svg%3E");
  background-size: 120px 104px;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(255, 215, 0, 0.08), transparent 42%),
              radial-gradient(ellipse at 90% 80%, rgba(10, 80, 50, 0.25), transparent 50%);
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-soft); }

img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }
strong { color: var(--white); font-weight: 700; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4.2vw, 2.85rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
  text-shadow: var(--glow);
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1.1rem;
  text-shadow: 0 0 14px rgba(255, 215, 0, 0.35);
}

h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
  margin: 1.4rem 0 0.55rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

main {
  padding: 2.5rem 0 5rem;
  position: relative;
  z-index: 1;
}

section {
  margin-bottom: 3.25rem;
}

.glass {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 215, 0, 0.28);
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.08), inset 0 1px 0 rgba(255, 215, 0, 0.12);
  border-radius: var(--radius);
}

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.78);
  border-bottom: 1px solid rgba(255, 215, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45), 0 0 18px rgba(255, 215, 0, 0.08);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
  color: inherit;
}

.logo:hover { color: inherit; }
.logo-img { height: 48px; width: auto; display: block; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}

.header-nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.2s;
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-promo {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  background: rgba(255, 215, 0, 0.08) !important;
  letter-spacing: 0.14em !important;
  font-weight: 800 !important;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.25);
}

.nav-promo:hover {
  background: linear-gradient(135deg, var(--green), var(--gold)) !important;
  color: #000 !important;
  text-shadow: none !important;
}

.header-cta {
  display: inline-block;
  background: linear-gradient(135deg, #0d3a28 0%, #ffd700 100%);
  color: #06110c;
  text-decoration: none;
  padding: 0.55rem 1.35rem;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 0.6rem;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.35);
  transition: filter 0.2s, transform 0.2s;
}

.header-cta:hover {
  color: #000;
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.nav-toggle { display: none; }

.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  flex-shrink: 0;
  background: rgba(255, 215, 0, 0.06);
}

.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  background: var(--gold);
  content: '';
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.nav-burger span { top: 20px; }
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-glow {
  background: linear-gradient(135deg, #0a2218 0%, #147a4a 42%, #ffd700 100%);
  color: #06110c;
  padding: 0.8rem 1.9rem;
  border: 1px solid rgba(255, 215, 0, 0.7);
  box-shadow: 0 0 22px rgba(255, 215, 0, 0.35);
}

.btn-glow:hover {
  color: #000;
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255, 215, 0, 0.55);
}

.btn-lg { padding: 0.95rem 2.4rem; font-size: 1.02rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 3.5rem 0 2.2rem;
  text-align: center;
}

.hero h1 { margin-bottom: 1.1rem; }

.hero-sub {
  max-width: 760px;
  margin: 0 auto 1.1rem;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.6rem 0 0.4rem;
}

.hero-banner {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 36px rgba(255, 215, 0, 0.15);
  margin: 2.2rem auto 0;
}

/* ============================================================
   PROMO PLAQUE
   ============================================================ */
.promo-badge {
  position: relative;
  overflow: hidden;
  padding: 2.6rem 2rem;
  text-align: center;
  margin: 0.4rem 0 2.6rem;
  background: linear-gradient(160deg, rgba(8, 28, 20, 0.85), rgba(0, 0, 0, 0.7));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.55);
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.18), inset 0 0 40px rgba(255, 215, 0, 0.05);
}

.promo-badge::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, transparent, rgba(255, 215, 0, 0.18), transparent 40%);
  animation: spinGlow 10s linear infinite;
  pointer-events: none;
}

@keyframes spinGlow {
  to { transform: rotate(360deg); }
}

.promo-badge-inner { position: relative; z-index: 1; }

.promo-badge-label {
  display: inline-block;
  background: linear-gradient(90deg, var(--green), var(--gold));
  color: #06110c;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.32rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.promo-badge h2 {
  justify-content: center;
  margin: 0 0 0.85rem;
  color: var(--white);
  text-shadow: var(--glow);
}

.promo-code-display {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-shadow: var(--glow);
  border: 1px dashed var(--gold);
  border-radius: 12px;
  padding: 0.55rem 1.8rem;
  margin: 0.4rem 0 1rem;
  background: rgba(255, 215, 0, 0.07);
}

.promo-meta {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.promo-badge .btn { margin-top: 1.1rem; }

/* ============================================================
   CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.2rem 0;
}

.card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 215, 0, 0.28);
  border-radius: var(--radius);
  padding: 1.45rem 1.3rem;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.07);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 0 28px rgba(255, 215, 0, 0.18);
  transform: translateY(-3px);
}

.card h3 { margin-top: 0; color: var(--gold); }
.card p { color: var(--text-muted); margin: 0; font-size: 0.98rem; }

/* ============================================================
   TABLES
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 520px;
}

thead th {
  background: linear-gradient(90deg, #0a2218 0%, #c9a227 55%, #ffd700 100%);
  color: #06110c;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--gold);
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.25);
}

tbody tr:nth-child(odd)  { background: #07140f; }
tbody tr:nth-child(even) { background: #0c1f18; }
tbody tr:hover { background: #123326; }

tbody td {
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.18);
  color: var(--text);
  vertical-align: top;
}

tbody tr:last-child td { border-bottom: none; }

/* ============================================================
   STEPS / FAQ / CTA
   ============================================================ */
.steps { list-style: none; padding: 0; margin: 1rem 0; counter-reset: step; }

.steps li {
  counter-increment: step;
  display: flex;
  gap: 1.1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  margin: 0;
  align-items: flex-start;
}

.steps li:last-child { border-bottom: none; }

.steps li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  min-width: 2.2rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: #06110c;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.35);
}

.faq { margin: 1rem 0; }

.faq-item {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  margin-bottom: 0.75rem;
}

.faq-q {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.45rem;
  line-height: 1.4;
}

.faq-a { color: var(--text-muted); margin: 0; }

.cta-block {
  background: linear-gradient(160deg, rgba(10, 34, 24, 0.8), rgba(0, 0, 0, 0.7));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 215, 0, 0.45);
  border-radius: 18px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 0 36px rgba(255, 215, 0, 0.14);
}

.cta-block h2 { color: var(--gold); margin-top: 0; }
.cta-block p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-box {
  background: rgba(255, 215, 0, 0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.35rem;
  margin: 1.4rem 0;
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.08);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 215, 0, 0.28);
  padding: 2.6rem 0 2rem;
  font-size: 0.92rem;
  background: rgba(0, 0, 0, 0.55);
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

.footer-logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 1.4rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  margin-bottom: 1.8rem;
  list-style: none;
  padding: 0;
}

.footer-nav a {
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  padding-top: 1.4rem;
  color: #6e8878;
  font-size: 0.82rem;
  line-height: 1.65;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.25);
}

.footer-bottom a { color: #6e8878; text-decoration: underline; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .header-inner {
    height: auto;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    flex-wrap: wrap;
  }
  .nav-burger { display: block; }
  .header-cta { order: 2; margin-left: 0.5rem; }
  .header-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin: 0.75rem 0 0;
    order: 3;
  }
  .nav-toggle:checked ~ .header-nav { display: flex; }
  .header-nav a { padding: 0.75rem 0.9rem; }
}

@media (max-width: 640px) {
  .hero { padding: 2.2rem 0 1.6rem; }
  .promo-code-display { font-size: 1.35rem; letter-spacing: 0.1em; padding: 0.5rem 1rem; }
  .cta-block { padding: 2rem 1.2rem; }
  .promo-badge { padding: 1.7rem 1.1rem; }
  .btn-lg { padding: 0.8rem 1.4rem; font-size: 0.9rem; }
  table { min-width: 460px; }
  .hero-banner { height: 200px; }
  .logo-img { height: 40px; }
  .footer-logo img { height: 40px; }
}
