/* CSS Variables - Brand Colors */
:root {
  /* Primary Colors */
  --brand-cyan: #00e5ff;
  --brand-magenta: #ff3d9d;
  --brand-lime: #c6ff00;
  --brand-orange: #ff9100;
  --brand-aqua: #00ffb8;

  /* Neutral Colors */
  --neutral-900: #0a0a14;
  --neutral-800: #121225;
  --neutral-700: #1c1c3a;
  --neutral-050: #fafbff;
  --neutral-100: #eef1f8;

  /* Text Colors */
  --text-primary-dark: #ffffff;
  --text-secondary-dark: #aeb5c6;
  --text-primary-light: #222222;
  --text-secondary-light: #555e70;

  /* State Colors */
  --success: #00e676;
  --warning: #ffc400;
  --error: #ff1744;
  --info: #2979ff;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0a0a14 0%, #1c1c3a 100%);
  --gradient-cyan: linear-gradient(135deg, #00e5ff 0%, #00ffb8 100%);
  --gradient-magenta: linear-gradient(135deg, #ff3d9d 0%, #7a00ff 100%);
  --gradient-glow-orange: linear-gradient(
    135deg,
    rgba(255, 145, 0, 0.2) 0%,
    rgba(255, 145, 0, 0) 100%
  );

  /* Shadows */
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-glow-cyan: 0 0 48px rgba(0, 229, 255, 0.25);
  --shadow-glow-magenta: 0 0 48px rgba(255, 61, 157, 0.25);

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Z-Index */
  --z-modal: 1000;
  --z-dropdown: 900;
  --z-header: 800;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary-dark);
  background: var(--neutral-900);
  overflow-x: hidden;
  scroll-padding-top: 100px;
  position: relative;
  min-height: 100vh;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 24px;
}

.numerals {
  font-family: "Space Grotesk", "Roboto Mono", monospace;
  font-weight: 700;
}

/* Container */
.container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-md);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-cyan);
  color: var(--neutral-900);
  box-shadow: var(--shadow-glow-cyan);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-cyan), 0 8px 32px rgba(0, 229, 255, 0.4);
}

.btn-secondary {
  background: var(--gradient-magenta);
  color: var(--text-primary-dark);
  box-shadow: var(--shadow-glow-magenta);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-magenta), 0 8px 32px rgba(255, 61, 157, 0.4);
}

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

.btn-ghost:hover {
  background: rgba(0, 229, 255, 0.1);
  transform: translateY(-2px);
}

.btn-success {
  background: var(--success) !important;
  color: var(--neutral-900) !important;
  box-shadow: 0 0 48px rgba(0, 230, 118, 0.25) !important;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

/* Ensure button links look and behave like buttons */
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

/* Anchor offset for fixed header */
html {
  width: 100%;
  overflow-x: hidden;
  scroll-padding-top: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--text-primary-dark);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.logo-text {
  letter-spacing: -0.02em;
}

.logo-ball {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gradient-cyan);
  border-radius: 50%;
  color: var(--neutral-900);
  font-weight: 700;
  box-shadow: var(--shadow-glow-cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: var(--z-header);
  padding: var(--spacing-md) 0;
}

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

.nav {
  display: flex;
  gap: var(--spacing-xl);
}

.nav a {
  color: var(--text-secondary-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--brand-cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.cart-icon-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-secondary-dark);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cart-icon-header:hover {
  color: var(--brand-cyan);
  border-color: var(--brand-cyan);
  background: rgba(0, 229, 255, 0.1);
}

.cart-icon-header svg {
  width: 24px;
  height: 24px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--brand-magenta);
  color: var(--text-primary-dark);
  font-size: 12px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", monospace;
  box-shadow: var(--shadow-glow-magenta);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text-primary-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu.active .mobile-menu-toggle {
  position: relative;
  z-index: 1002;
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 20, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

/* Когда мобильное меню активно, хедер должен занимать всю высоту */
.header.mobile-active {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 20, 0.98);
  backdrop-filter: blur(20px);
}

.mobile-menu.active .header-content {
  justify-content: space-between;
  align-items: flex-start;
  padding-top: var(--spacing-lg);
}

.mobile-menu.active .logo {
  position: relative;
  z-index: 1002;
}

.mobile-menu-content {
  text-align: center;
  padding: var(--spacing-xxl);
  max-width: 400px;
  width: 100%;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 229, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mobile-menu-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: none;
  border: none;
  color: var(--text-secondary-dark);
  cursor: pointer;
  padding: var(--spacing-xs);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  z-index: 10;
}

.mobile-menu-close:hover {
  color: var(--brand-magenta);
  background: rgba(255, 61, 157, 0.1);
}

.mobile-menu-close svg {
  width: 28px;
  height: 28px;
}

/* Mobile Logo - точно как в хедере */
.mobile-logo {
  margin-bottom: var(--spacing-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--text-primary-dark);
}

.mobile-logo .logo-link {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.mobile-logo .logo-link:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.mobile-logo .logo-text {
  letter-spacing: -0.02em;
}

.mobile-logo .logo-ball {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gradient-cyan);
  border-radius: 50%;
  color: var(--neutral-900);
  font-weight: 700;
  box-shadow: var(--shadow-glow-cyan);
  animation: pulse 2s infinite;
}

.mobile-menu.active .mobile-menu-content {
  margin-top: 100px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xxl);
}

.mobile-nav a {
  color: var(--text-primary-dark);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.1) 0%,
    rgba(255, 61, 157, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav a:hover::before {
  opacity: 1;
}

.mobile-nav a:hover {
  color: var(--brand-cyan);
  border-color: var(--brand-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 229, 255, 0.2);
}

.mobile-nav a {
  position: relative;
  z-index: 2;
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 229, 255, 0.1);
}

.mobile-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  color: var(--text-primary-dark);
  text-decoration: none;
  font-weight: 600;
  padding: var(--spacing-lg);
  border: 2px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.mobile-cart:hover {
  border-color: var(--brand-cyan);
  color: var(--brand-cyan);
  background: rgba(0, 229, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 229, 255, 0.2);
}

.mobile-cart svg {
  width: 24px;
  height: 24px;
}

.mobile-cart .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--brand-magenta);
  color: var(--text-primary-dark);
  font-size: 12px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", monospace;
  box-shadow: var(--shadow-glow-magenta);
}

.btn-full {
  width: 100%;
  justify-content: center;
  background: var(--gradient-cyan);
  color: var(--neutral-900);
  border: none;
  font-weight: 700;
  font-size: 18px;
  padding: var(--spacing-lg);
  box-shadow: 0 4px 16px rgba(0, 229, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.4);
}

/* Desktop header actions (hidden on mobile) */
.mobile-menu .header-actions {
  display: none;
}

