:root {
  --bll-primary: #7c3aed;
  --bll-primary-dark: #6d28d9;
  --bll-primary-light: #8b5cf6;
  --bll-accent: #f59e0b;
  --bll-accent-dark: #d97706;
  --bll-accent-light: #fbbf24;
  --bll-sidebar: #1e1b4b;
  --bll-sidebar-hover: #312e81;
  --bll-bg: #faf5ff;
  --bll-bg-card: #ffffff;
  --bll-dark: #0f0a1e;
  --bll-gray: #6b7280;
  --bll-gray-light: #9ca3af;
  --bll-border: #e9d5ff;
  --bll-white: #ffffff;
  --bll-success: #059669;
  --bll-error: #dc2626;
  --bll-warning: #f59e0b;
  --bll-shadow-sm: 0 1px 3px rgba(124, 58, 237, 0.08);
  --bll-shadow-md: 0 4px 14px rgba(124, 58, 237, 0.13);
  --bll-shadow-lg: 0 8px 28px rgba(124, 58, 237, 0.18);
  --bll-gradient: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  --bll-gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --bll-gradient-sidebar: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
  --bll-radius-sm: 8px;
  --bll-radius-md: 12px;
  --bll-radius-lg: 18px;
  --bll-radius-xl: 24px;
  --bll-sidebar-w: 265px;
  --bll-mobile-h: 64px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body.bigluckylotto-body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bll-bg);
  color: var(--bll-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.9rem;
  color: var(--bll-dark);
}

h1 { font-size: 2.4rem; letter-spacing: -0.025em; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; line-height: 1.75; }

a {
  color: var(--bll-primary);
  text-decoration: none;
  transition: color 0.22s ease;
}

a:hover { color: var(--bll-primary-dark); }

ul { list-style: none; margin: 0; padding: 0; }

/* ─── SIDEBAR ─────────────────────────────────────────── */

.bigluckylotto-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: var(--bll-sidebar-w);
  background: var(--bll-gradient-sidebar);
  z-index: 200;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.bigluckylotto-sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 0 2rem 0;
}

.bigluckylotto-sidebar-brand {
  padding: 1.8rem 1.4rem 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.bigluckylotto-sidebar-brand a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.bigluckylotto-sidebar-brand img {
  width: 44px;
  height: 44px;
  border-radius: var(--bll-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.bigluckylotto-sidebar-brand span {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bll-white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.bigluckylotto-sidebar-nav {
  flex: 1;
  padding: 1.2rem 0;
}

.bigluckylotto-sidebar-nav ul {
  list-style: none;
  padding: 0 0.75rem;
  margin: 0;
}

.bigluckylotto-sidebar-nav li {
  margin-bottom: 0.3rem;
}

.bigluckylotto-slink {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--bll-radius-md);
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.22s ease;
  text-decoration: none;
}

.bigluckylotto-slink i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.bigluckylotto-slink:hover,
.bigluckylotto-slink.active {
  background: rgba(255,255,255,0.12);
  color: var(--bll-white);
}

.bigluckylotto-slink.active {
  background: rgba(124, 58, 237, 0.5);
  color: var(--bll-white);
  font-weight: 600;
}

.bigluckylotto-slink-highlight {
  background: rgba(245, 158, 11, 0.18);
  color: var(--bll-accent-light) !important;
  font-weight: 600;
}

.bigluckylotto-slink-highlight:hover {
  background: rgba(245, 158, 11, 0.3) !important;
  color: #fff !important;
}

.bigluckylotto-slink-cta {
  background: var(--bll-gradient);
  color: var(--bll-white) !important;
  font-weight: 700;
  margin-top: 0.25rem;
}

.bigluckylotto-slink-cta:hover {
  background: var(--bll-primary-dark) !important;
  transform: translateX(3px);
}

.bigluckylotto-sidebar-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 1rem 1.4rem;
}

.bigluckylotto-sidebar-footer {
  padding: 1rem 1.4rem 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.bigluckylotto-sidebar-age {
  display: inline-block;
  background: var(--bll-accent);
  color: var(--bll-dark);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.4rem;
}

.bigluckylotto-sidebar-resp {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ─── MOBILE HEADER ───────────────────────────────────── */

.bigluckylotto-mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--bll-mobile-h);
  background: var(--bll-sidebar);
  z-index: 150;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.bigluckylotto-mobile-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.bigluckylotto-mobile-brand img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}

.bigluckylotto-mobile-brand span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bll-white);
}

