/* ============================================================
   GOEXCH9 — GLOBAL STYLESHEET
   Shared across: homepage, about, contact, terms, privacy,
   aml-kyc, responsible-gaming, register, blog, admin
   ============================================================ */

/* ===== ROOT VARIABLES ===== */
:root {
  /* Brand colors - Blue/Gold theme (default for most pages) */
  --blue-dark: #021b3b;
  --blue-main: #043766;
  --blue-soft: #0b4d83;
  --blue-card: #0f5c97;
  --blue-mid: #032a56;
  --blue-glass: rgba(4, 55, 102, 0.45);

  --yellow-main: #ffd54a;
  --yellow-deep: #f0b400;
  --yellow-soft: #ffe27a;

  --white: #ffffff;
  --text-main: #fdfdfd;
  --text-light: #dce9ff;
  --text-muted: #9bb9d9;
  --text-dark: #18314f;

  --border-glow: rgba(255, 213, 74, 0.65);
  --border-soft: rgba(255, 255, 255, 0.12);

  /* Register page - Neon theme (scoped under body.page-register) */
  --neon-pink: #ff2eae;
  --neon-blue: #28d7ff;
  --neon-purple: #7b5cff;
  --neon-yellow: #ffd54a;

  /* Spacing */
  --container-max: 1200px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 26px;

  /* WhatsApp green */
  --wa-green: #25d366;
}

/* ===== RESET ===== */
* { box-sizing: border-box; }
body { margin: 0; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

/* ===== BASE ===== */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top left, #0855a6 0, var(--blue-dark) 45%, #010b1a 100%);
  color: var(--text-main);
  line-height: 1.7;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { margin: 0 0 12px; line-height: 1.3; }
p { margin: 0 0 12px; }

/* ============================================================
   GLOBAL HEADER (loaded via JS fetch from /includes/header.html)
   ============================================================ */
.site-header {
  width: 100%;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 213, 74, 0.15);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.4px;
}
.site-logo span { color: var(--yellow-main); }
.site-logo img { width: 38px; height: 38px; border-radius: 10px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--yellow-main);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--yellow-main);
  white-space: nowrap;
  padding: 6px 2px;
  position: relative;
  transition: opacity 0.2s;
}
.site-nav a:hover { opacity: 0.85; }
.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--yellow-main);
  border-radius: 2px;
}
.site-nav .nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow-main), var(--yellow-deep));
  color: var(--blue-dark);
  font-weight: 700;
}
.site-nav .nav-cta::after { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    gap: 16px;
    padding: 22px 20px;
    background: #03172c;
    border-bottom: 2px solid var(--yellow-main);
    display: none;
    align-items: stretch;
  }
  .site-nav.show { display: flex; }
  .site-nav a { padding: 8px 0; font-size: 16px; }
}

/* ============================================================
   GLOBAL FOOTER (loaded via JS fetch from /includes/footer.html)
   ============================================================ */
.site-footer {
  margin-top: 50px;
  background: #021019;
  color: var(--white);
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 28px 16px 18px;
}
.footer-top-links {
  text-align: center;
  font-size: 14px;
  margin-bottom: 16px;
}
.footer-top-links a {
  color: var(--yellow-main);
  margin: 0 6px;
  display: inline-block;
  padding: 4px 0;
}
.footer-top-links a:hover { text-decoration: underline; }
.footer-top-links .sep { color: rgba(255, 213, 74, 0.4); margin: 0 2px; }

.footer-support-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 14px;
  color: var(--yellow-main);
}
.footer-keywords {
  text-align: center;
  font-size: 13px;
  line-height: 2;
}
.footer-keywords a {
  color: #ffb341;
  margin: 0 5px;
  white-space: nowrap;
  display: inline-block;
}
.footer-keywords a:hover { color: var(--yellow-main); }

.footer-secure-strip {
  margin: 26px 0 0;
  padding: 18px 16px;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--text-dark);
  font-size: 14px;
  border-radius: 6px;
}
.footer-secure-strip strong { color: var(--blue-dark); }

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 16px 0;
  background: #01070d;
  flex-wrap: wrap;
}
.badge-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 700;
}

.footer-bottom {
  padding: 14px 16px 22px;
  text-align: center;
  font-size: 13px;
  color: #d1d5db;
  background: #01070d;
}
.footer-bottom strong { color: var(--yellow-main); }