/* Responsive Header */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .logo-link {
    font-size: 20px;
  }

  /* Mobile Menu Medium Screen Improvements */
  .mobile-menu-content {
    padding: var(--spacing-xl);
    max-width: 380px;
    margin-top: 60px;
  }

  .mobile-logo {
    margin-bottom: var(--spacing-xl);
    font-size: 22px;
  }

  .mobile-logo .logo-ball {
    width: 28px;
    height: 28px;
  }

  .mobile-nav {
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
  }

  .mobile-nav a {
    font-size: 19px;
    padding: var(--spacing-lg);
  }

  .mobile-actions {
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
  }

  .mobile-cart {
    padding: var(--spacing-lg);
    font-size: 17px;
  }

  .mobile-cart svg {
    width: 22px;
    height: 22px;
  }

  .mobile-cart .cart-count {
    width: 19px;
    height: 19px;
    font-size: 11px;
    top: -7px;
    right: -7px;
  }

  .btn-full {
    font-size: 17px;
    padding: var(--spacing-lg);
  }
}

@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }

  .mobile-menu .header-actions {
    display: none;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: var(--spacing-sm) 0;
  }

  .logo-link {
    font-size: 18px;
  }

  /* Mobile Menu Small Screen Improvements */
  .mobile-menu-content {
    padding: var(--spacing-lg);
    max-width: 350px;
    margin-top: 50px;
  }

  .mobile-menu-close {
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    padding: 4px;
  }

  .mobile-menu-close svg {
    width: 26px;
    height: 26px;
  }

  .mobile-logo {
    margin-bottom: var(--spacing-lg);
    font-size: 20px;
  }

  .mobile-logo .logo-ball {
    width: 24px;
    height: 24px;
  }

  .mobile-nav {
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
  }

  .mobile-nav a {
    font-size: 18px;
    padding: var(--spacing-md);
  }

  .mobile-actions {
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
  }

  .mobile-cart {
    padding: var(--spacing-md);
    font-size: 16px;
  }

  .mobile-cart svg {
    width: 20px;
    height: 20px;
  }

  .mobile-cart .cart-count {
    width: 18px;
    height: 18px;
    font-size: 11px;
    top: -6px;
    right: -6px;
  }

  .btn-full {
    font-size: 16px;
    padding: var(--spacing-md);
  }

  .mobile-menu-toggle {
    width: 28px;
    height: 22px;
  }

  .mobile-menu-toggle span {
    height: 2px;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* Improved Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-xl);
  }

  .jackpot-amount {
    font-size: 36px;
  }

  .timer {
    justify-content: center;
  }

  .lottery-balls {
    grid-template-columns: repeat(3, 1fr);
    max-width: 250px;
    justify-items: center;
  }

  .ball {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 150px 0 var(--spacing-xl);
    min-height: auto;
  }

  .hero h1 {
    font-size: 32px;
    margin-bottom: var(--spacing-lg);
  }

  .jackpot-amount {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .trust-row {
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
  }

  .timer {
    gap: var(--spacing-sm);
  }

  .time-unit {
    min-width: 50px;
  }

  .time-unit .number {
    font-size: 20px;
    padding: var(--spacing-xs);
  }

  .time-unit .label {
    font-size: 10px;
  }

  .lottery-balls {
    grid-template-columns: repeat(3, 1fr);
    max-width: 200px;
    gap: var(--spacing-sm);
    margin: 0 auto;
    justify-content: center;
    justify-items: center;
  }

  .ball {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .jackpot-amount {
    font-size: 24px;
  }

  .timer {
    gap: var(--spacing-xs);
  }

  .time-unit {
    min-width: 40px;
  }

  .time-unit .number {
    font-size: 16px;
    padding: 6px;
  }

  .time-unit .label {
    font-size: 9px;
  }

  .lottery-balls {
    max-width: 180px;
    margin: 0 auto;
    justify-content: center;
    justify-items: center;
  }

  .ball {
    width: 45px;
    height: 45px;
    font-size: 12px;
  }
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.98);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  backdrop-filter: blur(4px);
}

.modal-content {
  background: var(--neutral-800);
  border: 1px solid var(--neutral-700);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xxl);
  text-align: center;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-card);
  position: relative;
  margin: auto;
}

.modal-content .logo {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

/* Modal Content Mobile */
@media (max-width: 768px) {
  .modal-content {
    max-width: 100%;
    padding: 24px;
  }
  #age-gate .modal-content {
    max-width: 350px;
  }
}

.age-buttons {
  display: flex;
  gap: var(--spacing-md);
  margin: var(--spacing-xl) 0;
  justify-content: center;
}

.disclaimer {
  font-size: 14px;
  color: var(--text-secondary-dark);
  margin-top: var(--spacing-lg);
}

/* Cookie Policy Banner */
#cookie-policy {
  position: fixed;
  bottom: var(--spacing-lg);
  left: var(--spacing-lg);
  z-index: 1000;
  max-width: 350px;
  width: 350px;
  background: var(--neutral-800);
  border: 1px solid var(--neutral-700);
  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.cookie-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-icon svg {
  width: 16px;
  height: 16px;
  color: var(--neutral-900);
}

.cookie-header h2 {
  color: var(--text-primary-dark);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

#cookie-policy p {
  color: var(--text-secondary-dark);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.cookie-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: flex-start;
}

.cookie-buttons .btn {
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: 14px;
  min-width: auto;
  flex: 1;
}

/* Cookie Policy Banner Responsive */
@media (max-width: 768px) {
  #cookie-policy {
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    width: calc(100vw - 2 * var(--spacing-md));
    max-width: 400px;
  }

  .cookie-header {
    flex-direction: row;
    gap: var(--spacing-sm);
  }

  .cookie-icon {
    width: 28px;
    height: 28px;
  }

  .cookie-icon svg {
    width: 14px;
    height: 14px;
  }

  .cookie-header h2 {
    font-size: 16px;
  }

  #cookie-policy p {
    font-size: 13px;
  }

  .cookie-buttons {
    flex-direction: row;
    gap: var(--spacing-xs);
  }

  .cookie-buttons .btn {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  #cookie-policy {
    bottom: var(--spacing-sm);
    left: var(--spacing-sm);
    width: calc(100vw - 2 * var(--spacing-sm));
  }

  .cookie-header h2 {
    font-size: 15px;
  }

  .cookie-icon {
    width: 24px;
    height: 24px;
  }

  .cookie-icon svg {
    width: 12px;
    height: 12px;
  }

  #cookie-policy p {
    font-size: 12px;
  }

  .cookie-buttons .btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* Hero Section */
.hero {
  background: var(--gradient-hero);
  background-image: url("../img/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  opacity: 0.8;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero h1 {
  margin-bottom: var(--spacing-xl);
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jackpot-display {
  margin: var(--spacing-xl) 0;
}

.jackpot-label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-sm);
}

.jackpot-amount {
  font-family: "Space Grotesk", monospace;
  font-size: 48px;
  font-weight: 700;
  color: var(--brand-lime);
  text-shadow: 0 0 20px rgba(198, 255, 0, 0.5);
  margin-bottom: var(--spacing-lg);
}

.countdown {
  margin-top: var(--spacing-lg);
}

.countdown-label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary-dark);
  margin-bottom: var(--spacing-sm);
}

