@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800;900&family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Renk Paleti - Felerous Holding */
  --bg-primary: #07090e;
  --bg-secondary: #0d111a;
  --bg-tertiary: #131926;
  --bg-card: rgba(16, 23, 37, 0.7);
  --bg-card-hover: rgba(23, 33, 53, 0.85);
  
  /* Vurgular (Felerous Zümrüt & Yakut) */
  --emerald-primary: #00e676;
  --emerald-glow: rgba(0, 230, 118, 0.4);
  --emerald-dark: #00964b;
  --ruby-primary: #e11d48;
  --ruby-glow: rgba(225, 29, 72, 0.4);
  
  /* LOA Game Studio (Altın & Gümüş) */
  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-glow: rgba(245, 158, 11, 0.35);
  --silver-primary: #e2e8f0;
  --silver-glow: rgba(226, 232, 240, 0.3);

  /* Metin Renkleri */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Kenarlıklar & Efektler */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-emerald: rgba(0, 230, 118, 0.25);
  --border-ruby: rgba(225, 29, 72, 0.25);
  --border-gold: rgba(245, 158, 11, 0.25);
  --glass-blur: blur(16px);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Tipografi */
  --font-heading: 'Cinzel', serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Animasyon */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #111a2e 0%, var(--bg-primary) 70%);
  background-attachment: fixed;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Canvas Arka Plan Konteyneri */
#canvas-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* Tipografi Kuralları */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

.mythic-title {
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
}

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

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

/* Konteyner & Grid */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid var(--border-emerald);
  color: var(--emerald-primary);
  margin-bottom: 18px;
}

.section-tag.gold {
  background: rgba(245, 158, 11, 0.08);
  border-color: var(--border-gold);
  color: var(--gold-light);
}

.section-tag.ruby {
  background: rgba(225, 29, 72, 0.08);
  border-color: var(--border-ruby);
  color: #fb7185;
}

.section-tag.silver {
  background: rgba(226, 232, 240, 0.08);
  border-color: rgba(226, 232, 240, 0.3);
  color: #e2e8f0;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.section-description {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* Metin Gradyan Efektleri */
.gradient-text-emerald {
  background: linear-gradient(135deg, #ffffff 10%, #00e676 60%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-ruby {
  background: linear-gradient(135deg, #ffffff 10%, #fb7185 50%, #e11d48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #fffbeb 10%, #fbbf24 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-silver {
  background: linear-gradient(135deg, #ffffff 20%, #cbd5e1 60%, #64748b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Seçim & Scrollbar */
::selection {
  background: var(--emerald-primary);
  color: #000;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--emerald-dark);
}
