/* ==============================
   GIZBO CASINO — Global Styles
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg-primary: #000000;
  --bg-secondary: #05101f;
  --bg-card: #0a1829;
  --bg-card-hover: #0e2035;
  --accent-blue: #5cc1ed;
  --accent-pink: #f3337a;
  --accent-white: #ffffff;
  --text-primary: rgba(255, 255, 255, 0.95);
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.45);
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(92, 193, 237, 0.25);
  --gradient-brand: linear-gradient(90deg, #5cc1ed 0%, #f3337a 55%, #ffffff 100%);
  --gradient-btn: linear-gradient(135deg, #5cc1ed 0%, #3a9fd1 100%);
  --gradient-btn-reg: linear-gradient(135deg, #f3337a 0%, #c91a60 100%);
  --shadow-glow-blue: 0 0 30px rgba(92, 193, 237, 0.2);
  --shadow-glow-pink: 0 0 30px rgba(243, 51, 122, 0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ---- GRADIENT TEXT UTIL ---- */
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==============================
   HEADER / NAV
   ============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 40px;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.07);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.15s;
  border: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); opacity: 0.92; }
.btn:active { transform: translateY(0); }

.btn-login {
  background: transparent;
  border: 1.5px solid rgba(92, 193, 237, 0.5);
  color: var(--accent-blue);
}

.btn-login:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow-blue);
}

.btn-register {
  background: var(--gradient-btn-reg);
  color: #fff;
  box-shadow: 0 4px 16px rgba(243, 51, 122, 0.35);
}

.btn-register:hover {
  box-shadow: 0 6px 24px rgba(243, 51, 122, 0.5);
}

/* ==============================
   HERO / BANNER
   ============================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 90px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 0%, rgba(92, 193, 237, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(243, 51, 122, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(14, 20, 80, 0.5) 0%, transparent 80%),
    #000;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(92, 193, 237, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 60%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 15%, rgba(243, 51, 122, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 75%, rgba(92, 193, 237, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 35%, rgba(255, 255, 255, 0.25) 0%, transparent 100%),
    radial-gradient(2px 2px at 25% 85%, rgba(243, 51, 122, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 45%, rgba(92, 193, 237, 0.3) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(92, 193, 237, 0.1);
  border: 1px solid rgba(92, 193, 237, 0.3);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: 'Montserrat', sans-serif;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.btn-hero-primary {
  background: var(--gradient-btn-reg);
  color: #fff;
  padding: 14px 36px;
  font-size: 15px;
  border-radius: 40px;
  font-weight: 800;
  box-shadow: 0 8px 32px rgba(243, 51, 122, 0.4);
  letter-spacing: 0.02em;
  font-family: 'Montserrat', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(243, 51, 122, 0.55);
}

.btn-hero-secondary {
  background: rgba(92, 193, 237, 0.1);
  color: var(--accent-blue);
  border: 1.5px solid rgba(92, 193, 237, 0.4);
  padding: 14px 36px;
  font-size: 15px;
  border-radius: 40px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: 'Montserrat', sans-serif;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.btn-hero-secondary:hover {
  transform: translateY(-2px);
  background: rgba(92, 193, 237, 0.15);
  box-shadow: var(--shadow-glow-blue);
}

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

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ==============================
   FEATURES / BONUSES
   ============================== */
.section {
  padding: 72px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 48px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

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

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  border-color: rgba(92, 193, 237, 0.2);
  box-shadow: var(--shadow-glow-blue);
  transform: translateY(-3px);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(92, 193, 237, 0.1);
  border: 1px solid rgba(92, 193, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.card-icon.pink {
  background: rgba(243, 51, 122, 0.1);
  border-color: rgba(243, 51, 122, 0.2);
}

.card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

/* ==============================
   BONUS BANNER
   ============================== */
.bonus-banner {
  background: linear-gradient(135deg, #0a1829 0%, #051020 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  margin: 0 24px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(92, 193, 237, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(243, 51, 122, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.bonus-desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ==============================
   SEO TEXT BLOCK
   ============================== */
.seo-block {
  padding: 72px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.seo-block h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 10px;
}

.seo-block h2:first-child { margin-top: 0; }

.seo-block h3 {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin: 24px 0 8px;
}

.seo-block p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.seo-block a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.seo-block a:hover { color: #fff; }

/* ==============================
   FAQ
   ============================== */
.faq-section {
  padding: 64px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.faq-section .section-title { margin-bottom: 40px; }

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

.faq-item:hover { border-color: rgba(92, 193, 237, 0.2); }

.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  transition: background 0.2s;
}

.faq-question:hover { background: var(--bg-card-hover); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(92, 193, 237, 0.1);
  border: 1px solid rgba(92, 193, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-blue);
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(243, 51, 122, 0.1);
  border-color: rgba(243, 51, 122, 0.3);
  color: var(--accent-pink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--bg-card);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ==============================
   FOOTER
   ============================== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
  margin-top: 48px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}

.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-blue); }

.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-legal {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
}

.footer-age {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ==============================
   PAYMENT ICONS ROW
   ============================== */
.payments-row {
  padding: 32px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid var(--border);
}

.payment-badge {
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  font-family: 'Montserrat', sans-serif;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .header-nav { display: none; }
  .header-inner { gap: 12px; }
  .btn { padding: 9px 16px; font-size: 12px; }
  .hero { padding: 56px 16px 64px; }
  .stats-inner { gap: 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .bonus-banner { padding: 32px 20px; margin: 0 16px; }
}

/* ---- Mobile menu ---- */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 640px) {
  .mobile-nav-toggle { display: flex; }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(5, 16, 31, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 20px;
  gap: 4px;
}

.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 12px 16px; border-radius: 8px; font-size: 14px; }

/* Shimmer animation */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.shimmer-line {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.03) 0%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.03) 100%);
  background-size: 400px 100%;
  animation: shimmer 2.5s infinite linear;
  border-radius: 4px;
}