.timer {
  display: flex;
  gap: var(--spacing-md);
  justify-content: start;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.time-unit .number {
  font-family: "Space Grotesk", monospace;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-cyan);
  background: rgba(0, 229, 255, 0.1);
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.time-unit .label {
  font-size: 12px;
  color: var(--text-secondary-dark);
  margin-top: var(--spacing-xs);
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  margin: var(--spacing-xl) 0;
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
  }
}

.trust-row {
  display: flex;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

@media (max-width: 768px) {
  .trust-row {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 14px;
  color: var(--text-secondary-dark);
}

.trust-item .icon {
  width: 20px;
  height: 20px;
  color: var(--brand-cyan);
}

/* Lottery Balls */
.lottery-balls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  max-width: 300px;
  margin: 0 auto;
  justify-items: center;
}

.ball {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", monospace;
  font-size: 24px;
  font-weight: 700;
  color: var(--neutral-900);
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.ball-1 {
  background: var(--gradient-cyan);
  animation-delay: 0s;
}

.ball-2 {
  background: var(--gradient-magenta);
  animation-delay: 0.5s;
}

.ball-3 {
  background: linear-gradient(135deg, var(--brand-lime), var(--brand-orange));
  animation-delay: 1s;
}

.ball-4 {
  background: linear-gradient(135deg, var(--brand-aqua), var(--brand-cyan));
  animation-delay: 1.5s;
}

.ball-5 {
  background: linear-gradient(
    135deg,
    var(--brand-orange),
    var(--brand-magenta)
  );
  animation-delay: 2s;
}

.ball-6 {
  background: linear-gradient(135deg, var(--brand-magenta), var(--brand-lime));
  animation-delay: 2.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.section-header h2 {
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--text-secondary-dark);
  font-size: 18px;
}

/* Games Section */
.games {
  background: var(--neutral-800);
  padding: var(--spacing-xxl) 0;
}

.filters {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xxl);
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--neutral-700);
  color: var(--text-secondary-dark);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--brand-cyan);
  color: var(--brand-cyan);
  background: rgba(0, 229, 255, 0.1);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  max-width: 100%;
}

.game-card {
  background: var(--neutral-700);
  border: 1px solid var(--neutral-700);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cyan);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow-cyan);
  border-color: var(--brand-cyan);
}

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

.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.game-header h3 {
  color: var(--text-primary-dark);
  font-size: 24px;
}

.badge {
  background: var(--brand-lime);
  color: var(--neutral-900);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.game-jackpot {
  margin-bottom: var(--spacing-lg);
}

.game-jackpot .jackpot-amount {
  font-size: 32px;
  margin-bottom: var(--spacing-sm);
}

.game-draw {
  margin-bottom: var(--spacing-lg);
}

.draw-label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary-dark);
  margin-bottom: var(--spacing-xs);
}

.draw-time {
  color: var(--brand-cyan);
  font-weight: 600;
}

.game-numbers {
  margin-bottom: var(--spacing-xl);
}

.number-label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary-dark);
  margin-bottom: var(--spacing-sm);
}

.number-row {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.pill-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-magenta);
  color: var(--text-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", monospace;
  font-weight: 700;
  font-size: 16px;
}

.pill-number.alt {
  background: var(--brand-cyan);
}

/* Game Price Styles */
.game-price {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-lg);
  justify-content: center;
}

.price-amount {
  font-family: "Space Grotesk", monospace;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-cyan);
}

.price-label {
  font-size: 14px;
  color: var(--text-secondary-dark);
}

/* Game Card Button Styles */
.game-card .add-to-cart-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.game-card .add-to-cart-btn .cart-icon {
  width: 18px;
  height: 18px;
}

.game-card .add-to-cart-btn.added {
  background: var(--success) !important;
  color: var(--neutral-900) !important;
  box-shadow: 0 0 48px rgba(0, 230, 118, 0.25) !important;
}

/* Games Section Responsive */
@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
    gap: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .game-card {
    padding: var(--spacing-lg);
  }

  .game-header h3 {
    font-size: 20px;
  }

  .game-jackpot .jackpot-amount {
    font-size: 28px;
  }

  .pill-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .games-grid {
    max-width: 100%;
  }

  .game-card {
    padding: var(--spacing-md);
  }

  .game-header h3 {
    font-size: 18px;
  }

  .game-jackpot .jackpot-amount {
    font-size: 24px;
  }

  .pill-number {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .price-amount {
    font-size: 20px;
  }

  /* How It Works Section Small Mobile Improvements */
  .how-it-works {
    padding: var(--spacing-lg) 0;
  }

  .how-it-works .section-header h2 {
    font-size: 28px;
  }

  .how-it-works .section-header p {
    font-size: 14px;
  }

  .steps {
    gap: var(--spacing-md);
  }

  .step {
    padding: var(--spacing-md);
  }

  .step-number {
    width: 24px;
    height: 24px;
    font-size: 11px;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
  }

  .step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
  }

  .step-icon svg {
    width: 28px;
    height: 28px;
  }

  .step h3 {
    font-size: 18px;
    margin-bottom: var(--spacing-sm);
  }

  .step h3::after {
    width: 30px;
    height: 2px;
  }

  .step p {
    font-size: 13px;
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
  }

  .step-features {
    margin-top: var(--spacing-sm);
    gap: var(--spacing-xs);
  }

  .step-feature {
    font-size: 12px;
  }

  .step-feature svg {
    width: 12px;
    height: 12px;
  }

  /* Quick Pick Section Small Mobile Improvements */
  .quick-pick {
    padding: var(--spacing-lg) 0;
  }

  .quick-pick-content {
    gap: var(--spacing-md);
  }

  .quick-pick-text h2 {
    font-size: 24px;
    margin-bottom: var(--spacing-sm);
  }

  .quick-pick-text p {
    font-size: 14px;
    margin-bottom: var(--spacing-md);
  }

  .number-generator {
    padding: var(--spacing-md);
  }

  .generated-numbers {
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
  }

  .generated-numbers .pill-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .generate-btn {
    font-size: 14px;
    padding: 12px 24px;
  }

  .generate-btn svg {
    width: 18px;
    height: 18px;
  }

  .quick-pick-stats {
    margin-top: var(--spacing-md);
    gap: var(--spacing-sm);
  }

  .stat-item {
    padding: var(--spacing-sm);
  }

  .stat-number {
    font-size: 18px;
  }

  .stat-label {
    font-size: 11px;
  }

  /* Payment Grid Mobile Improvements */
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

  .payment-item {
    padding: var(--spacing-sm);
  }

  .payment-icon {
    width: 50px;
    height: 35px;
  }

  .payment-item span {
    font-size: 11px;
  }
}

