:root {
  --primary-color: #4361ee;
  --primary-light: #4895ef;
  --primary-dark: #3f37c9;
  --accent-color: #f72585;
  --text-color: #2b2d42;
  --text-light: #6c757d;
  --background: rgba(8, 8, 32, 0.95);
  --card-bg: rgba(255, 255, 255, 0.1);
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;

  font-family: 'Montserrat', system-ui, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color: #ffffff;
  background-color: var(--background);

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 0;
}

#app {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.stats-container {
  padding: 1.5rem 1rem;
  border-radius: 12px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.stats-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 10px rgba(67, 97, 238, 0.5);
}

.stats-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(67, 97, 238, 0.8);
}

.stats-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
  border-radius: 2px 0 0 2px;
}

.stat-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 48px rgba(67, 97, 238, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: white;
  margin-right: 1rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(67, 97, 238, 0.4);
  animation: pulse 2s infinite;
}

.stat-content {
  text-align: left;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  text-shadow: 0 0 10px rgba(67, 97, 238, 0.5);
}

.stat-value span:last-child {
  font-size: 1.1rem;
  margin-left: 0.2rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin-top: 0.25rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(67, 97, 238, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
  }
}

/* Responsive styles */
@media (min-width: 768px) {
  .stats-wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }

  .stat-card {
    flex: 1;
    flex-direction: row;
    text-align: left;
    padding: 0.75rem 1rem;
  }

  .stat-icon {
    margin-right: 0.75rem;
  }

  .stat-content {
    text-align: left;
  }

  .stat-card::before {
    width: 100%;
    height: 3px;
    top: 0;
    left: 0;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  }
}

@media (min-width: 1024px) {
  .stats-container {
    padding: 2rem 1.5rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}
#checkoutBtn {
  width: 100%;
  padding: 12px 24px;
  background-color: #16a34a;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#checkoutBtn:hover {
  background-color: #15803d;
}

@media (min-width: 640px) {
  #checkoutBtn {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  #checkoutBtn {
    font-size: 20px;
  }
}
