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

:root {
  --bg-dark: #07040d;
  --bg-accent: #110920;
  --primary-gold: #e5b842;
  --primary-gold-dim: rgba(229, 184, 66, 0.6);
  --primary-glow: #ffce54;
  --glass-bg: rgba(20, 10, 35, 0.45);
  --glass-border: rgba(229, 184, 66, 0.2);
  --text-main: #d3cce0;
  --text-heading: #ffffff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(55, 20, 80, 0.15), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(229, 184, 66, 0.05), transparent 40%);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  color: var(--text-heading);
  line-height: 1.2;
}

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-glow);
  text-shadow: 0 0 8px var(--primary-gold-dim);
}

p {
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.stuck {
  padding: 12px 0;
  background: rgba(7, 4, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 10px var(--primary-gold-dim));
}

.logo-wordmark {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(to right, #ffffff, var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

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

.nav a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav a:hover {
  color: var(--primary-glow);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary-gold), #b38b22);
  color: #000 !important;
  padding: 10px 28px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(229, 184, 66, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 184, 66, 0.5);
  color: #000 !important;
}

/* Mobile Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  width: 100%;
  height: 2px;
  background: var(--primary-gold);
  border-radius: 2px;
  transition: 0.4s;
}

.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(7, 4, 13, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: #fff;
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: url('../images/hero_bg.webp') center/cover no-repeat;
  z-index: -2;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7, 4, 13, 0.9) 0%, rgba(7, 4, 13, 0.4) 50%, rgba(7, 4, 13, 0.9) 100%),
              linear-gradient(to bottom, rgba(7, 4, 13, 0.2) 0%, rgba(7, 4, 13, 1) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  color: var(--primary-gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(229, 184, 66, 0.15);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #e2dced;
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 42px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 40px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, var(--primary-gold), #b38b22);
  color: #000;
  box-shadow: 0 8px 25px rgba(229, 184, 66, 0.35);
  border: none;
}

.btn-gold:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(229, 184, 66, 0.5);
  color: #000;
}

.btn-ghost {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(229, 184, 66, 0.1);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-4px);
}

/* ─── STATS ────────────────────────────────────────────── */
.stats {
  padding: 60px 0;
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  padding: 40px 0;
}

.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-gold);
  text-shadow: 0 0 15px rgba(229, 184, 66, 0.4);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-main);
}

/* ─── SECTION COMMON ───────────────────────────────────── */
.section {
  padding: 120px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 80px;
}

.section-eyebrow {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
}

.section-head p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.15rem;
}

/* ─── GAMES MASONRY ────────────────────────────────────── */
.games-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.game-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  position: relative;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}

/* Masonry distinct sizing */
.game-card:nth-child(1) { grid-column: span 8; }
.game-card:nth-child(2) { grid-column: span 4; }
.game-card:nth-child(3) { grid-column: span 4; }
.game-card:nth-child(4) { grid-column: span 8; }
.game-card:nth-child(5) { grid-column: span 6; }
.game-card:nth-child(6) { grid-column: span 6; }

.game-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(229, 184, 66, 0.2);
}

.game-card-img-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}
.game-card:nth-child(1) .game-card-img-wrap,
.game-card:nth-child(4) .game-card-img-wrap {
  height: 400px;
}

.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.game-card:hover .game-card-img {
  transform: scale(1.08);
}

.game-card-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  z-index: 2;
}

.game-card-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.game-card-body h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.game-card-body p {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 30px;
  flex: 1;
}

.game-card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.game-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.game-meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
}

.game-meta-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ─── FEATURED / SPLIT SECTIONS ────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}
.split-visual img {
  width: 100%;
  display: block;
}
.split-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px var(--glass-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.split-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}

.split-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.feat-bullets {
  list-style: none;
  margin-bottom: 40px;
}

.feat-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.feat-bullets li::before {
  content: '';
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23e5b842' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ─── HOW IT WORKS / WHY US ────────────────────────────── */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  background: rgba(20, 10, 35, 0.7);
}

.info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 184, 66, 0.1);
  border: 1px solid var(--primary-gold-dim);
  border-radius: 50%;
  color: var(--primary-gold);
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: inset 0 0 20px rgba(229,184,66,0.2);
}

.info-card h4, .info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* ─── RESPONSIBLE GAMING ───────────────────────────────── */
.resp-bg {
  background: linear-gradient(to top, rgba(7, 4, 13, 1), var(--bg-accent));
  border-top: 1px solid var(--glass-border);
}

