:root {
  --primary: #1A1A2E;
  --primary-dark: #0f1427;
  --accent: #E94560;
  --accent-hover: #d93651;
  --accent-secondary: #FFC857;
  --bg-primary: #1A1A2E;
  --bg-secondary: #16213E;
  --bg-card: #16213E;
  --text-primary: #F5F5F5;
  --text-secondary: #B0B0B0;
  --border-color: #2C3E50;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Josefin Sans', sans-serif;
  --type-hero: clamp(3rem, 8vw, 8rem);
  --type-h1: clamp(2.5rem, 6vw, 6rem);
  --type-h2: clamp(2rem, 5vw, 4rem);
  --type-h3: clamp(1.5rem, 4vw, 3rem);
  --type-body: clamp(1rem, 2vw, 1.25rem);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--bg-primary);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--type-h1);
  font-weight: 900;
}

h2 {
  font-size: var(--type-h2);
  font-weight: 700;
}

h3 {
  font-size: var(--type-h3);
  font-weight: 600;
}

p {
  font-size: var(--type-body);
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
}

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

.section-padding-small {
  padding: 4rem 0;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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