.bigluckylotto-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--bll-primary);
  border: none;
  border-radius: var(--bll-radius-sm);
  cursor: pointer;
  padding: 10px;
  transition: background 0.2s ease;
}

.bigluckylotto-hamburger:hover { background: var(--bll-primary-dark); }

.bigluckylotto-hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--bll-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

/* ─── OVERLAY ─────────────────────────────────────────── */

.bigluckylotto-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 190;
  backdrop-filter: blur(2px);
  transition: opacity 0.3s ease;
}

.bigluckylotto-overlay.visible {
  display: block;
}

/* ─── CONTENT WRAPPER ─────────────────────────────────── */

.bigluckylotto-content-wrap {
  margin-left: var(--bll-sidebar-w);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bigluckylotto-main {
  flex: 1;
  padding-top: 0;
}

/* ─── MASONRY GRID (HOME) ─────────────────────────────── */

.bigluckylotto-masonry-wrap {
  padding: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.bigluckylotto-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bll-span-2 { grid-column: span 2; }
.bll-span-3 { grid-column: span 3; }

/* ─── CARDS ───────────────────────────────────────────── */

.bll-card {
  background: var(--bll-bg-card);
  border-radius: var(--bll-radius-lg);
  padding: 2rem;
  box-shadow: var(--bll-shadow-md);
  border: 1.5px solid var(--bll-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  position: relative;
}

.bll-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bll-shadow-lg);
}

/* Hero card */
.bll-hero-card {
  background: var(--bll-gradient);
  color: var(--bll-white);
  border: none;
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.bll-hero-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.bll-hero-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  pointer-events: none;
}

.bll-hero-text { position: relative; z-index: 1; flex: 1; min-width: 260px; }

.bll-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: var(--bll-white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.bll-hero-card h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--bll-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.bll-hero-card p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

.bll-hero-prize {
  position: relative;
  z-index: 1;
  text-align: center;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: var(--bll-radius-xl);
  padding: 2rem 2.5rem;
  flex-shrink: 0;
}

.bll-prize-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bll-prize-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--bll-accent-light);
  line-height: 1;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.bll-prize-sublabel {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Stats card */
.bll-stats-card {
  background: var(--bll-sidebar);
  color: var(--bll-white);
  border: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}

.bll-stats-card h3 {
  color: var(--bll-accent-light);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.bll-stats-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  margin: 0;
}

.bll-stats-inner { display: flex; flex-direction: column; gap: 1.8rem; }

.bll-stat-item { display: flex; flex-direction: column; align-items: center; }

.bll-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bll-accent-light);
  line-height: 1;
}

.bll-stat-txt {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}

/* How it works card */
.bll-how-card { padding: 2.2rem 2.5rem; }

.bll-how-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1.8rem;
  color: var(--bll-dark);
}

.bll-steps {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bll-step {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.bll-step-num {
  width: 42px;
  height: 42px;
  background: var(--bll-gradient);
  color: var(--bll-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.bll-step h4 {
  font-size: 1rem;
  color: var(--bll-dark);
  margin: 0 0 0.3rem;
}

.bll-step p {
  font-size: 0.88rem;
  color: var(--bll-gray);
  margin: 0;
  line-height: 1.55;
}

/* Package cards */
.bll-pack-card {
  border: 2px solid var(--bll-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.bll-pack-card:hover { border-color: var(--bll-primary); }

.bll-pack-tier {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bll-primary);
  background: rgba(124,58,237,0.1);
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}

.bll-pack-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bll-dark);
  margin-bottom: 1.2rem;
}

.bll-pack-features {
  width: 100%;
  margin-bottom: 1.5rem;
}

.bll-pack-features li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--bll-border);
  font-size: 0.9rem;
  color: var(--bll-gray);
}

.bll-pack-features li:last-child { border-bottom: none; }

.bll-pack-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--bll-primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.bll-pack-price-note {
  font-size: 0.82rem;
  color: var(--bll-gray);
  margin-bottom: 1.2rem;
}

.bll-pack-card .bll-btn { width: 100%; }

/* Upcoming draw card */
.bll-draw-card {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: var(--bll-white);
  border: none;
  text-align: center;
}

.bll-draw-card h3 {
  color: var(--bll-white);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.bll-countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bll-countdown-box {
  background: rgba(255,255,255,0.2);
  border-radius: var(--bll-radius-md);
  padding: 0.75rem 1rem;
  min-width: 60px;
}

.bll-countdown-num {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.bll-countdown-lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.82;
  display: block;
  margin-top: 0.2rem;
}

/* Why us card */
.bll-why-card { border: none; }

.bll-why-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1.8rem;
  text-align: center;
}

.bll-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.bll-why-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bll-bg);
  border-radius: var(--bll-radius-md);
  border: 1.5px solid var(--bll-border);
  transition: border-color 0.22s, box-shadow 0.22s;
}

