/* =====================================================
   BejoCasino v2 – bejocasinogirisadresi.com
   Tema: Koyu Lacivert + Kırmızı/Turuncu Aksan
   Layout: Split hero, timeline, neon card grid
   ===================================================== */

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

:root {
  --red:        #e63946;
  --red-dark:   #b52535;
  --red-glow:   rgba(230,57,70,.35);
  --orange:     #ff6b35;
  --bg:         #080c18;
  --bg2:        #0e1525;
  --bg3:        #141d30;
  --bg4:        #1c2740;
  --text:       #dde3f0;
  --text-muted: #7a8499;
  --white:      #ffffff;
  --green:      #2ecc71;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 10px 40px rgba(0,0,0,.6);
  --font:       'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); min-height: 100vh; line-height: 1.65; overflow-x: hidden; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--orange); }

/* ========== TOPBAR ========== */
.topbar {
  background: var(--bg2);
  border-bottom: 1px solid rgba(230,57,70,.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.topbar-logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -.5px;
  color: var(--white);
}
.topbar-logo span { color: var(--red); }

.topbar-nav { display: flex; gap: 24px; }
.topbar-nav a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: color .2s;
}
.topbar-nav a:hover { color: var(--red); }

.topbar-cta {
  background: var(--red);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  transition: background .2s, transform .15s;
}
.topbar-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ========== SPLIT HERO ========== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: linear-gradient(135deg, #0a0f1e 0%, #12203a 100%);
  padding: 64px 48px 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-left::after {
  content: '';
  position: absolute;
  right: -1px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
}

.hero-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--red);
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}
.hero-title .accent { color: var(--red); }

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230,57,70,.1);
  border: 1px solid rgba(230,57,70,.25);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: #ffb3bb;
}

/* ========== HERO RIGHT – URL CARD ========== */
.hero-right {
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  position: relative;
}

/* Animated grid bg */
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(230,57,70,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,57,70,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.url-card {
  background: var(--bg3);
  border: 1px solid rgba(230,57,70,.3);
  border-radius: var(--radius);
  padding: 36px 32px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 0 60px rgba(230,57,70,.12), var(--shadow);
  position: relative;
  z-index: 1;
}

.url-card-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.url-card-address {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  word-break: break-all;
  margin-bottom: 6px;
  line-height: 1.3;
}

.url-card-sub {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.btn-main {
  display: block;
  width: 100%;
  padding: 15px 0;
  background: linear-gradient(135deg, var(--red-dark), var(--red), var(--orange));
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  letter-spacing: .5px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px var(--red-glow);
  text-transform: uppercase;
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 8px 32px var(--red-glow); }
.btn-main:active { transform: translateY(0); }

.url-card-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg4);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 14px;
  font-size: .82rem;
  color: var(--text-muted);
}

.btn-copy {
  background: rgba(230,57,70,.15);
  border: 1px solid rgba(230,57,70,.3);
  color: var(--red);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.btn-copy:hover { background: rgba(230,57,70,.3); }

.live-clock {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}
.live-clock span { color: var(--green); font-weight: 700; }

/* ========== SECTION WRAPPER ========== */
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
}

/* ========== SECTION HEADER ========== */
.sec-header { margin-bottom: 40px; }

.sec-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.sec-eyebrow::before { content: ''; display: inline-block; width: 20px; height: 2px; background: var(--red); }

.sec-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.sec-title .accent { color: var(--red); }

.sec-desc {
  font-size: .95rem;
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 600px;
}

/* ========== LICENSE SECTION ========== */
.license-section { background: var(--bg2); border-top: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04); }

.license-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.license-text-block p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 14px;
}

.license-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.license-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text);
}

.license-checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(46,204,113,.15);
  border: 1px solid rgba(46,204,113,.3);
  border-radius: 50%;
  color: var(--green);
  font-size: .7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.license-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--orange));
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

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

/* ========== PROVIDERS ========== */
.providers-section { background: var(--bg); }

.provider-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.prov-item {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

.prov-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--orange));
  transform: scaleX(0);
  transition: transform .25s;
}

.prov-item:hover {
  border-color: rgba(230,57,70,.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(230,57,70,.12);
}
.prov-item:hover::after { transform: scaleX(1); }

.prov-emoji { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.prov-name  { font-size: .88rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.prov-cat   { font-size: .72rem; color: var(--text-muted); }

.prov-featured {
  border-color: rgba(230,57,70,.35) !important;
  background: linear-gradient(135deg, #1c1020, #1a1030);
}
.prov-featured-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--red);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 2px 8px;
  border-radius: 50px;
}

/* ========== FEATURES – HORIZONTAL CARDS ========== */
.features-section { background: var(--bg2); border-top: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04); }

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feat-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 20px;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color .2s;
}

.feat-row:hover { border-color: rgba(230,57,70,.25); }

.feat-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(230,57,70,.1);
  border: 1px solid rgba(230,57,70,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feat-body h4 { font-size: .97rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.feat-body p  { font-size: .85rem; color: var(--text-muted); }

.feat-tag {
  background: rgba(46,204,113,.1);
  border: 1px solid rgba(46,204,113,.2);
  color: var(--green);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ========== FAQ ========== */
.faq-section { background: var(--bg); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.faq-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-card:hover { border-color: rgba(230,57,70,.25); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: .93rem;
  font-weight: 600;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .2s;
}
.faq-q:hover { background: rgba(255,255,255,.03); }
.faq-q .arrow { color: var(--red); font-size: .7rem; transition: transform .3s; flex-shrink: 0; }
.faq-q.open .arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.faq-a.open { max-height: 300px; padding: 0 20px 18px; }

/* ========== FOOTER ========== */
footer {
  background: #05070e;
  border-top: 1px solid rgba(230,57,70,.12);
  padding: 36px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand .logo { font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.footer-brand .logo span { color: var(--red); }
.footer-brand p { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }

.footer-links h5 { font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 12px; }
.footer-links a  { display: block; font-size: .82rem; color: var(--text-muted); margin-bottom: 6px; transition: color .2s; }
.footer-links a:hover { color: var(--red); }

.footer-url { text-align: right; }
.footer-url p { font-size: .78rem; color: var(--text-muted); margin-bottom: 8px; }
.footer-url a { font-size: 1rem; font-weight: 800; color: var(--red); }

.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: var(--text-muted);
}

.disclaimer-text {
  max-width: 600px;
  font-size: .72rem;
  color: #3a4255;
  line-height: 1.5;
}

/* ========== FLOATING BTN ========== */
#floatBtn {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 999;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 24px var(--red-glow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .2s;
  text-transform: uppercase;
  letter-spacing: .5px;
}
#floatBtn:hover { transform: translateY(-2px); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 28px; }
  .hero-title { font-size: 2.2rem; }
  .hero-right { padding: 36px 28px; }
  .license-grid { grid-template-columns: 1fr; }
  .provider-list { grid-template-columns: repeat(3, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-url { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .topbar-nav { display: none; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 1.8rem; }
  .provider-list { grid-template-columns: repeat(2, 1fr); }
  .feat-row { grid-template-columns: 48px 1fr; }
  .feat-tag { display: none; }
  .section-wrap { padding: 48px 20px; }
}
