/* Win Daily Cash Lottery - dunkzoneelite.com */
/* Bold Emerald & Rose Design - No Photos */

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

:root {
  /* Emerald Green + Rose Pink */
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --rose-600: #e11d48;
  --rose-500: #f43f5e;
  --rose-400: #fb7185;
  
  /* Neutrals */
  --gray-950: #030712;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  
  /* Semantic */
  --primary: var(--emerald-600);
  --primary-dark: var(--emerald-700);
  --accent: var(--rose-500);
  --accent-hover: var(--rose-400);
  --heading: var(--gray-900);
  --body: var(--gray-600);
  --muted: var(--gray-500);
  --bg: var(--white);
  --bg-alt: var(--gray-50);
  --line: var(--gray-200);
  
  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  
  /* Typography */
  --font: 'Space Grotesk', system-ui, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;
  
  /* Effects */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --rounded: 0.5rem;
  --rounded-lg: 0.75rem;
  --rounded-xl: 1rem;
  --rounded-2xl: 1.5rem;
  --rounded-full: 9999px;
  --ease: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(var(--fs-4xl), 7vw, var(--fs-6xl)); }
h2 { font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl)); }
h3 { font-size: clamp(var(--fs-xl), 3vw, var(--fs-2xl)); }
h4 { font-size: var(--fs-lg); }

p { margin-bottom: var(--sp-4); }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container--sm {
  max-width: 768px;
}

/* Top Navigation */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--ease);
}

.top-nav.scrolled {
  box-shadow: var(--shadow);
}

.top-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.top-nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--heading);
}

.top-nav__logo i {
  font-size: 1.75rem;
  color: var(--emerald-500);
}

.top-nav__menu {
  display: flex;
  gap: var(--sp-6);
  list-style: none;
}

.top-nav__menu a {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--body);
  transition: color var(--ease);
}

.top-nav__menu a:hover {
  color: var(--primary);
}

.top-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  background: none;
  border: none;
  cursor: pointer;
}

.top-nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  transition: all var(--ease);
}

/* Mobile Menu */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--ease);
  z-index: 98;
}

.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--white);
  padding: var(--sp-8);
  transition: right var(--ease);
  z-index: 99;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer__menu {
  list-style: none;
  margin-top: var(--sp-8);
}

.mobile-drawer__menu li {
  border-bottom: 1px solid var(--line);
}

.mobile-drawer__menu a {
  display: block;
  padding: var(--sp-4) 0;
  font-weight: 600;
  color: var(--heading);
}

/* Hero Banner */
.hero-banner {
  padding: var(--sp-24) 0;
  background: linear-gradient(160deg, var(--gray-900) 0%, var(--gray-700) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--emerald-400) 0%, transparent 70%);
  opacity: 0.15;
}

.hero-banner::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--rose-500) 0%, transparent 70%);
  opacity: 0.1;
}

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

.hero-banner__icon {
  font-size: 4rem;
  color: var(--emerald-400);
  margin-bottom: var(--sp-6);
}

.hero-banner__tag {
  display: inline-block;
  padding: var(--sp-2) var(--sp-4);
  background: var(--rose-500);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--rounded-full);
  margin-bottom: var(--sp-4);
}

.hero-banner__title {
  color: var(--white);
  margin-bottom: var(--sp-6);
}

.hero-banner__text {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--sp-8);
}

/* Page Header */
.page-header {
  padding: var(--sp-20) 0;
  background: var(--gray-900);
  text-align: center;
}

.page-header__icon {
  font-size: 3rem;
  color: var(--emerald-400);
  margin-bottom: var(--sp-4);
}

.page-header__tag {
  display: inline-block;
  padding: var(--sp-2) var(--sp-4);
  background: var(--rose-500);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--rounded-full);
  margin-bottom: var(--sp-4);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.page-header p {
  color: var(--gray-400);
  max-width: 550px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 700;
  border: none;
  border-radius: var(--rounded-full);
  cursor: pointer;
  transition: all var(--ease);
}

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

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

.btn--accent {
  background: var(--accent);
  color: var(--white);
}

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

.btn--ghost {
  background: transparent;
  border: 2px solid var(--line);
  color: var(--heading);
}

.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Sections */
.segment {
  padding: var(--sp-24) 0;
}

.segment--alt {
  background: var(--bg-alt);
}

.segment--dark {
  background: var(--gray-900);
}

.segment--dark h2,
.segment--dark h3 {
  color: var(--white);
}

.segment--dark p {
  color: var(--gray-400);
}

.segment__top {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-16);
}