.bll-why-item:hover {
  border-color: var(--bll-primary);
  box-shadow: var(--bll-shadow-sm);
}

.bll-why-icon {
  width: 52px;
  height: 52px;
  background: var(--bll-gradient);
  border-radius: var(--bll-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  color: var(--bll-white);
}

.bll-why-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--bll-dark);
}

.bll-why-item p {
  font-size: 0.86rem;
  color: var(--bll-gray);
  margin: 0;
  line-height: 1.55;
}

/* ─── BUTTONS ─────────────────────────────────────────── */

.bll-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--bll-radius-md);
  font-weight: 700;
  font-size: 0.96rem;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  text-align: center;
  min-width: 160px;
  text-decoration: none;
}

.bll-btn-primary {
  background: var(--bll-gradient);
  color: var(--bll-white);
  box-shadow: var(--bll-shadow-md);
}

.bll-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--bll-shadow-lg);
  color: var(--bll-white);
  background: var(--bll-primary-dark);
}

.bll-btn-accent {
  background: var(--bll-gradient-accent);
  color: var(--bll-dark);
  box-shadow: 0 4px 14px rgba(245,158,11,0.3);
}

.bll-btn-accent:hover {
  transform: translateY(-2px);
  color: var(--bll-dark);
  background: var(--bll-accent-dark);
}

.bll-btn-outline {
  background: transparent;
  border: 2px solid var(--bll-primary);
  color: var(--bll-primary);
}

.bll-btn-outline:hover {
  background: var(--bll-primary);
  color: var(--bll-white);
}

.bll-btn-ghost {
  background: rgba(255,255,255,0.18);
  color: var(--bll-white);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.bll-btn-ghost:hover {
  background: rgba(255,255,255,0.28);
  color: var(--bll-white);
}

.bll-btn-block {
  display: block;
  width: 100%;
}

.bll-btn i { margin-right: 0.4rem; }

/* ─── INNER PAGE LAYOUT ───────────────────────────────── */

.bll-page-wrap {
  padding: 2.5rem 2rem 3rem;
  max-width: 1060px;
  margin: 0 auto;
}

.bll-page-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--bll-border);
}

.bll-page-header h1 {
  font-size: 2.2rem;
  color: var(--bll-primary);
  margin-bottom: 0.5rem;
}

.bll-page-header p {
  color: var(--bll-gray);
  font-size: 1.02rem;
  margin: 0;
}

.bll-content-card {
  background: var(--bll-bg-card);
  border-radius: var(--bll-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--bll-shadow-md);
  border: 1.5px solid var(--bll-border);
  margin-bottom: 1.5rem;
}

.bll-content-card h2 {
  font-size: 1.5rem;
  color: var(--bll-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--bll-border);
}

