:root {
  --los-purple-900: #1a1245;
  --los-purple-800: #221858;
  --los-purple-700: #2c2068;
  --los-purple-600: #3b2c87;
  --los-purple-500: #4a399f;
  --los-purple-card: #2f2270;
  --los-purple-card-light: #3a2c80;
  --los-orange: #f47820;
  --los-orange-2: #ff8a3d;
  --los-yellow: #ffb800;
  --los-green: #2ecc71;
  --los-white: #ffffff;
  --los-text-muted: #b8aedf;
  --los-text-muted-2: #cdc4eb;
  --los-radius: 16px;
  --los-radius-lg: 24px;
  --los-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  --los-container: 1440px;
  --los-font-display: "Bungee", "Poppins", sans-serif;
  --los-font-body: "Poppins", system-ui, -apple-system, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--los-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--los-white);
  background: var(--los-purple-900);
  overflow-x: hidden;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--los-font-display);
  font-weight: 400;
  margin: 0 0 0.5em;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

p {
  margin: 0 0 1em;
}

.los-container {
  width: 100%;
  max-width: var(--los-container);
  margin: 0 auto;
  padding: 0 24px;
}

.los-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-top-left-radius: 8px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  font-family: var(--los-font-display);
  font-size: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
  white-space: nowrap;
}

.los-btn--primary {
  background: linear-gradient(
    180deg,
    var(--los-orange-2) 0%,
    var(--los-orange) 100%
  );
  color: #fff;
  box-shadow: 0 12px 24px rgba(244, 120, 32, 0.35);
}

.los-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(244, 120, 32, 0.45);
  filter: brightness(1.05);
}

.los-btn--purple {
  background: #9c82f4;
  color: #fff;
  box-shadow: 0 8px 20px rgba(156, 130, 244, 0.35);
}

.los-btn--purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(156, 130, 244, 0.45);
  filter: brightness(1.08);
}

.los-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.los-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.los-btn__icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
}

.los-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.los-stars svg {
  width: 18px;
  height: 18px;
}

.los-section {
  padding: 80px 0;
  position: relative;
}

.los-section__title {
  font-size: clamp(28px, 4vw, 46px);
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}

.los-section__lead {
  text-align: center;
  color: var(--los-text-muted-2);
  max-width: 640px;
  margin: 0 auto 56px;
  font-size: 16px;
}

.los-bg-stars {
  background: linear-gradient(180deg, #2a1f6e 0%, #1f1750 100%);
  background-image: url("/wp-content/themes/legacyofspins/images/section-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.los-bg-stars > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .los-section {
    padding: 56px 0;
  }
  .los-btn {
    padding: 14px 26px;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .los-section {
    padding: 44px 0;
  }
  .los-section__lead {
    margin-bottom: 36px;
  }
}
