/* =====================================================
   BejoCasino – Paravan Site  |  style.css
   ===================================================== */

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

:root {
  --gold:       #f0c040;
  --gold-dark:  #c9972a;
  --gold-light: #ffe98a;
  --bg-dark:    #0a0e1a;
  --bg-card:    #111827;
  --bg-card2:   #1a2235;
  --text:       #e8eaf0;
  --text-muted: #8a94a6;
  --green:      #22c55e;
  --radius:     12px;
  --shadow:     0 8px 32px rgba(0,0,0,.55);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

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

/* ---------- Header / Hero ---------- */
.hero {
  background: linear-gradient(135deg, #0d1526 0%, #1a2a50 50%, #0d1526 100%);
  border-bottom: 2px solid var(--gold-dark);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f0c040' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.logo-wrap { margin-bottom: 18px; }

.logo-text {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.logo-text span { color: #fff; -webkit-text-fill-color: #fff; }

.hero-tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: .5px;
}

/* ---------- Trust Badges ---------- */
.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(240,192,64,.12);
  border: 1px solid rgba(240,192,64,.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-light);
}

.badge svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }

/* ---------- Main CTA ---------- */
.cta-section {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 0 24px;
  text-align: center;
}

.announcement-box {
  background: var(--bg-card);
  border: 1px solid rgba(240,192,64,.25);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.announcement-box p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.current-url-display {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .5px;
  word-break: break-all;
}

.btn-cta {
  display: inline-block;
  margin-top: 22px;
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #0a0e1a;
  font-size: 1.15rem;
  font-weight: 900;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(240,192,64,.4);
  transition: transform .2s, box-shadow .2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(240,192,64,.55);
  color: #0a0e1a;
}

.btn-cta:active { transform: translateY(0); }

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(240,192,64,.4); }
  50%       { box-shadow: 0 4px 40px rgba(240,192,64,.75); }
}

/* ---------- Content Sections ---------- */
.content-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.section { margin-bottom: 48px; }

.section-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(240,192,64,.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title svg { width: 22px; height: 22px; fill: var(--gold); }

.section p {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: .97rem;
}

/* ---------- License Box ---------- */
.license-box {
  background: linear-gradient(135deg, #0f2a1a, #0a1e12);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.license-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(34,197,94,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.license-icon svg { width: 28px; height: 28px; fill: var(--green); }

.license-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}

.license-text p { color: var(--text-muted); font-size: .93rem; margin: 0; }

/* ---------- Providers Grid ---------- */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.provider-card {
  background: var(--bg-card2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 18px 12px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}

.provider-card:hover {
  border-color: rgba(240,192,64,.4);
  transform: translateY(-3px);
}

.provider-card .prov-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.provider-card .prov-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
}

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}

.feature-card .feat-icon { font-size: 1.8rem; margin-bottom: 10px; }
.feature-card h4 { font-size: .95rem; font-weight: 700; color: var(--gold-light); margin-bottom: 6px; }
.feature-card p  { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: .97rem;
  font-weight: 600;
  text-align: left;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}

.faq-question:hover { background: rgba(255,255,255,.04); }

.faq-question .arrow {
  font-size: .75rem;
  transition: transform .3s;
  color: var(--gold);
}

.faq-question.open .arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
  color: var(--text-muted);
  font-size: .92rem;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 20px 16px;
}

/* ---------- Footer ---------- */
footer {
  background: #07090f;
  border-top: 1px solid rgba(240,192,64,.15);
  text-align: center;
  padding: 28px 24px;
  color: var(--text-muted);
  font-size: .82rem;
}

footer a { color: var(--gold); }
footer p { margin-bottom: 6px; }

.disclaimer {
  max-width: 700px;
  margin: 12px auto 0;
  font-size: .78rem;
  color: #4a5568;
  line-height: 1.5;
}

/* ---------- Countdown ---------- */
.countdown-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 20px 0 0;
}

.cd-box {
  background: var(--bg-card2);
  border: 1px solid rgba(240,192,64,.2);
  border-radius: 8px;
  padding: 10px 18px;
  text-align: center;
  min-width: 64px;
}

.cd-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.cd-label {
  font-size: .68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .logo-text { font-size: 2rem; }
  .btn-cta   { padding: 14px 32px; font-size: 1rem; }
  .announcement-box { padding: 20px 18px; }
  .current-url-display { font-size: 1.1rem; }
  .providers-grid { grid-template-columns: repeat(3, 1fr); }
}