.bll-content-card h3 {
  font-size: 1.15rem;
  color: var(--bll-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.bll-content-card ul {
  margin-left: 1.4rem;
  margin-bottom: 1.2rem;
  list-style: disc;
}

.bll-content-card li {
  margin-bottom: 0.6rem;
  color: var(--bll-gray);
  line-height: 1.7;
}

/* Alerts */
.bll-alert {
  padding: 1.1rem 1.4rem;
  border-radius: var(--bll-radius-md);
  margin-bottom: 1.4rem;
  border-left: 4px solid;
  font-size: 0.95rem;
}

.bll-alert-info {
  background: rgba(124,58,237,0.07);
  border-color: var(--bll-primary);
  color: var(--bll-dark);
}

.bll-alert-warning {
  background: rgba(245,158,11,0.08);
  border-color: var(--bll-accent);
  color: var(--bll-dark);
}

.bll-alert-success {
  background: rgba(5,150,105,0.08);
  border-color: var(--bll-success);
  color: var(--bll-dark);
}

.bll-alert-danger {
  background: rgba(220,38,38,0.08);
  border-color: var(--bll-error);
  color: var(--bll-dark);
}

.bll-alert h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

/* ─── ABOUT PAGE ──────────────────────────────────────── */

.bll-about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.bll-about-item {
  background: var(--bll-bg);
  border: 1.5px solid var(--bll-border);
  border-radius: var(--bll-radius-md);
  padding: 1.6rem;
  transition: border-color 0.22s, box-shadow 0.22s;
}

.bll-about-item:hover {
  border-color: var(--bll-primary);
  box-shadow: var(--bll-shadow-sm);
}

.bll-about-icon {
  width: 50px;
  height: 50px;
  background: var(--bll-gradient);
  color: var(--bll-white);
  border-radius: var(--bll-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.bll-about-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--bll-dark);
}

.bll-about-item p {
  font-size: 0.92rem;
  color: var(--bll-gray);
  margin: 0;
  line-height: 1.6;
}

/* ─── BUY TICKETS PAGE ────────────────────────────────── */

.bll-tickets-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

.bll-number-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.bll-num-btn {
  width: 100%;
  aspect-ratio: 1;
  max-width: 52px;
  border: 2px solid var(--bll-border);
  border-radius: 50%;
  background: var(--bll-white);
  color: var(--bll-dark);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bll-num-btn:hover {
  border-color: var(--bll-primary);
  background: rgba(124,58,237,0.08);
}

.bll-num-btn.selected {
  background: var(--bll-gradient);
  border-color: var(--bll-primary);
  color: var(--bll-white);
  box-shadow: var(--bll-shadow-sm);
}

.bll-num-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.bll-ticket-summary {
  background: var(--bll-bg);
  border: 1.5px solid var(--bll-border);
  border-radius: var(--bll-radius-md);
  padding: 1.5rem;
  position: sticky;
  top: 20px;
}

.bll-ticket-summary h3 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--bll-dark);
}

.bll-summary-dl { margin-bottom: 1rem; }

.bll-summary-dl dt {
  color: var(--bll-gray);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.7rem;
}

.bll-summary-dl dd {
  margin: 0.2rem 0 0;
  font-weight: 600;
  color: var(--bll-dark);
  font-size: 0.95rem;
}

.bll-summary-divider {
  height: 1px;
  background: var(--bll-border);
  margin: 1rem 0;
  border: none;
}

.bll-summary-total {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.bll-ticket-note {
  font-size: 0.78rem;
  color: var(--bll-gray);
  line-height: 1.5;
  margin: 0.8rem 0 0;
}

/* ─── CONTACT PAGE ────────────────────────────────────── */

.bll-contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
}

.bll-contact-card {
  background: var(--bll-bg);
  border: 1.5px solid var(--bll-border);
  border-radius: var(--bll-radius-md);
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.22s;
}

.bll-contact-card:hover { border-color: var(--bll-primary); }

.bll-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--bll-gradient);
  border-radius: var(--bll-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bll-white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bll-contact-details h4 {
  font-size: 0.9rem;
  color: var(--bll-primary);
  margin-bottom: 0.3rem;
}

.bll-contact-details p,
.bll-contact-details a {
  font-size: 0.9rem;
  color: var(--bll-gray);
  margin: 0;
  line-height: 1.55;
}

/* ─── FORMS ───────────────────────────────────────────── */

.bll-form-group {
  margin-bottom: 1.4rem;
}

.bll-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--bll-dark);
  font-size: 0.93rem;
}

.bll-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--bll-border);
  border-radius: var(--bll-radius-sm);
  font-size: 0.97rem;
  font-family: inherit;
  transition: border-color 0.22s, box-shadow 0.22s;
  background: var(--bll-white);
  color: var(--bll-dark);
}

