@import url('fonts.css');

:root {
  /* Renk Paleti - FELEROUS Store */
  --bg-primary: #080b11;
  --bg-secondary: #0e131d;
  --bg-surface: #141b27;
  --bg-card: rgba(20, 27, 39, 0.75);
  --bg-card-hover: rgba(28, 38, 56, 0.9);
  
  /* Vurgular */
  --emerald-primary: #00e676;
  --emerald-glow: rgba(0, 230, 118, 0.35);
  --emerald-dark: #00964b;
  
  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-glow: rgba(245, 158, 11, 0.35);

  --ruby-primary: #e11d48;
  --ruby-glow: rgba(225, 29, 72, 0.35);
  --cyan-primary: #06b6d4;

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

  /* Kenarlık & Cam */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-emerald: rgba(0, 230, 118, 0.3);
  --border-gold: rgba(245, 158, 11, 0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --glass-blur: blur(14px);

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

  /* Geçişler */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s 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);
  max-width: 100vw;
  overflow-x: hidden;
}

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

main {
  flex: 1;
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
  overflow-wrap: anywhere;
}

p {
  color: var(--text-muted);
  font-size: 0.98rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, #00e676 0%, #00a854 100%);
  color: #031008;
  font-weight: 700;
  box-shadow: 0 0 20px var(--emerald-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #26ff92 0%, #00c864 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(0, 230, 118, 0.6);
  color: #000;
}

.btn-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #1a1000;
  font-weight: 700;
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #fde68a 0%, #f59e0b 100%);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-subtle);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline-emerald {
  background: rgba(0, 230, 118, 0.08);
  border-color: var(--border-emerald);
  color: var(--emerald-primary);
}

.btn-outline-emerald:hover {
  background: rgba(0, 230, 118, 0.18);
  border-color: var(--emerald-primary);
  box-shadow: 0 0 15px var(--emerald-glow);
}

/* Rozetler (Badges) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.badge-discount {
  background: #10b981;
  color: #04140a;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 4px 8px;
  border-radius: 4px;
}

.badge-free {
  background: rgba(6, 182, 212, 0.15);
  color: var(--cyan-primary);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.badge-turkey {
  background: rgba(225, 29, 72, 0.12);
  color: #fb7185;
  border: 1px solid var(--ruby-primary);
}

/* Gradyan Metinler */
.gradient-text-emerald {
  background: linear-gradient(135deg, #ffffff 10%, #00e676 60%, #059669 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;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: #1c2638;
  border-radius: 4px;
}

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

/* Global Select ve Option Koyu Tema Stilleri */
select, .settings-select {
  background-color: #141b29 !important;
  color: #ffffff !important;
}

select option, .settings-select option {
  background-color: #141b29 !important;
  color: #ffffff !important;
  padding: 10px;
}

select option:hover, select option:checked {
  background-color: #0284c7 !important;
  color: #ffffff !important;
}

