@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-bg: #0a0000;
  --color-surface: #120508;
  --color-card: #1a0608;
  --color-card-hover: #200a0d;
  --color-gold: #f5c518;
  --color-gold-light: #ffd700;
  --color-gold-dark: #d4a017;
  --color-red: #e63946;
  --color-red-dark: #b01020;
  --color-text: #f0e8e8;
  --color-muted: #a08888;
  --color-danger: #ff4455;
  --color-success: #00cc66;
  --color-border: rgba(245, 197, 24, 0.15);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 32px;
  --shadow-gold: 0 0 20px rgba(245, 197, 24, 0.3);
  --shadow-gold-lg: 0 0 40px rgba(245, 197, 24, 0.4);
  --shadow-red: 0 0 20px rgba(230, 57, 70, 0.35);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.7);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --header-height: 72px;
  --container-max: 1280px;
  --container-pad: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-title span {
  color: var(--color-gold);
}

.section-subtitle {
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--border-radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #0a0a0f;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  box-shadow: var(--shadow-gold-lg);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: rgba(245, 197, 24, 0.1);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-red {
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  color: #fff;
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.15rem;
  border-radius: var(--border-radius-lg);
}

.btn-pulse {
  animation: pulse-gold 2s ease-in-out infinite;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(245, 197, 24, 0.15);
  color: var(--color-gold);
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.badge-red {
  background: rgba(230, 57, 70, 0.15);
  color: var(--color-red);
  border: 1px solid rgba(230, 57, 70, 0.35);
}

.badge-green {
  background: rgba(0, 204, 102, 0.15);
  color: var(--color-success);
  border: 1px solid rgba(0, 204, 102, 0.3);
}

.gold-text {
  color: var(--color-gold);
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: 2px;
  margin: 1rem auto 0;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-gold);
}

.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.card:hover {
  background: var(--color-card-hover);
  border-color: rgba(245, 197, 24, 0.3);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.placeholder-img {
  background: linear-gradient(135deg, #1a0608 0%, #2a0e12 50%, #1a0608 100%);
  background-size: 200% 200%;
  animation: shimmer 2s linear infinite;
  display: block;
  border-radius: var(--border-radius);
  border: 2px dashed rgba(245, 197, 24, 0.4);
  position: relative;
  min-height: 200px;
}

.placeholder-label {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-gold);
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
}

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-card);
  border: 1px solid var(--color-gold);
  color: var(--color-text);
  padding: 0.9rem 1.8rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  z-index: 9999;
  transition: transform 0.3s ease;
  font-weight: 500;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