.segment__tag {
  display: inline-block;
  padding: var(--sp-1) var(--sp-4);
  background: var(--emerald-100);
  color: var(--emerald-700);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--rounded-full);
  margin-bottom: var(--sp-4);
}

/* Feature Boxes */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
}

.feature-box {
  background: var(--white);
  padding: var(--sp-8);
  border-radius: var(--rounded-xl);
  border: 1px solid var(--line);
  text-align: center;
  transition: all var(--ease);
}

.feature-box:hover {
  border-color: var(--emerald-400);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.feature-box__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
  border-radius: var(--rounded-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
}

.feature-box__icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.feature-box h3 {
  margin-bottom: var(--sp-2);
  font-size: var(--fs-lg);
}

.feature-box p {
  color: var(--muted);
  font-size: var(--fs-sm);
  margin: 0;
}

/* Award Cards (Prizes) */
.award-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-6);
}

.award-card {
  background: var(--white);
  border-radius: var(--rounded-xl);
  padding: var(--sp-8);
  border: 2px solid var(--line);
  text-align: center;
  transition: all var(--ease);
}

.award-card:hover {
  border-color: var(--rose-400);
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}

.award-card__icon {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--rose-400), var(--rose-600));
  border-radius: var(--rounded-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
}

.award-card__icon i {
  font-size: 2.25rem;
  color: var(--white);
}

.award-card h3 {
  margin-bottom: var(--sp-3);
}

.award-card p {
  color: var(--muted);
  font-size: var(--fs-sm);
  margin: 0;
}

/* Stat Cards */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-5);
}

.stat-card {
  background: var(--white);
  padding: var(--sp-6);
  border-radius: var(--rounded-lg);
  border: 1px solid var(--line);
  text-align: center;
}

.stat-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gray-100);
  border-radius: var(--rounded);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
}

.stat-card__icon i {
  font-size: 1.25rem;
  color: var(--emerald-600);
}

.stat-card h4 {
  margin-bottom: var(--sp-2);
  font-size: var(--fs-base);
}

.stat-card p {
  color: var(--muted);
  font-size: var(--fs-sm);
  margin: 0;
}

/* Action Banner */
.action-banner {
  padding: var(--sp-16);
  background: linear-gradient(160deg, var(--gray-900) 0%, var(--gray-700) 100%);
  border-radius: var(--rounded-2xl);
  text-align: center;
}

.action-banner__icon {
  font-size: 3rem;
  color: var(--emerald-300);
  margin-bottom: var(--sp-6);
}

.action-banner h2 {
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.action-banner p {
  color: var(--emerald-200);
  max-width: 480px;
  margin: 0 auto var(--sp-6);
}

/* Data Grid (Table) */
.data-grid {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--rounded-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.data-grid th,
.data-grid td {
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.data-grid th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--heading);
  font-size: var(--fs-sm);
}

.data-grid tr:last-child td {
  border-bottom: none;
}

.data-grid tr:hover td {
  background: var(--gray-50);
}

.verified-tag {
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  background: var(--emerald-500);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 600;
  border-radius: var(--rounded-full);
}

/* Compliance Bar */
.compliance-bar {
  padding: var(--sp-8) 0;
  background: var(--gray-100);
  text-align: center;
}

.compliance-bar p {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin: 0;
  line-height: 1.8;
}

/* Bottom Footer */
.bottom-footer {
  background: var(--gray-950);
  color: var(--gray-400);
  padding: var(--sp-16) 0 var(--sp-8);
}

.bottom-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

.bottom-footer h4 {
  color: var(--white);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-4);
}

.bottom-footer p {
  font-size: var(--fs-sm);
  margin: 0;
}

.bottom-footer__nav {
  list-style: none;
}

.bottom-footer__nav li {
  margin-bottom: var(--sp-2);
}

.bottom-footer__nav a {
  font-size: var(--fs-sm);
  color: var(--gray-400);
  transition: color var(--ease);
}

.bottom-footer__nav a:hover {
  color: var(--white);
}

.bottom-footer__end {
  padding-top: var(--sp-8);
  border-top: 1px solid var(--gray-800);
  text-align: center;
}

.bottom-footer__end p {
  font-size: var(--fs-xs);
}

/* Responsive */
@media (max-width: 1024px) {
  .bottom-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --sp-24: 4rem;
    --sp-20: 3rem;
  }
  
  .top-nav__menu {
    display: none;
  }
  
  .top-nav__burger {
    display: flex;
  }
  
  .award-grid {
    grid-template-columns: 1fr;
  }
  
  .bottom-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .data-grid {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--sp-4);
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .action-banner {
    padding: var(--sp-8);
  }
}

/* Animations */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: slideUp 0.5s ease forwards;
}