/* How It Works Section */
.how-it-works {
  background: linear-gradient(135deg, var(--neutral-050) 0%, #f8faff 100%);
  color: var(--text-primary-light);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300e5ff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.how-it-works .section-header h2 {
  color: var(--text-primary-light);
  position: relative;
  z-index: 2;
}

.how-it-works .section-header p {
  position: relative;
  z-index: 2;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xxl);
  position: relative;
  z-index: 2;
}

.step {
  text-align: center;
  padding: var(--spacing-xxl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cyan);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 229, 255, 0.15);
  border-color: rgba(0, 229, 255, 0.3);
}

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

.step-number {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  width: 32px;
  height: 32px;
  background: var(--gradient-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", monospace;
  font-weight: 700;
  font-size: 14px;
  color: var(--neutral-900);
  box-shadow: var(--shadow-glow-cyan);
}

.step-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-xl);
  box-shadow: var(--shadow-glow-cyan);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.4);
}

.step-icon::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid rgba(0, 229, 255, 0.2);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.step-icon svg {
  width: 48px;
  height: 48px;
  color: var(--neutral-900);
  transition: transform 0.3s ease;
}

.step:hover .step-icon svg {
  transform: scale(1.1);
}

.step h3 {
  color: var(--text-primary-light);
  margin-bottom: var(--spacing-lg);
  font-size: 24px;
  font-weight: 700;
  position: relative;
}

.step h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--gradient-cyan);
  border-radius: var(--radius-pill);
}

.step p {
  color: var(--text-secondary-light);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.step-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 14px;
  color: var(--text-secondary-light);
}

.step-feature svg {
  width: 16px;
  height: 16px;
  color: var(--brand-cyan);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .step {
    padding: var(--spacing-xl);
  }

  .step-icon {
    width: 80px;
    height: 80px;
  }

  .step-icon svg {
    width: 40px;
    height: 40px;
  }

  /* How It Works Section Mobile Improvements */
  .how-it-works {
    padding: var(--spacing-xl) 0;
  }

  .how-it-works .section-header h2 {
    font-size: 32px;
  }

  .how-it-works .section-header p {
    font-size: 16px;
  }

  .step {
    padding: var(--spacing-lg);
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
    top: var(--spacing-md);
    right: var(--spacing-md);
  }

  .step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: var(--spacing-lg);
  }

  .step-icon svg {
    width: 36px;
    height: 36px;
  }

  .step h3 {
    font-size: 20px;
    margin-bottom: var(--spacing-md);
  }

  .step p {
    font-size: 14px;
    margin-bottom: var(--spacing-md);
  }

  .step-features {
    margin-top: var(--spacing-md);
  }

  .step-feature {
    font-size: 13px;
  }

  .step-feature svg {
    width: 14px;
    height: 14px;
  }
}

/* Quick Pick Section */
.quick-pick {
  background: linear-gradient(135deg, var(--neutral-900) 0%, #1a1a2e 100%);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.quick-pick::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(0, 229, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(255, 61, 157, 0.1) 0%,
      transparent 50%
    );
  animation: float 20s ease-in-out infinite;
}

.quick-pick::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300e5ff' fill-opacity='0.05'%3E%3Cpath d='M20 20c0 11.046-8.954 20-20 20s-20-8.954-20-20 8.954-20 20-20 20 8.954 20 20zm0 0c0-11.046 8.954-20 20-20s20 8.954 20 20-8.954 20-20 20-20-8.954-20-20z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.quick-pick-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .quick-pick-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.quick-pick-text h2 {
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-lg);
  font-size: 36px;
  font-weight: 800;
}

.quick-pick-text p {
  color: var(--text-secondary-dark);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
}

.number-generator {
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xxl);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.number-generator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.05) 0%,
    rgba(255, 61, 157, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.number-generator:hover::before {
  opacity: 1;
}

.generated-numbers {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-xxl);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.generated-numbers .pill-number {
  width: 60px;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  background: var(--gradient-cyan);
  border: 2px solid rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  transition: all 0.3s ease;
  animation: numberAppear 0.5s ease-out;
}

.generated-numbers .pill-number:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
}

@keyframes numberAppear {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(180deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes spinning {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes generated {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  }
}

.generated-numbers .pill-number.spinning {
  animation: spinning 0.5s ease-in-out;
}

.generated-numbers .pill-number.generated {
  animation: generated 0.5s ease-out;
}

.generate-btn {
  position: relative;
  overflow: hidden;
  background: var(--gradient-cyan);
  border: none;
  color: var(--neutral-900);
  font-weight: 700;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.generate-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.generate-btn:hover::before {
  left: 100%;
}

.generate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.5);
}

.generate-btn:active {
  transform: translateY(0);
}

.generate-btn svg {
  width: 24px;
  height: 24px;
  margin-right: var(--spacing-sm);
  transition: transform 0.3s ease;
}

.generate-btn:hover svg {
  transform: rotate(180deg);
}

.quick-pick-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 229, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
}

.stat-number {
  font-family: "Space Grotesk", monospace;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-cyan);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .quick-pick-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .generated-numbers .pill-number {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .quick-pick-text h2 {
    font-size: 28px;
  }

  /* Quick Pick Section Mobile Improvements */
  .quick-pick {
    padding: var(--spacing-xl) 0;
  }

  .quick-pick-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }

  .quick-pick-text h2 {
    font-size: 28px;
    margin-bottom: var(--spacing-md);
  }

  .quick-pick-text p {
    font-size: 16px;
    margin-bottom: var(--spacing-lg);
  }

  .number-generator {
    padding: var(--spacing-lg);
  }

  .generated-numbers {
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
  }

  .generated-numbers .pill-number {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .generate-btn {
    font-size: 16px;
    padding: 14px 28px;
  }

  .generate-btn svg {
    width: 20px;
    height: 20px;
  }

  .quick-pick-stats {
    margin-top: var(--spacing-lg);
  }

  .stat-item {
    padding: var(--spacing-md);
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 12px;
  }
}

/* Latest Results Section */
.latest-results {
  background: var(--neutral-050);
  color: var(--text-primary-light);
  padding: var(--spacing-xxl) 0;
}

.latest-results .section-header h2 {
  color: var(--text-primary-light);
}

.results-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xxl);
  margin-top: var(--spacing-xl);
}

.results-main {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.latest-draw {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 229, 255, 0.1);
}

.draw-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.draw-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary-light);
  margin-bottom: var(--spacing-xs);
}

.draw-info h4 {
  font-size: 16px;
  color: var(--brand-cyan);
  font-weight: 600;
}

.draw-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-primary-light);
}

.winning-numbers {
  margin-bottom: var(--spacing-xl);
}

.winning-numbers p {
  font-size: 16px;
  color: var(--text-secondary-light);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.number-grid {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.result-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--neutral-900);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  border: 2px solid rgba(0, 229, 255, 0.3);
}

.dividends-table {
  overflow-x: auto;
}

.dividends-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.dividends-table th {
  background: var(--neutral-100);
  padding: var(--spacing-sm) var(--spacing-md);
  text-align: left;
  font-weight: 600;
  color: var(--text-primary-light);
  border-bottom: 2px solid rgba(0, 229, 255, 0.2);
}

.dividends-table td {
  padding: var(--spacing-sm) var(--spacing-md);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
  color: var(--text-secondary-light);
}