.bll-input:focus {
  outline: none;
  border-color: var(--bll-primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}

textarea.bll-input {
  resize: vertical;
  min-height: 130px;
}

.bll-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* ─── AUTH FORMS ──────────────────────────────────────── */

.bll-auth-wrap {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: var(--bll-bg);
}

.bll-auth-box {
  width: 100%;
  max-width: 460px;
  background: var(--bll-bg-card);
  border-radius: var(--bll-radius-xl);
  padding: 2.8rem;
  box-shadow: var(--bll-shadow-lg);
  border: 1.5px solid var(--bll-border);
}

.bll-auth-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.bll-auth-logo img {
  width: 56px;
  height: 56px;
  border-radius: var(--bll-radius-md);
  object-fit: cover;
}

.bll-auth-logo h1 {
  font-size: 1.5rem;
  color: var(--bll-primary);
  margin-top: 0.75rem;
  margin-bottom: 0.3rem;
}

.bll-auth-logo p {
  color: var(--bll-gray);
  font-size: 0.9rem;
  margin: 0;
}

.bll-auth-switch {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bll-border);
  font-size: 0.9rem;
  color: var(--bll-gray);
}

.bll-auth-switch a {
  font-weight: 600;
}

.bll-form-response {
  margin-top: 1.2rem;
  padding: 1rem 1.3rem;
  border-radius: var(--bll-radius-md);
  font-size: 0.93rem;
  display: none;
}

.bll-form-response.show { display: block; }

.bll-form-response.success {
  background: rgba(5,150,105,0.08);
  border: 1px solid var(--bll-success);
  color: #065f46;
}

.bll-form-response.error {
  background: rgba(220,38,38,0.08);
  border: 1px solid var(--bll-error);
  color: #991b1b;
}

/* FAQ section */
.bll-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.2rem;
}

.bll-faq-item {
  background: var(--bll-bg);
  border: 1.5px solid var(--bll-border);
  border-radius: var(--bll-radius-md);
  padding: 1.4rem;
}

.bll-faq-item h4 {
  font-size: 0.97rem;
  color: var(--bll-primary);
  margin-bottom: 0.6rem;
}

.bll-faq-item h4 i {
  color: var(--bll-accent);
  margin-right: 0.4rem;
}

.bll-faq-item p {
  font-size: 0.88rem;
  color: var(--bll-gray);
  margin: 0;
  line-height: 1.6;
}

/* ─── FOOTER ──────────────────────────────────────────── */

.bigluckylotto-footer {
  background: var(--bll-dark);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 2rem 0;
}

.bigluckylotto-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bigluckylotto-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.bigluckylotto-footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 0;
}

.bigluckylotto-footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.bigluckylotto-footer-logo-wrap img {
  width: 42px;
  height: 42px;
  border-radius: var(--bll-radius-sm);
  object-fit: cover;
}

.bigluckylotto-footer-logo-wrap span {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bll-white);
}

.bigluckylotto-footer-links-col h5 {
  color: var(--bll-white);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.1rem;
}

.bigluckylotto-footer-links-col ul li {
  margin-bottom: 0.6rem;
}

.bigluckylotto-footer-links-col ul li a {
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.bigluckylotto-footer-links-col ul li a:hover {
  color: var(--bll-primary-light);
}

.bigluckylotto-footer-contact-col h5 {
  color: var(--bll-white);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.1rem;
}

.bigluckylotto-footer-contact-col p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.bigluckylotto-footer-contact-col p i {
  margin-top: 0.1rem;
  color: var(--bll-primary-light);
  flex-shrink: 0;
}

.bigluckylotto-footer-contact-col a {
  color: rgba(255,255,255,0.62);
}

.bigluckylotto-footer-contact-col a:hover {
  color: var(--bll-primary-light);
}

.bigluckylotto-footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.bigluckylotto-resp-logo {
  height: 38px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 0.2s;
}

.bigluckylotto-footer-logos a:hover .bigluckylotto-resp-logo {
  opacity: 1;
}

.bigluckylotto-footer-disclaimer {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.bigluckylotto-footer-disclaimer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.bigluckylotto-footer-disclaimer a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
}

.bigluckylotto-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bigluckylotto-footer-bottom a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
}

.bigluckylotto-footer-bottom a:hover {
  color: var(--bll-primary-light);
}

/* ─── COOKIE BAR ──────────────────────────────────────── */