/* ============================================================
   WHATSAPP FLOAT (Official SVG, 40x40 with pulse)
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
  z-index: 9998;
  transition: transform 0.2s ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float svg { width: 40px; height: 40px; display: block; }
.whatsapp-float:hover { transform: scale(1.08); animation-play-state: paused; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50%      { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.page-wrap { max-width: var(--container-max); margin: 0 auto; padding: 15px; }
main { display: block; }
section { margin-top: 50px; }

.section-title-pill {
  max-width: 900px;
  margin: 0 auto 25px;
  background: linear-gradient(90deg, var(--yellow-main), var(--yellow-deep));
  color: var(--text-dark);
  padding: 14px 20px;
  text-align: center;
  border-radius: 40px;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 0 18px var(--border-glow);
}
.section-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================================
   HOMEPAGE — HERO LOGIN
   ============================================================ */
.hero { margin-top: 20px; padding: 0; }
.hero-11-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 24px;
  background: radial-gradient(circle at top left, var(--blue-soft), var(--blue-dark));
  border-radius: var(--radius-xl);
  box-shadow: 0 0 25px rgba(4, 55, 102, 0.6);
  align-items: center;
}
.hero-11-left { display: flex; align-items: center; justify-content: center; }
.hero-11-mobile-img {
  width: 100%;
  max-width: 380px;
  border-radius: 22px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}
.hero-11-card {
  background: rgba(4, 55, 102, 0.92);
  padding: 35px 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
}
.hero-11-title {
  color: var(--yellow-main);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 25px;
  letter-spacing: 1px;
}
.hero-11-field { margin-bottom: 18px; }
.hero-11-field label {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}
.hero-11-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(1, 16, 36, 0.7);
  color: var(--white);
  font-size: 15px;
  outline: none;
  font-family: inherit;
}
.hero-11-field input:focus {
  border-color: var(--yellow-main);
  box-shadow: 0 0 0 1px rgba(255, 213, 74, 0.45);
}
.hero-11-forgot {
  display: block; text-align: right;
  margin-bottom: 20px; font-size: 13px;
  color: var(--yellow-main);
}
.hero-11-btn {
  width: 100%;
  background: linear-gradient(90deg, var(--yellow-main), var(--yellow-deep));
  padding: 13px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  font-family: inherit;
}
.hero-11-btn:hover { filter: brightness(1.06); }
.hero-11-bottom {
  text-align: center;
  color: var(--text-light);
  margin-top: 18px;
  font-size: 14px;
}
.hero-11-bottom a { color: var(--yellow-main); font-weight: 600; }

