:root {
  --color-bg: #271556;
  --color-bg-2: #271556;
  --color-bg-3: #221060;
  --color-card: rgba(179, 167, 255, 0.18);
  --color-card-border: rgba(179, 167, 255, 0.28);
  --color-purple-light: #9c8cff;
  --color-purple-mid: #5166d6;
  --color-purple-deep: #520095;
  --color-orange: #ff6a2a;
  --color-orange-2: #ff8a3d;
  --color-text: #ffffff;
  --color-muted: rgba(255, 255, 255, 0.72);
  --color-dim: rgba(255, 255, 255, 0.6);
  --color-input-bg: #ffffff;
  --color-input-text: #1a0d4a;
  --color-success: #2ee5a6;
  --container-max: 1280px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 5px 16px rgba(8, 15, 52, 0.12);
  --font-display: "Bungee", "Poppins", system-ui, sans-serif;
  --font-body:
    "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.05;
}

p {
  margin: 0;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 8px 16px 16px 16px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  line-height: 1;
  color: #fff;
}

.btn--primary {
  background: linear-gradient(
    180deg,
    var(--color-orange-2) 0%,
    var(--color-orange) 100%
  );
  box-shadow: 0 8px 18px rgba(255, 106, 42, 0.32);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 106, 42, 0.45);
}

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

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

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn__icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("/wp-content/themes/callofcrowns/images/play.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;
  line-height: 0;
  color: transparent;
  flex-shrink: 0;
}

.btn__arrow {
  font-size: 18px;
  line-height: 1;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-header__title {
  font-size: 44px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.section-header__subtitle {
  color: #9c8cff;
  font-size: 16px;
}

.top-notice {
  line-height: 1;
  background: linear-gradient(
    90deg,
    var(--color-orange) 0%,
    var(--color-orange-2) 100%
  );
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px;
}

@media (max-width: 768px) {
  .section-header__title {
    font-size: 32px;
  }
  .btn {
    padding: 14px 22px;
    font-size: 16px;
  }
}

.default-page,
.page-body {
  padding: 40px 0;
}

.default-page__title {
  font-family: var(--font-display);
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.page-body__content,
.default-page__body {
  color: var(--color-muted);
  line-height: 1.8;
  font-size: 16px;
}

.page-body__content p,
.default-page__body p {
  margin-bottom: 18px;
}

.page-body__content h2,
.default-page__body h2 {
  color: #fff;
  margin: 32px 0 16px;
  font-size: 28px;
}

@media (max-width: 768px) {
  .default-page__title {
    font-size: 32px;
  }
}