.bigluckylotto-cookie-bar {
  position: fixed;
  bottom: 0;
  left: var(--bll-sidebar-w);
  right: 0;
  background: var(--bll-dark);
  color: var(--bll-white);
  padding: 1.2rem 2rem;
  z-index: 500;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.bigluckylotto-cookie-bar.show {
  transform: translateY(0);
}

.bigluckylotto-cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.bigluckylotto-cookie-msg {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.bigluckylotto-cookie-msg i {
  color: var(--bll-accent-light);
  font-size: 1.3rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.bigluckylotto-cookie-msg p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
}

.bigluckylotto-cookie-msg a {
  color: var(--bll-primary-light);
  text-decoration: underline;
}

.bigluckylotto-cookie-btn {
  background: var(--bll-gradient);
  color: var(--bll-white);
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: var(--bll-radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.bigluckylotto-cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124,58,237,0.35);
}

/* ─── UTILITY ─────────────────────────────────────────── */

.bll-hidden { display: none !important; }

.bll-section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--bll-dark);
  margin-bottom: 1.5rem;
}

.bll-section-title.center { text-align: center; }

.bll-divider {
  height: 1px;
  background: var(--bll-border);
  border: none;
  margin: 2rem 0;
}

.bll-mt-2 { margin-top: 1.5rem; }
.bll-mt-3 { margin-top: 2rem; }
.bll-mb-1 { margin-bottom: 0.75rem; }
.bll-mb-2 { margin-bottom: 1.5rem; }

/* loading spinner */
.bll-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: bll-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 0.5rem;
}

@keyframes bll-spin {
  to { transform: rotate(360deg); }
}

/* ─── RESPONSIBLE GAMBLING ────────────────────────────── */

.bll-resp-list p {
  margin-bottom: 1.2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--bll-primary);
}

.bll-resp-list p:last-child { margin-bottom: 0; }

/* ─── RESPONSIVE ──────────────────────────────────────── */

@media (max-width: 1280px) {
  .bigluckylotto-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .bigluckylotto-sidebar {
    transform: translateX(-100%);
  }

  .bigluckylotto-sidebar.open {
    transform: translateX(0);
  }

  .bigluckylotto-mobile-header {
    display: flex;
  }

  .bigluckylotto-content-wrap {
    margin-left: 0;
    padding-top: var(--bll-mobile-h);
  }

  .bigluckylotto-cookie-bar {
    left: 0;
  }

  .bll-masonry-wrap {
    padding: 1.5rem 1.2rem;
  }

  .bigluckylotto-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .bll-span-3 { grid-column: span 2; }
  .bll-span-2 { grid-column: span 2; }

  .bll-hero-card {
    flex-direction: column;
    text-align: center;
  }

  .bll-hero-prize { width: 100%; max-width: 320px; margin: 0 auto; }

  .bll-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bll-tickets-layout {
    grid-template-columns: 1fr;
  }

  .bll-contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.55rem; }

  .bigluckylotto-masonry {
    grid-template-columns: 1fr;
  }

  .bll-span-3,
  .bll-span-2 { grid-column: span 1; }

  .bll-hero-card { padding: 2rem 1.5rem; }

  .bll-hero-card h1 { font-size: 1.9rem; }

  .bll-why-grid { grid-template-columns: 1fr; }

  .bll-about-grid { grid-template-columns: 1fr; }

  .bll-faq-grid { grid-template-columns: 1fr; }

  .bll-form-row { grid-template-columns: 1fr; }

  .bll-page-wrap { padding: 1.5rem 1rem 2rem; }

  .bll-auth-box { padding: 2rem 1.5rem; }

  .bll-steps { flex-direction: column; }

  .bll-masonry-wrap { padding: 1rem; }

  .bigluckylotto-masonry-wrap { padding: 1rem; }

  .bigluckylotto-footer-top {
    grid-template-columns: 1fr;
  }

  .bigluckylotto-cookie-inner {
    flex-direction: column;
  }

  .bll-number-grid {
    grid-template-columns: repeat(9, 1fr);
  }
}

@media (max-width: 480px) {
  .bll-hero-card h1 { font-size: 1.65rem; }

  .bll-prize-amount { font-size: 2.2rem; }

  .bll-countdown { gap: 0.5rem; }

  .bll-countdown-box { min-width: 50px; padding: 0.6rem 0.7rem; }

  .bll-countdown-num { font-size: 1.5rem; }

  .bll-number-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}