.hero-btn-box { text-align: center; margin-top: 20px; }
.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(45deg, var(--yellow-main), #f4a938);
  color: var(--blue-dark);
  font-size: 17px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.hero-btn:hover { transform: translateY(-3px); box-shadow: 0 7px 20px rgba(0, 0, 0, 0.45); }

/* ============================================================
   WELCOME / INTRO BLOCKS
   ============================================================ */
.welcome-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 30px;
  align-items: center;
  padding: 26px 22px 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #06407a, #03142c);
  box-shadow: 0 0 24px rgba(1, 16, 36, 0.85);
}
.welcome-text-main h1, .welcome-text-main h2 {
  color: var(--yellow-main);
  font-size: 26px;
  margin: 0 0 16px;
  line-height: 1.3;
}
.welcome-text-main p { color: var(--text-light); font-size: 16px; line-height: 1.75; }
.welcome-intro-bottom {
  margin-top: 25px;
  padding: 22px 18px;
  border-radius: 24px;
  background: var(--yellow-soft);
  color: #241a00;
  font-size: 16px;
  line-height: 1.75;
  box-shadow: 0 0 20px rgba(255, 226, 122, 0.5);
}
.welcome-intro-bottom h2, .welcome-intro-bottom h3 { color: #241a00; }

/* ============================================================
   WHY-CARDS GRID
   ============================================================ */
.why-section {
  padding: 30px 22px 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #042a53, #020c1c);
  box-shadow: 0 0 24px rgba(1, 12, 29, 0.9);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.why-card {
  background: rgba(5, 60, 112, 0.95);
  border-radius: 18px;
  padding: 18px;
  border: 2px solid var(--border-glow);
  box-shadow: 0 0 18px rgba(255, 213, 74, 0.4);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
}
.why-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--yellow-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #222;
}
.why-card h3 { margin: 0 0 6px; color: var(--yellow-main); font-size: 18px; }
.why-card p  { margin: 0; font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   STEP-BY-STEP REGISTER (yellow theme block)
   ============================================================ */
.steps-section {
  background: var(--yellow-soft);
  color: #261c00;
  border-radius: var(--radius-xl);
  padding: 30px 22px;
  box-shadow: 0 0 22px rgba(255, 226, 122, 0.6);
}
.steps-title-pill {
  background: #f5c94a;
  color: #221700;
  padding: 13px 18px;
  border-radius: 40px;
  max-width: 720px;
  margin: 0 auto 18px;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 0 18px rgba(180, 132, 0, 0.6);
}
.steps-top-text { max-width: 900px; margin: 0 auto 22px; font-size: 16px; line-height: 1.7; }
.steps-section h3 { color: #221700; }
.step-box {
  background: #ffd95a;
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  gap: 8px;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  margin-bottom: 12px;
  box-shadow: 0 0 12px rgba(176, 130, 0, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.step-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #fff7d1;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.step-box h3 { margin: 0 0 4px; font-size: 17px; color: #261c00; }
.step-box p  { margin: 0; font-size: 14px; }
.pro-tip { margin-top: 18px; font-size: 15px; font-weight: 500; }

/* ============================================================
   LOGIN GUIDE SECTION
   ============================================================ */
.login-guide-section {
  background: linear-gradient(135deg, #053360, #020d1c);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  box-shadow: 0 0 24px rgba(1, 10, 23, 0.9);
}
.login-guide-wrapper {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
}
.login-guide-image img {
  border-radius: 18px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
}
.login-guide-heading {
  text-align: center;
  background: var(--blue-soft);
  padding: 14px;
  border-radius: 40px;
  color: var(--yellow-main);
  font-size: 22px;
  margin-bottom: 20px;
  border: 2px solid var(--border-glow);
  box-shadow: 0 0 20px rgba(255, 213, 74, 0.4);
}
.login-guide-subtext {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 22px;
  font-size: 15px;
}
.login-step-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  background: #07406b;
  padding: 16px;
  border-radius: 16px;
  border: 2px solid rgba(255, 213, 74, 0.5);
  box-shadow: 0 0 18px rgba(255, 213, 74, 0.3);
  margin-bottom: 14px;
}
.login-step-icon { font-size: 26px; min-width: 42px; }
.login-step-text h3 { margin: 0 0 4px; color: var(--yellow-main); font-size: 17px; }
.login-step-text p  { margin: 0; color: var(--text-light); font-size: 14px; }

/* ============================================================
   SPORTS / CASINO / BONUS / DW SECTIONS
   ============================================================ */
.sports-section {
  background: var(--yellow-soft);
  padding: 40px 24px;
  border-radius: var(--radius-xl);
  color: #241a00;
  box-shadow: 0 0 24px rgba(255, 226, 122, 0.7);
}
.sports-wrapper {
  max-width: 1150px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 30px;
  align-items: center;
}
.sports-title {
  background: #f5c94a;
  color: #241a00;
  padding: 14px;
  border-radius: 40px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 0 18px rgba(181, 133, 0, 0.6);
}
.sports-text { font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.sports-subtitle { font-weight: 700; margin: 10px 0; font-size: 17px; }
.sports-list { padding-left: 20px; margin: 0 0 16px; }
.sports-list li { margin-bottom: 6px; font-size: 15px; }
.sports-right img { border-radius: 16px; box-shadow: 0 0 18px rgba(0, 0, 0, 0.5); }

.casino-section {
  background: linear-gradient(135deg, #032246, #020815);
  padding: 38px 24px 40px;
  border-radius: var(--radius-xl);
  box-shadow: 0 0 26px rgba(1, 9, 23, 0.9);
}
.casino-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  background: #0c4679;
  padding: 14px;
  border-radius: 40px;
  box-shadow: 0 0 20px rgba(16, 126, 186, 0.7);
  border: 2px solid var(--border-glow);
  color: var(--yellow-main);
}
.casino-desc, .casino-subtitle {
  max-width: 1000px; margin: 0 auto;
  font-size: 16px; color: var(--text-light);
}
.casino-subtitle { margin-top: 20px; margin-bottom: 10px; font-weight: 600; color: var(--yellow-main); }
.casino-box {
  max-width: 1100px;
  margin: 18px auto;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  background: #07406b;
  border-radius: 18px;
  border: 2px solid var(--border-glow);
  box-shadow: 0 0 20px rgba(255, 213, 74, 0.4);
}
.casino-box img { width: 120px; height: 120px; object-fit: cover; border-radius: 12px; }
.casino-text h3 { margin: 0 0 6px; font-size: 20px; color: var(--yellow-main); }
.casino-text p  { margin: 0; font-size: 15px; color: var(--text-light); line-height: 1.7; }

.bonus-section {
  background: var(--yellow-soft);
  padding: 40px 24px;
  border-radius: var(--radius-xl);
  box-shadow: 0 0 24px rgba(255, 226, 122, 0.7);
  color: #251b00;
}
.bonus-container {
  max-width: 1150px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: flex-start;
}
.bonus-title {
  background: #f5c94a;
  padding: 14px;
  border-radius: 40px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(176, 130, 0, 0.6);
  margin-bottom: 18px;
}
.bonus-desc { font-size: 16px; margin-bottom: 22px; }
.bonus-box {
  background: #ffd95a;
  border-radius: 16px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin-bottom: 14px;
  box-shadow: 0 0 16px rgba(176, 130, 0, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.bonus-box img { width: 48px; height: 48px; }
.bonus-box h3 { margin: 0 0 4px; font-size: 18px; color: #261c00; }
.bonus-box p  { margin: 0; font-size: 14px; line-height: 1.6; }
.bonus-right img { border-radius: 16px; box-shadow: 0 0 18px rgba(0, 0, 0, 0.5); }

.dw-section {
  background: linear-gradient(135deg, #032246, #020815);
  padding: 40px 24px;
  border-radius: var(--radius-xl);
  box-shadow: 0 0 26px rgba(1, 9, 23, 0.9);
}
.dw-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  background: #0c4679;
  padding: 14px;
  border-radius: 40px;
  box-shadow: 0 0 20px rgba(16, 126, 186, 0.7);
  border: 2px solid var(--border-glow);
  color: var(--yellow-main);
}
.dw-subtext { text-align: center; max-width: 950px; margin: 0 auto 26px; font-size: 16px; color: var(--text-light); }
.dw-container {
  max-width: 1150px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.dw-box {
  background: #07406b;
  padding: 24px 20px;
  border-radius: 18px;
  border: 2px solid var(--border-glow);
  box-shadow: 0 0 22px rgba(255, 213, 74, 0.45);
}
.dw-box h3 { margin: 0 0 14px; font-size: 20px; color: var(--yellow-main); }
.step-muted { margin-top: 12px; font-size: 14px; color: #9eb8de; }
.step-bold { margin-top: 4px; font-size: 15px; color: var(--text-main); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: #032246;
  padding: 40px 24px 44px;
  border-radius: var(--radius-xl);
  box-shadow: 0 0 26px rgba(1, 9, 23, 0.9);
}
.faq-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
  background: #0c4679;
  padding: 14px;
  border-radius: 40px;
  box-shadow: 0 0 20px rgba(16, 126, 186, 0.7);
  border: 2px solid var(--border-glow);
  color: var(--yellow-main);
}
.faq-box { max-width: 1150px; margin: 0 auto; }
.faq-item { margin-bottom: 10px; border-radius: 6px; overflow: hidden; }
.faq-question {
  width: 100%;
  background: #f3f5f9;
  color: #111827;
  padding: 16px 18px;
  font-size: 16px;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  font-weight: 500;
}
.faq-answer {
  display: none;
  background: var(--white);
  padding: 18px 20px;
  border-left: 3px solid var(--yellow-main);
  border-right: 3px solid var(--yellow-main);
  border-bottom: 3px solid var(--yellow-main);
  font-size: 15px;
  color: #111827;
}
.faq-answer.show { display: block; }
.faq-answer p { margin: 0; }
.faq-question .arrow { font-size: 14px; transition: transform 0.2s; }

/* ============================================================
   GENERIC CONTENT PAGE (terms, privacy, kyc, etc)
   ============================================================ */
.content-page {
  max-width: 1100px;
  margin: 35px auto 40px;
  padding: 0 16px;
}
.content-card {
  padding: 28px 24px;
  background: rgba(3, 33, 64, 0.55);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.content-card h1 {
  text-align: center;
  color: var(--yellow-main);
  font-size: 32px;
  margin: 0 0 8px;
}
.content-card .last-updated {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.content-card h2 {
  margin-top: 32px;
  color: var(--yellow-main);
  font-size: 22px;
}
.content-card h3 {
  margin-top: 18px;
  color: var(--yellow-main);
  font-size: 18px;
}
.content-card p, .content-card li {
  color: var(--text-light);
  font-size: 15px;
}
.content-card ul { padding-left: 22px; margin: 6px 0 12px; }
.content-card li { margin: 6px 0; }
.content-card a { color: var(--yellow-main); }
.content-card a:hover { text-decoration: underline; }

.highlight-box {
  background: rgba(255, 213, 74, 0.15);
  padding: 14px 18px;
  border-left: 4px solid var(--yellow-main);
  border-radius: 12px;
  margin: 14px 0;
  font-size: 14.5px;
}
.image-box { margin: 28px 0; text-align: center; }
.image-box img {
  width: 100%;
  max-width: 900px;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
  margin: 0 auto;
}

/* Hero block on terms / privacy / kyc / responsible-gaming */
.page-hero {
  text-align: center;
  padding: 55px 20px;
  background: linear-gradient(135deg, rgba(4, 55, 102, 0.9), rgba(2, 27, 59, 0.95));
  border-bottom: 2px solid var(--yellow-main);
  margin-bottom: 0;
}
.page-hero h1 {
  font-size: 38px;
  color: var(--yellow-main);
  margin: 0 0 10px;
}
.page-hero p { max-width: 760px; margin: 0 auto; font-size: 17px; color: var(--text-light); }

/* SEO keyword box */
.seo-footer-box {
  margin: 40px auto;
  max-width: 1100px;
  background: rgba(255, 255, 255, 0.06);
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.seo-footer-title {
  color: var(--yellow-main);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}
.seo-keywords {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.seo-keywords a, .seo-keywords span {
  padding: 6px 12px;
  font-size: 13px;
  background: rgba(255, 213, 74, 0.18);
  border-radius: 999px;
  color: var(--text-light);
  border: 1px solid rgba(255, 213, 74, 0.3);
  white-space: nowrap;
  transition: background 0.2s;
}
.seo-keywords a:hover { background: rgba(255, 213, 74, 0.35); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
  margin-top: 8px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
}
.contact-card h2 { font-size: 22px; color: var(--yellow-main); margin-bottom: 12px; }
.contact-item { margin-bottom: 14px; font-size: 15px; }
.contact-item strong { color: var(--white); }

.contact-card form { display: flex; flex-direction: column; gap: 12px; }
.contact-card input, .contact-card textarea {
  width: 100%;
  padding: 12px;
  background: rgba(3, 33, 64, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--white);
  font-size: 15px;
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
}
.contact-card textarea { height: 130px; resize: none; }
.contact-card input:focus, .contact-card textarea:focus { border-color: var(--yellow-main); }
.contact-card button {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow-main), var(--yellow-deep));
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-dark);
  font-family: inherit;
  margin-top: 6px;
}
.office-box {
  margin-top: 36px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.office-title { text-align: center; font-size: 24px; color: var(--yellow-main); margin-bottom: 18px; }
.office-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.office-card {
  background: rgba(3, 33, 64, 0.55);
  padding: 22px;
  border-radius: 18px;
}
.office-card h3 { font-size: 19px; color: var(--yellow-main); margin-bottom: 8px; }
.office-card p { margin-bottom: 4px; font-size: 14.5px; }

/* ============================================================
   RESPONSIBLE-GAMING / ABOUT PAGE TWO-COL CARDS
   ============================================================ */
.section-block {
  max-width: 1100px;
  margin: 35px auto;
  padding: 26px;
  background: var(--blue-glass);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.45);
}
.section-block h2 { color: var(--yellow-main); font-size: 24px; margin-bottom: 12px; }
.section-block img {
  width: 100%; max-width: 700px;
  border-radius: 16px; margin: 20px auto;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
  display: block;
}
.two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.07);
  padding: 20px;
  border-radius: 16px;
  border-left: 4px solid var(--yellow-main);
  box-shadow: 0 0 14px rgba(255, 213, 74, 0.25);
}
.feature-card h3 { color: var(--yellow-main); margin-bottom: 8px; font-size: 18px; }

/* KYC info cards */
.info-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.info-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.info-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--yellow-main), #f0a12b);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  font-size: 22px;
  color: var(--blue-dark);
  font-weight: 900;
}
.info-card-title { font-weight: 700; margin-bottom: 4px; color: var(--yellow-main); }
.info-card-text { font-size: 14px; color: var(--text-light); }

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 15px 0; }
.badge {
  background: rgba(255, 213, 74, 0.08);
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 213, 74, 0.6);
  font-size: 13px;
  color: var(--yellow-main);
}

/* Privacy section box */
.section-box {
  background: rgba(3, 33, 64, 0.55);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 20px;
  border-left: 4px solid var(--yellow-main);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.section-box h2 { margin: 0 0 10px; color: var(--yellow-main); font-size: 22px; }
.section-box h3 { color: var(--yellow-main); margin-top: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-11-container, .welcome-layout, .why-grid,
  .login-guide-wrapper, .sports-wrapper, .bonus-container,
  .dw-container, .casino-box, .contact-grid, .office-grid,
  .two-col-cards, .info-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-11-container, .welcome-layout, .why-section,
  .steps-section, .login-guide-section, .sports-section,
  .casino-section, .bonus-section, .dw-section, .faq-section,
  .content-card, .section-block {
    padding: 22px 16px 26px;
  }
  .section-title-pill, .steps-title-pill { font-size: 20px; }
  .hero-11-title { font-size: 26px; }
  .casino-box, .bonus-box {
    grid-template-columns: 1fr; text-align: center;
  }
  .casino-box img, .bonus-box img { margin: 0 auto; }
  .content-card h1, .page-hero h1 { font-size: 28px; }
  .page-wrap { padding: 12px; }
}

/* ============================================================
   REGISTER PAGE — UNIQUE NEON THEME (scoped)
   Loaded only when body has class="page-register"
   ============================================================ */
body.page-register {
  background:
    radial-gradient(circle at top left, #3a0ca3 0, #050014 40%, #000 85%),
    radial-gradient(circle at bottom right, #ff0080 0, #050014 45%, #000 90%);
  background-blend-mode: screen;
  overflow-x: hidden;
}
body.page-register .site-header {
  background: rgba(5, 0, 20, 0.7);
  border-bottom: 1px solid rgba(255, 46, 174, 0.3);
}
body.page-register .site-logo span { color: var(--neon-yellow); }
body.page-register .site-nav a { color: #cbd5e1; }
body.page-register .site-nav a:hover { color: var(--neon-yellow); }

.signup-shell {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}
.signup-main {
  flex: 1; display: flex;
  align-items: stretch; justify-content: center;
  max-width: 1200px; width: 100%;
  margin: 0 auto;
  gap: 36px;
}
.glow-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(38px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.orb-1 {
  width: 230px; height: 230px;
  background: radial-gradient(circle, var(--neon-pink), transparent 60%);
  top: -30px; right: 8%;
  animation: floatOrb1 16s ease-in-out infinite alternate;
}
.orb-2 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, var(--neon-blue), transparent 65%);
  bottom: -50px; left: 5%;
  animation: floatOrb2 20s ease-in-out infinite alternate;
}
@keyframes floatOrb1 { to { transform: translate3d(-30px, 40px, 0); } }
@keyframes floatOrb2 { to { transform: translate3d(30px, -35px, 0); } }

.card-tilt-wrap {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  perspective: 1200px;
  min-height: 420px;
  position: relative; z-index: 2;
}
.signup-card {
  width: 100%;
  max-width: 430px;
  background: radial-gradient(circle at top left, rgba(255, 46, 174, 0.18), rgba(4, 10, 40, 0.98));
  border-radius: 26px;
  padding: 26px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 30px rgba(255, 46, 174, 0.3), 0 0 40px rgba(40, 215, 255, 0.22);
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}
.signup-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #fff, var(--neon-yellow), #ff8bd9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.signup-subtitle { text-align: center; font-size: 13px; color: #9da7d4; }
.signup-subtitle span { color: var(--neon-blue); font-weight: 500; }
.badge-strip {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 12px; font-size: 11px; flex-wrap: wrap;
}
.badge-pill {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(40, 215, 255, 0.5);
  background: radial-gradient(circle at top, rgba(40, 215, 255, 0.2), transparent 70%);
  display: inline-flex; align-items: center; gap: 6px;
  color: #9da7d4;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--neon-blue); box-shadow: 0 0 8px rgba(40, 215, 255, 0.9); }

.form-grid { margin-top: 18px; }
.field-row { margin-bottom: 14px; }
.field-label {
  font-size: 13px; color: #9da7d4;
  margin-bottom: 4px;
  display: flex; justify-content: space-between; align-items: center;
}
.field-label span { font-size: 11px; color: #ff9ad7; }
.input-shell { position: relative; }
.input-shell input {
  width: 100%;
  padding: 11px 12px 11px 40px;
  border-radius: 12px;
  border: 1px solid rgba(147, 197, 253, 0.55);
  background: radial-gradient(circle at top left, rgba(17, 24, 39, 0.9), rgba(6, 10, 32, 0.98));
  color: #f9fbff;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.2s;
}
.input-shell input::placeholder { color: #6b7280; }
.input-shell input:focus {
  border-color: var(--neon-pink);
  box-shadow: 0 0 0 1px rgba(255, 46, 174, 0.7), 0 0 16px rgba(255, 46, 174, 0.5);
}
.input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-size: 15px; color: rgba(148, 163, 184, 0.9); }
.field-row-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.hint-text { font-size: 11px; color: #9da7d4; margin-top: 4px; }
.terms-row { display: flex; align-items: flex-start; gap: 8px; margin-top: 10px; font-size: 12px; color: #9da7d4; }
.terms-row input { margin-top: 2px; accent-color: var(--neon-pink); cursor: pointer; }
.terms-row a { color: var(--neon-yellow); text-decoration: underline; }
.signup-btn {
  margin-top: 16px;
  width: 100%;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #050014;
  background-image: linear-gradient(120deg, var(--neon-yellow), var(--neon-pink), var(--neon-blue));
  background-size: 200% 200%;
  font-family: inherit;
  box-shadow: 0 0 14px rgba(255, 213, 74, 0.6), 0 0 22px rgba(255, 46, 174, 0.45);
  animation: btnGlow 5s ease-in-out infinite alternate;
}
.signup-btn:hover { transform: translateY(-1px); }
@keyframes btnGlow { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }
.bottom-text { margin-top: 14px; font-size: 13px; text-align: center; color: #9da7d4; }
.bottom-text a { color: var(--neon-blue); font-weight: 500; }

.signup-visual {
  flex: 1;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 420px;
}
.neon-portal {
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 2px solid rgba(40, 215, 255, 0.8);
  box-shadow: 0 0 22px rgba(40, 215, 255, 0.75), 0 0 40px rgba(123, 92, 255, 0.55);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.1), transparent 70%),
              radial-gradient(circle at 50% 100%, rgba(255, 46, 174, 0.2), transparent 75%);
  animation: portalPulse 7s ease-in-out infinite alternate;
}
@keyframes portalPulse {
  0% { transform: scale(0.97); }
  100% { transform: scale(1.04); box-shadow: 0 0 26px rgba(40, 215, 255, 0.9), 0 0 46px rgba(255, 46, 174, 0.75); }
}
.portal-inner-chip {
  width: 170px; height: 170px;
  border-radius: 34px;
  background: radial-gradient(circle at top left, rgba(255, 46, 174, 0.35), rgba(5, 8, 26, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  box-shadow: 0 0 18px rgba(255, 46, 174, 0.75), 0 0 22px rgba(40, 215, 255, 0.75);
  transform: rotate(-12deg);
}
.portal-tag { font-size: 12px; color: #9da7d4; text-transform: uppercase; letter-spacing: 0.12em; }
.portal-main { font-size: 20px; font-weight: 700; color: var(--neon-yellow); }
.portal-sub { font-size: 13px; color: #9da7d4; }
.portal-glow-ring {
  position: absolute;
  width: 115%; height: 115%;
  border-radius: 50%;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  animation: ringSpin 18s linear infinite;
}
.portal-glow-ring:nth-child(2) {
  width: 130%; height: 130%;
  border-style: solid;
  border-color: rgba(40, 215, 255, 0.55);
  border-top-color: transparent;
  border-right-color: transparent;
  animation-duration: 30s;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.floating-chip {
  position: absolute;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: radial-gradient(circle at top left, rgba(40, 215, 255, 0.18), rgba(3, 7, 18, 0.96));
  color: #9da7d4;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.floating-chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--neon-pink); box-shadow: 0 0 10px rgba(255, 46, 174, 0.9); }
.chip-1 { top: 12%; right: 6%; }
.chip-2 { bottom: 15%; left: 10%; }
.side-copy {
  position: absolute;
  bottom: 12%; right: 4%;
  max-width: 260px;
  font-size: 13px;
  color: #9da7d4;
  text-align: right;
}
.side-copy strong { color: var(--neon-yellow); }
@media (max-width: 980px) {
  .signup-main { flex-direction: column-reverse !important; gap: 30px !important; }
  .side-copy { position: static; text-align: center; margin-top: 16px; max-width: 100%; }
  .neon-portal { transform: scale(0.85); }
  .chip-1, .chip-2 { display: none; }
}

/* ============================================================
   BLOG STYLES
   ============================================================ */
.blog-hero {
  text-align: center;
  padding: 50px 20px 30px;
  max-width: 900px;
  margin: 0 auto;
}
.blog-hero h1 { font-size: 38px; color: var(--yellow-main); margin: 0 0 12px; }
.blog-hero p { font-size: 17px; color: var(--text-light); max-width: 700px; margin: 0 auto; }

.blog-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.blog-filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  border: 1px solid rgba(255, 213, 74, 0.3);
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
}
.blog-filter-btn.active, .blog-filter-btn:hover {
  background: linear-gradient(90deg, var(--yellow-main), var(--yellow-deep));
  color: var(--blue-dark);
  font-weight: 700;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.blog-card {
  background: rgba(4, 55, 102, 0.55);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 213, 74, 0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
  border-color: var(--yellow-main);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #062a4d;
}
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  display: inline-block;
  background: rgba(255, 213, 74, 0.18);
  color: var(--yellow-main);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  width: fit-content;
}
.blog-card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.4;
}
.blog-card-excerpt {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}
.blog-empty, .blog-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
  font-size: 16px;
}

/* Single blog post */
.blog-post-wrap {
  max-width: 900px;
  margin: 30px auto 50px;
  padding: 0 16px;
}
.blog-post-header {
  text-align: center;
  margin-bottom: 30px;
}
.blog-post-header .blog-card-cat { margin: 0 auto 14px; }
.blog-post-header h1 {
  font-size: 36px;
  color: var(--yellow-main);
  margin: 0 0 12px;
  line-height: 1.25;
}
.blog-post-meta {
  font-size: 14px;
  color: var(--text-muted);
}
.blog-post-featured {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 30px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}
.blog-post-content {
  background: rgba(3, 33, 64, 0.55);
  padding: 36px 30px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-light);
}
.blog-post-content h2 { color: var(--yellow-main); font-size: 26px; margin: 30px 0 14px; }
.blog-post-content h3 { color: var(--yellow-main); font-size: 21px; margin: 24px 0 10px; }
.blog-post-content p  { margin: 0 0 16px; }
.blog-post-content a  { color: var(--yellow-main); text-decoration: underline; }
.blog-post-content ul, .blog-post-content ol { padding-left: 24px; margin: 0 0 16px; }
.blog-post-content li { margin-bottom: 6px; }
.blog-post-content blockquote {
  border-left: 4px solid var(--yellow-main);
  padding: 12px 16px;
  margin: 18px 0;
  background: rgba(255, 213, 74, 0.08);
  border-radius: 0 12px 12px 0;
  font-style: italic;
}
.blog-post-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 18px 0;
}
.blog-post-content pre {
  background: #010a16;
  padding: 16px;
  border-radius: 10px;
  overflow-x: auto;
  font-size: 14px;
}
.blog-post-content code {
  background: rgba(255, 213, 74, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
}

.blog-post-cta {
  margin-top: 36px;
  text-align: center;
  padding: 28px;
  background: linear-gradient(135deg, var(--yellow-main), var(--yellow-deep));
  border-radius: 18px;
  color: var(--blue-dark);
}
.blog-post-cta h3 { color: var(--blue-dark); font-size: 22px; margin: 0 0 10px; }
.blog-post-cta a {
  display: inline-block;
  padding: 12px 32px;
  background: var(--blue-dark);
  color: var(--yellow-main);
  border-radius: 999px;
  font-weight: 700;
  margin-top: 8px;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  color: var(--yellow-main);
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 213, 74, 0.1);
  border: 1px solid rgba(255, 213, 74, 0.3);
}
.blog-back:hover { background: rgba(255, 213, 74, 0.2); }

@media (max-width: 720px) {
  .blog-hero h1 { font-size: 28px; }
  .blog-post-header h1 { font-size: 26px; }
  .blog-post-content { padding: 24px 18px; font-size: 15px; }
}