.dividends-table tr:hover {
  background: rgba(0, 229, 255, 0.05);
}

.dividends-table td:first-child {
  font-weight: 600;
  color: var(--brand-cyan);
}

.dividends-table td:nth-child(3) {
  font-weight: 600;
  color: var(--text-primary-light);
}

.previous-draws {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 229, 255, 0.1);
}

.previous-draws h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary-light);
  margin-bottom: var(--spacing-lg);
}

.draw-history {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.draw-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  background: var(--neutral-050);
  border: 1px solid rgba(0, 229, 255, 0.1);
  transition: all 0.3s ease;
}

.draw-item:hover {
  background: rgba(0, 229, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateX(4px);
}

.draw-date h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary-light);
  margin-bottom: var(--spacing-xs);
}

.draw-date span {
  font-size: 14px;
  color: var(--brand-cyan);
  font-weight: 600;
}

.draw-numbers {
  display: flex;
  gap: var(--spacing-xs);
}

.mini-number {
  width: 32px;
  height: 32px;
  background: var(--gradient-magenta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--text-primary-dark);
  box-shadow: 0 0 10px rgba(255, 61, 157, 0.3);
  border: 1px solid rgba(255, 61, 157, 0.3);
}

.results-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.winning-stats {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 229, 255, 0.1);
}

.winning-stats h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary-light);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  background: var(--neutral-050);
  border: 1px solid rgba(0, 229, 255, 0.1);
  margin-bottom: var(--spacing-md);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(0, 229, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateX(4px);
}

.stat-card:last-child {
  margin-bottom: 0;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--neutral-900);
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary-light);
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.play-now-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 229, 255, 0.1);
  text-align: center;
}

.play-now-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary-light);
  margin-bottom: var(--spacing-sm);
}

.play-now-card p {
  font-size: 14px;
  color: var(--text-secondary-light);
  margin-bottom: var(--spacing-lg);
}

.play-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  background: var(--neutral-050);
  border: 1px solid rgba(0, 229, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 229, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.3);
}

.feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--brand-cyan);
  flex-shrink: 0;
}

.feature-item span {
  font-size: 14px;
  color: var(--text-primary-light);
  font-weight: 500;
}

/* Responsive Design for Latest Results */
@media (max-width: 768px) {
  .results-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .draw-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
  }

  .number-grid {
    justify-content: center;
  }

  .draw-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
  }

  .draw-numbers {
    align-self: center;
  }

  .results-sidebar {
    order: 2;
  }

  .results-main {
    order: 1;
  }

  .draw-header h3 {
    font-size: 20px;
  }

  .draw-header h4 {
    font-size: 16px;
  }

  .number-grid .number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .results-table {
    font-size: 14px;
  }

  .results-table th,
  .results-table td {
    padding: var(--spacing-sm);
  }

  /* Winners Section Mobile Improvements */
  .latest-draw {
    padding: var(--spacing-lg);
  }

  .draw-info h3 {
    font-size: 18px;
  }

  .draw-info h4 {
    font-size: 14px;
  }

  .draw-logo {
    font-size: 16px;
  }

  .result-number {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .dividends-table {
    margin: 0 -var(--spacing-lg);
  }

  .dividends-table table {
    font-size: 12px;
  }

  .dividends-table th,
  .dividends-table td {
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .previous-draws {
    padding: var(--spacing-lg);
  }

  .previous-draws h3 {
    font-size: 18px;
  }

  .draw-item {
    padding: var(--spacing-sm);
  }

  .draw-date h4 {
    font-size: 14px;
  }

  .draw-date span {
    font-size: 12px;
  }

  .mini-number {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .winning-stats {
    padding: var(--spacing-lg);
  }

  .winning-stats h3 {
    font-size: 18px;
  }

  .stat-card {
    padding: var(--spacing-sm);
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-icon svg {
    width: 20px;
    height: 20px;
  }

  .stat-value {
    font-size: 16px;
  }

  .play-now-card {
    padding: var(--spacing-lg);
  }

  .play-now-card h4 {
    font-size: 18px;
  }

  .feature-item {
    padding: var(--spacing-xs);
  }

  .feature-item svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .draw-header h3 {
    font-size: 18px;
  }

  .draw-header h4 {
    font-size: 14px;
  }

  .number-grid .number {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .results-table {
    font-size: 12px;
  }

  .results-table th,
  .results-table td {
    padding: 6px;
  }

  .stat-card {
    padding: var(--spacing-sm);
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-icon svg {
    width: 20px;
    height: 20px;
  }

  /* Winners Section Small Mobile Improvements */
  .latest-draw {
    padding: var(--spacing-md);
  }

  .draw-info h3 {
    font-size: 16px;
  }

  .draw-info h4 {
    font-size: 13px;
  }

  .draw-logo {
    font-size: 14px;
  }

  .result-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .dividends-table {
    margin: 0 -var(--spacing-md);
  }

  .dividends-table table {
    font-size: 11px;
  }

  .dividends-table th,
  .dividends-table td {
    padding: 4px 6px;
  }

  .previous-draws {
    padding: var(--spacing-md);
  }

  .previous-draws h3 {
    font-size: 16px;
  }

  .draw-item {
    padding: var(--spacing-xs);
  }

  .draw-date h4 {
    font-size: 13px;
  }

  .draw-date span {
    font-size: 11px;
  }

  .mini-number {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .winning-stats {
    padding: var(--spacing-md);
  }

  .winning-stats h3 {
    font-size: 16px;
  }

  .stat-card {
    padding: var(--spacing-xs);
  }

  .stat-icon {
    width: 35px;
    height: 35px;
  }

  .stat-icon svg {
    width: 18px;
    height: 18px;
  }

  .stat-value {
    font-size: 14px;
  }

  .stat-label {
    font-size: 10px;
  }

  .play-now-card {
    padding: var(--spacing-md);
  }

  .play-now-card h4 {
    font-size: 16px;
  }

  .play-now-card p {
    font-size: 12px;
  }

  .feature-item {
    padding: 4px;
  }

  .feature-item svg {
    width: 16px;
    height: 16px;
  }

  .feature-item span {
    font-size: 12px;
  }
}

/* Security Section */
.security {
  background: var(--neutral-800);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.security::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.05) 0%,
    rgba(255, 61, 157, 0.05) 100%
  );
  pointer-events: none;
}

.security-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xxl);
  position: relative;
  z-index: 1;
}

.security-main {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 229, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.security-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cyan);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.security-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.1);
}

.security-item:hover::before {
  opacity: 1;
}

.security-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow-cyan);
  position: relative;
}

.security-icon::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-cyan);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

.security-icon svg {
  width: 28px;
  height: 28px;
  color: var(--neutral-900);
}

.security-content-text {
  flex: 1;
}

.security-content-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary-dark);
  margin-bottom: var(--spacing-sm);
}

