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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  background-color: var(--color-dark);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  transition: all var(--transition);
}

#hero-section {
  position: relative;
  z-index: 1;
}

#hero-stats-section {
  position: relative;
  z-index: 5;
  pointer-events: none;
}

#hero-stats-section .hero-stats {
  pointer-events: auto;
}

#about-section {
  position: relative;
  z-index: 3;
}

main > div:not(#hero-section):not(#hero-stats-section):not(#about-section) {
  position: relative;
  z-index: 2;
}

#footer-section {
  position: relative;
  z-index: 2;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-title .highlight {
  color: var(--color-yellow);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition);
}

.btn-red {
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  color: var(--color-white);
  box-shadow: var(--shadow-red);
}

.btn-red:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #f0252b, var(--color-red));
  box-shadow: 0 8px 28px rgba(227, 30, 36, 0.55);
}

.btn-yellow {
  background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-dark));
  color: var(--color-black);
}

.btn-yellow:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.1);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.35);
}

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

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-black);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-dark:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  background: rgba(227, 30, 36, 0.08);
  transform: translateY(-3px) scale(1.03);
}