.eighteen-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.resp-logos {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.resp-logos img {
  height: auto;
  width: 100%;
  max-width: 140px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.resp-logos a:hover img {
  opacity: 1;
}

/* ─── FOOTER ───────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 30px;
  background: #000;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 20px;
  color: rgba(255,255,255,0.5);
  max-width: 400px;
}

.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: #fff;
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}
.footer-links a:hover {
  color: var(--primary-gold);
}

.disclaimer {
  padding: 30px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-bottom: 40px;
}
.disclaimer strong {
  color: rgba(255,255,255,0.8);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .games-layout { display: flex; flex-direction: column; }
  .game-card-img-wrap { height: 280px !important; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; border: none; background: transparent; padding: 0; box-shadow: none; }
  .stat-item { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 30px; border-radius: var(--radius-md); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .burger { display: flex; }
  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .resp-logos { justify-content: flex-start; }
  .resp-logos img { max-width: 120px; }
  .split-visual.delay-2 { align-items: flex-start !important; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero h1 { font-size: 2rem; }
  .stat-item { padding: 20px; }
  .stat-num { font-size: 2.5rem; }
  .game-card-img-wrap { height: 220px !important; }
  .game-card-body h3 { font-size: 1.5rem; }
  .info-card { padding: 24px 16px; }
  .footer-top { gap: 30px; }
}

@media (max-width: 320px) {
  .logo-wordmark { font-size: 1.3rem; }
  .header-inner { padding: 0; }
  .hero { padding-top: 100px; }
  .hero h1 { font-size: 1.75rem; }
  .hero-badge { font-size: 0.7rem; padding: 6px 12px; margin-bottom: 16px; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
  .stats-grid { gap: 10px; }
  .stat-item { padding: 15px 10px; }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.7rem; }
  .game-card-body { padding: 15px; }
  .game-meta-item { flex-direction: row; justify-content: space-between; align-items: center; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 5px; }
  .game-card-meta { flex-direction: column; gap: 10px; border-top: none; }
  .split-content h2 { font-size: 1.75rem; }
  .feat-bullets li { font-size: 0.95rem; }
  .info-icon { width: 50px; height: 50px; font-size: 1.3rem; margin-bottom: 16px; }
  .info-card h3 { font-size: 1.3rem; }
}

/* ─── POLICY PAGES ─────────────────────────────────────── */
.policy-page {
  padding: 140px 0 80px;
}
.policy-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 50px;
}
.policy-wrap h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}
.policy-date {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-gold);
  margin-bottom: 40px;
}
.policy-wrap h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 15px;
}
.policy-wrap p {
  margin-bottom: 20px;
  color: var(--text-main);
}
@media (max-width: 480px) {
  .policy-page { padding: 100px 0 60px; }
  .policy-wrap { padding: 25px 20px; }
}

/* ─── NEWSPAPER / GUIDE PAGE ───────────────────────────── */
.newspaper-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 60px;
}
.newspaper-wrap .section-eyebrow {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1rem;
}
.newspaper-wrap h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--glass-border);
  padding-bottom: 20px;
}
.newspaper-layout {
  column-count: 2;
  column-gap: 50px;
  column-rule: 1px solid rgba(255, 255, 255, 0.1);
  text-align: justify;
}
.newspaper-layout p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--text-main);
  break-inside: avoid;
}
.newspaper-layout h2 {
  column-span: all;
  font-size: 2.2rem;
  margin: 50px 0 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  color: var(--primary-gold);
}
.newspaper-layout h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: #fff;
  break-after: avoid;
}
.drop-cap::first-letter {
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  float: left;
  line-height: 0.8;
  padding-right: 12px;
  padding-top: 8px;
  color: var(--primary-gold);
  text-shadow: 0 0 15px var(--primary-gold-dim);
}

@media (max-width: 768px) {
  .newspaper-layout {
    column-count: 1;
    column-rule: none;
    text-align: left;
  }
  .newspaper-wrap { padding: 30px 20px; }
  .newspaper-layout h2 { margin: 40px 0 20px; padding: 10px 0; font-size: 1.8rem; }
}
/* --- ACCESSIBILITY OVERRIDES --- */
.site-footer p, .site-footer .disclaimer {
  color: rgba(255, 255, 255, 0.7) !important;
}
.eighteen-badge {
  color: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}