.security-content-text p {
  font-size: 14px;
  color: var(--text-secondary-dark);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.security-badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-sm);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--brand-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.security-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.payment-methods {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border: 1px solid rgba(0, 229, 255, 0.1);
  text-align: center;
}

.payment-methods h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary-dark);
  margin-bottom: var(--spacing-sm);
}

.payment-methods p {
  font-size: 14px;
  color: var(--text-secondary-dark);
  margin-bottom: var(--spacing-lg);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.1);
  transition: all 0.3s ease;
}

.payment-item:hover {
  background: rgba(0, 229, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
}

.payment-icon {
  width: 60px;
  height: 40px;
  margin-bottom: var(--spacing-xs);
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.payment-icon img[alt="Google Pay"] {
  filter: none;
  background: transparent;
  mix-blend-mode: multiply;
}

.payment-icon img[alt="Mastercard"] {
  filter: none;
  background: white;
  border-radius: 4px;
  padding: 4px;
  mix-blend-mode: normal;
}

.payment-item span {
  font-size: 12px;
  color: var(--text-primary-dark);
  font-weight: 500;
}

.security-certificates {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border: 1px solid rgba(0, 229, 255, 0.1);
}

.security-certificates h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary-dark);
  margin-bottom: var(--spacing-lg);
}

.certificate-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.certificate-item:last-child {
  border-bottom: none;
}

.certificate-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.certificate-icon svg {
  width: 16px;
  height: 16px;
  color: var(--neutral-900);
}

.certificate-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.certificate-name {
  font-size: 14px;
  color: var(--text-primary-dark);
  font-weight: 500;
}

.certificate-status {
  font-size: 12px;
  color: var(--brand-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design for Security */
@media (max-width: 768px) {
  .security-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .security-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

  .payment-item {
    padding: var(--spacing-sm);
  }

  .payment-icon {
    width: 55px;
    height: 38px;
  }

  .payment-item span {
    font-size: 12px;
  }
}

/* FAQ Section */
.faq {
  background: var(--neutral-050);
  color: var(--text-primary-light);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.02) 0%,
    rgba(255, 61, 157, 0.02) 100%
  );
  pointer-events: none;
}

.faq .section-header h2 {
  color: var(--text-primary-light);
}

.faq-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xxl);
  margin-top: var(--spacing-xl);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 229, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-cyan);
  border-color: rgba(0, 229, 255, 0.3);
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cyan);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active::before {
  opacity: 1;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--spacing-xl);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-primary-light);
  transition: all 0.3s ease;
  font-size: 16px;
}

.faq-question:hover {
  background: rgba(0, 229, 255, 0.02);
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.faq-icon-wrapper {
  width: 40px;
  height: 40px;
  background: var(--gradient-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow-cyan);
}

.faq-icon-wrapper svg {
  width: 20px;
  height: 20px;
  color: var(--neutral-900);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--brand-cyan);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: var(--spacing-md) var(--spacing-xl) var(--spacing-xl);
  color: var(--text-secondary-light);
  display: none;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ Sidebar */
.faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.faq-help-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 229, 255, 0.1);
  text-align: center;
}

.faq-help-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary-light);
  margin-bottom: var(--spacing-sm);
}

.faq-help-card p {
  font-size: 14px;
  color: var(--text-secondary-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.5;
}

.help-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.help-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  background: var(--neutral-050);
  border: 1px solid rgba(0, 229, 255, 0.1);
  transition: all 0.3s ease;
}

.help-feature:hover {
  background: rgba(0, 229, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.3);
}

.help-feature svg {
  width: 20px;
  height: 20px;
  color: var(--brand-cyan);
  flex-shrink: 0;
}

.help-feature span {
  font-size: 14px;
  color: var(--text-primary-light);
  font-weight: 500;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .faq-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .faq-question-content {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }

  .faq-icon-wrapper {
    width: 32px;
    height: 32px;
  }

  .faq-icon-wrapper svg {
    width: 16px;
    height: 16px;
  }

  /* FAQ Section Mobile Improvements */
  .faq {
    padding: var(--spacing-xl) 0;
  }

  .faq .section-header h2 {
    font-size: 32px;
  }

  .faq .section-header p {
    font-size: 16px;
  }

  .faq-list {
    gap: var(--spacing-sm);
  }

  .faq-item {
    border-radius: var(--radius-md);
  }

  .faq-question {
    padding: var(--spacing-lg);
    font-size: 15px;
    justify-content: flex-start;
  }

  .faq-answer {
    padding: 12px var(--spacing-md) var(--spacing-md);
    font-size: 14px;
  }

  .faq-sidebar {
    order: 2;
  }

  .faq-list {
    order: 1;
  }

  .faq-help-card {
    padding: var(--spacing-lg);
  }

  .faq-help-card h3 {
    font-size: 18px;
  }

  .faq-help-card p {
    font-size: 13px;
  }

  .help-features {
    gap: var(--spacing-sm);
  }

  .help-feature {
    padding: var(--spacing-xs);
  }

  .help-feature svg {
    width: 18px;
    height: 18px;
  }

  .help-feature span {
    font-size: 13px;
  }

  /* FAQ Section Small Mobile Improvements */
  .faq {
    padding: var(--spacing-lg) 0;
  }

  .faq .section-header h2 {
    font-size: 28px;
  }

  .faq .section-header p {
    font-size: 14px;
  }

  .faq-content {
    gap: var(--spacing-md);
  }

  .faq-list {
    gap: var(--spacing-xs);
  }

  .faq-question {
    padding: var(--spacing-md);
    font-size: 14px;
    justify-content: flex-start;
  }

  .faq-question-content {
    gap: var(--spacing-xs);
  }

  .faq-icon-wrapper {
    width: 28px;
    height: 28px;
  }

  .faq-icon-wrapper svg {
    width: 14px;
    height: 14px;
  }

  .faq-arrow {
    width: 18px;
    height: 18px;
  }

  .faq-answer {
    padding: 12px var(--spacing-md) var(--spacing-md);
    font-size: 13px;
    line-height: 1.5;
  }

  .faq-help-card {
    padding: var(--spacing-md);
  }

  .faq-help-card h3 {
    font-size: 16px;
  }

  .faq-help-card p {
    font-size: 12px;
  }

  .help-features {
    gap: var(--spacing-xs);
  }

  .help-feature {
    padding: 4px;
  }

  .help-feature svg {
    width: 16px;
    height: 16px;
  }

  .help-feature span {
    font-size: 12px;
  }
}

/* Responsible Gambling Section */
.responsible-gambling {
  background: var(--neutral-900);
  padding: var(--spacing-xxl) 0;
}

.rg-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
}

.rg-text p {
  font-size: 16px;
  color: var(--text-secondary-dark);
  margin-bottom: 24px;
  line-height: 1.6;
}

.rg-text {
  margin-bottom: 24px;
}

.rg-text h2 {
  margin-bottom: 24px;
}

.rg-organizations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.org-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 229, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.org-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-cyan);
}

.org-link img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.org-link:hover img {
  opacity: 1;
}

@media (max-width: 768px) {
  .rg-organizations {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .org-link img {
    max-height: 50px;
  }
}

.rg-text p a {
  color: var(--brand-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.rg-text p a:hover {
  color: var(--brand-lime);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .rg-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
  }

  .rg-text {
    order: 2;
  }

  .rg-visual {
    order: 1;
  }

  .rg-text h2 {
    font-size: 28px;
  }

  .rg-text p {
    font-size: 14px;
  }

  .rg-organizations {
    justify-content: center;
    gap: var(--spacing-md);
  }

  .org-link img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .rg-text h2 {
    font-size: 24px;
  }

  .rg-text p {
    font-size: 13px;
  }

  .rg-organizations {
    gap: var(--spacing-sm);
  }

  .org-link img {
    height: 35px;
  }

  .age-badge {
    width: 80px;
    height: 80px;
    font-size: 24px !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.rg-points {
  margin: var(--spacing-xl) 0;
}

.rg-point {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.rg-point svg {
  width: 24px;
  height: 24px;
  color: var(--brand-cyan);
  flex-shrink: 0;
}

.help-links {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.rg-visual {
  display: flex;
  justify-content: center;
}

.rg-icon {
  width: 120px;
  height: 120px;
  background: var(--gradient-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-cyan);
}

.age-badge {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--neutral-900);
  text-align: center;
  line-height: 1;
}

/* Footer */
.footer {
  background: var(--neutral-900);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
  border-top: 1px solid var(--neutral-700);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-xxl);
  margin-bottom: var(--spacing-xxl);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
  }

  .footer-section {
    padding: var(--spacing-lg) 0;
  }

  .footer-section:first-child {
    text-align: center;
  }

  .footer-section:first-child .logo {
    display: flex;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-lg);
    text-align: center;
  }

  .footer-payments {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .payment-icons {
    justify-content: center;
  }

  /* Responsible Gambling Mobile */
  .rg-icon {
    width: 80px;
    height: 80px;
  }

  .age-badge {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: var(--spacing-lg);
  }

  .footer-section h4 {
    font-size: 18px;
  }

  .footer-section ul li {
    font-size: 14px;
  }

  .footer-disclaimer p {
    font-size: 14px;
  }

  .payment-icons {
    gap: var(--spacing-sm);
  }

  .footer .payment-icon {
    width: 35px;
    height: 22px;
  }

  /* Responsible Gambling Small Mobile */
  .rg-icon {
    width: 80px;
    height: 80px;
  }

  .age-badge {
    font-size: 20px;
  }
}

.footer-section h4 {
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary-dark);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
  color: var(--text-secondary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--brand-cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--neutral-700);
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.footer-disclaimer p {
  color: var(--text-secondary-dark);
  font-size: 14px;
}

.age-badge-small {
  display: inline-block;
  background: var(--gradient-cyan);
  color: var(--neutral-900);
  font-weight: 700;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.footer-payments span {
  color: var(--text-secondary-dark);
  font-size: 14px;
}

.footer .payment-icons {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.footer .payment-icon {
  width: 40px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .payment-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer .payment-icon img[alt="Mastercard"] {
  filter: none;
  background: white;
  border-radius: 4px;
  padding: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }

  .jackpot-amount {
    font-size: 36px;
  }

  .timer {
    gap: var(--spacing-sm);
  }

  .time-unit .number {
    font-size: 20px;
    min-width: 50px;
  }
}

@media (max-width: 768px) {
  .header-content {
    gap: var(--spacing-md);
  }

  .nav {
    gap: var(--spacing-lg);
  }

  .hero {
    padding: 150px 0 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .jackpot-amount {
    font-size: 28px;
  }

  .timer {
    flex-wrap: wrap;
    justify-content: center;
  }

  .lottery-balls {
    grid-template-columns: repeat(2, 1fr);
    max-width: 200px;
  }

  .ball {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles */
.btn:focus,
.filter-btn:focus,
.faq-question:focus {
  outline: 2px solid var(--brand-cyan);
  outline-offset: 2px;
}

/* Checkout Form */
.checkout-form-section {
  margin-top: var(--spacing-xxl);
  padding-top: var(--spacing-xxl);
  border-top: 2px solid var(--neutral-100);
  min-height: 50vh;
}

.form-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary-dark);
  margin-bottom: var(--spacing-sm);
}

.form-header p {
  color: var(--text-secondary-dark);
  font-size: 16px;
}

.form-content {
  width: 100%;
  background: var(--neutral-800);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xxl);
  border: 1px solid var(--neutral-700);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group input {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  border: 2px solid var(--neutral-600);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--text-primary-dark);
  background: var(--neutral-700);
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-group input::placeholder {
  color: var(--text-secondary-dark);
}

.form-actions {
  margin-top: var(--spacing-xl);
  text-align: center;
}

.form-actions .btn {
  min-width: 200px;
}

.form-actions .btn svg {
  width: 40px;
  height: 40px;
}

/* Success Message Styles */
.success-message {
  text-align: center;
  padding: var(--spacing-xxl);
}

.success-icon {
  margin-bottom: var(--spacing-lg);
}

.success-icon svg {
  width: 80px;
  height: 80px;
  color: var(--brand-lime);
  animation: successPulse 2s ease-in-out;
}

.success-message h3 {
  color: var(--text-primary-dark);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.success-message p {
  color: var(--text-secondary-dark);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

@keyframes successPulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .form-content {
    margin: var(--spacing-lg);
    padding: var(--spacing-lg);
  }

  .form-header h2 {
    font-size: 28px;
  }

  .form-actions .btn {
    width: 100%;
    min-width: auto;
  }

  /* FAQ Responsive */
  .faq-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .faq-list {
    order: 1;
  }

  .faq-sidebar {
    order: 2;
  }

  .faq-question {
    font-size: 16px;
    padding: var(--spacing-lg);
  }

  .faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .faq-question {
    font-size: 15px;
    padding: var(--spacing-md);
  }

  .faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    font-size: 14px;
  }

  .faq-sidebar {
    padding: var(--spacing-lg);
  }

  .faq-sidebar h3 {
    font-size: 20px;
  }
}

/* Legal Pages */
.legal-page {
  background: var(--neutral-050);
  color: var(--text-primary-light);
  padding: var(--spacing-xxl) 0;
  padding-top: 150px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xxl);
  box-shadow: var(--shadow-card);
}

.legal-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 2px solid var(--neutral-100);
}

.legal-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary-light);
  margin-bottom: var(--spacing-sm);
}

.legal-header p {
  color: var(--text-secondary-light);
  font-size: 16px;
}

.legal-body {
  line-height: 1.7;
}

.legal-section {
  margin-bottom: var(--spacing-xl);
}

.legal-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary-light);
  margin-bottom: var(--spacing-md);
}

.legal-section p {
  color: var(--text-secondary-light);
  margin-bottom: var(--spacing-md);
}

.legal-section ul {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.legal-section li {
  color: var(--text-secondary-light);
  margin-bottom: var(--spacing-sm);
}

@media (max-width: 768px) {
  .legal-page {
    padding-top: 100px;
  }

  .legal-content {
    margin: var(--spacing-lg);
    padding: var(--spacing-lg);
  }

  .legal-header h1 {
    font-size: 28px;
  }

  .legal-section h2 {
    font-size: 20px;
  }
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Cart Page Styles */
.cart-section {
  background: linear-gradient(135deg, var(--neutral-900), var(--neutral-800));
  padding: 120px 0 80px;
  min-height: 100vh;
  position: relative;
  overflow: visible;
}

.cart-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(0, 229, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(255, 61, 157, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.cart-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.cart-header h1 {
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cart-header p {
  color: var(--text-secondary-dark);
  font-size: 18px;
}

.cart-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xxl);
  position: relative;
  overflow: visible;
  min-height: 100vh;
}

.cart-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  overflow: visible;
  min-height: 100vh;
}

@media (max-width: 1024px) {
  .cart-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    min-height: auto;
  }

  .cart-left {
    gap: var(--spacing-lg);
    min-height: auto;
    flex: none;
  }

  .cart-summary {
    position: sticky;
    top: 90px;
    z-index: 10;
    height: fit-content;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    order: -1;
    flex: none;
  }
}

@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    padding-top: calc(var(--spacing-lg) + 40px) !important;
  }

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

  .item-game {
    justify-content: center;
  }

  .item-details {
    justify-content: center;
  }

  .item-price {
    align-items: center;
  }

  .remove-btn {
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    padding: var(--spacing-xs);
  }

  .remove-btn svg {
    width: 18px;
    height: 18px;
  }

  .cart-summary {
    position: sticky;
    top: 80px;
    margin-top: var(--spacing-xl);
    z-index: 10;
    height: fit-content;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .checkout-form-section {
    margin-top: var(--spacing-xl);
  }

  .form-content {
    margin: auto;
    padding: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .cart-item {
    padding: var(--spacing-md);
    padding-top: calc(var(--spacing-md) + 35px);
  }

  .item-game h3 {
    font-size: 20px;
  }

  .price-amount {
    font-size: 20px;
  }

  .remove-btn {
    top: 8px;
    right: 8px;
    padding: 4px;
  }

  .remove-btn svg {
    width: 16px;
    height: 16px;
  }

  .form-content {
    margin: auto;
    padding: var(--spacing-md);
  }

  .form-header h2 {
    font-size: 24px;
  }

  .cart-summary {
    position: sticky;
    top: 70px;
    z-index: 10;
    height: fit-content;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.cart-item {
  background: var(--neutral-800);
  border: 1px solid var(--neutral-700);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  transition: all 0.3s ease;
  position: relative;
}

.cart-item:hover {
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.item-info {
  width: 100%;
}

.item-game {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.item-game h3 {
  color: var(--text-primary-dark);
  font-size: 24px;
  margin: 0;
}

.item-details {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary-dark);
  font-size: 14px;
}

.item-numbers {
  margin-top: var(--spacing-md);
}

.numbers-label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary-dark);
  margin-bottom: var(--spacing-sm);
}

.item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-md);
  align-self: flex-end;
}

.price-amount {
  font-family: "Space Grotesk", monospace;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-lime);
  text-shadow: 0 0 20px rgba(198, 255, 0, 0.5);
}

.remove-btn {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: none;
  border: none;
  color: var(--text-secondary-dark);
  cursor: pointer;
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  z-index: 10;
}

.remove-btn:hover {
  color: var(--error);
  background: rgba(255, 23, 68, 0.1);
}

.remove-btn svg {
  width: 20px;
  height: 20px;
}

.cart-summary {
  background: var(--neutral-800);
  border: 2px solid var(--brand-cyan);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  position: sticky;
  top: 100px;
  z-index: 10;
  height: fit-content;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  margin-top: 0;
  width: 100%;
  align-self: start;
}

.summary-header {
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--neutral-700);
}

.summary-header h3 {
  color: var(--text-primary-dark);
  margin: 0;
}

.summary-items {
  margin-bottom: var(--spacing-xl);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary-dark);
}

.summary-item.total {
  color: var(--text-primary-dark);
  font-weight: 700;
  font-size: 18px;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--neutral-700);
  margin-top: var(--spacing-md);
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.checkout-btn {
  width: 100%;
  justify-content: center;
}

.checkout-btn svg {
  width: 40px;
  height: 40px;
}

.security-notice {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-md);
}

.security-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-icon svg {
  width: 20px;
  height: 20px;
  color: var(--neutral-900);
}

.security-text h4 {
  color: var(--brand-cyan);
  margin: 0 0 var(--spacing-xs) 0;
  font-size: 16px;
}

.security-text p {
  color: var(--text-secondary-dark);
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

.cart-empty {
  text-align: center;
  padding: var(--spacing-xxl) 0;
}

.empty-icon {
  width: 80px;
  height: 80px;
  background: var(--neutral-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-xl);
}

.empty-icon svg {
  width: 40px;
  height: 40px;
  color: var(--text-secondary-dark);
}

.cart-empty h2 {
  color: var(--text-primary-dark);
  margin-bottom: var(--spacing-md);
}

.cart-empty p {
  color: var(--text-secondary-dark);
  margin-bottom: var(--spacing-xl);
}

.cart-icon-header.active {
  color: var(--brand-cyan);
  border-color: var(--brand-cyan);
  background: rgba(0, 229, 255, 0.1);
}

/* General Mobile Improvements */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  /* Container adjustments */
  .container {
    padding: 0 var(--spacing-md);
  }

  /* Button adjustments */
  .btn {
    padding: 10px 20px;
    font-size: 16px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 16px;
  }

  /* Section padding adjustments */
  .games,
  .how-it-works,
  .quick-pick,
  .winners,
  .security,
  .faq,
  .responsible-gambling {
    padding: var(--spacing-xl) 0;
  }

  /* Card adjustments */
  .card {
    padding: var(--spacing-lg);
  }

  /* Form adjustments */
  input,
  select,
  textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Touch target improvements */
  .btn,
  .nav a,
  .faq-question,
  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  /* Further typography adjustments */
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  /* Container adjustments */
  .container {
    padding: 0 var(--spacing-sm);
  }

  /* Button adjustments */
  .btn {
    padding: 8px 16px;
    font-size: 16px;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 16px;
  }

  /* Section padding adjustments */
  .games,
  .how-it-works,
  .quick-pick,
  .winners,
  .security,
  .faq,
  .responsible-gambling {
    padding: var(--spacing-lg) 0;
  }

  /* Card adjustments */
  .card {
    padding: var(--spacing-md);
  }

  /* Spacing adjustments */
  .section-header {
    margin-bottom: var(--spacing-lg);
  }

  .section-header h2 {
    margin-bottom: var(--spacing-md);
  }

  .section-header p {
    font-size: 14px;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: var(--spacing-lg) 0;
  }

  .mobile-menu.active .mobile-menu-content {
    margin-top: 40px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo-text,
  .btn,
  .card {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
