/* === 2025 Modern Web Tasarım Stilleri - Çark Çevirme === */
:root {
  /* Ana Renkler - Yeni Palet */
  --primary-blue: #0E1E5B;
  --secondary-blue: #091442;
  --accent-blue: #3562A6;
  --text-blue: #6594C0;
  --dark-bg: #0B0B0B;
  --accent-gold: #d97706;
  --accent-gold-hover: #b45309;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #1e293b;
  
  /* Gradient Renkler */
  --gradient-primary: linear-gradient(135deg, #0E1E5B 0%, #091442 100%);
  --gradient-secondary: linear-gradient(135deg, #3562A6 0%, #0E1E5B 100%);
  --gradient-gold: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  --gradient-dark: linear-gradient(135deg, #0B0B0B 0%, #091442 100%);
  
  /* Gölge Efektleri */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Geçiş Efektleri */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Glassmorphism */
  --glass-bg: rgba(101, 148, 192, 0.1);
  --glass-border: rgba(101, 148, 192, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(14, 30, 91, 0.37);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--gradient-dark);
  color: var(--text-light);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === Özel Scroll Bar === */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(101, 148, 192, 0.1);
  border-radius: 10px;
  margin: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
  border-radius: 10px;
  border: 2px solid rgba(101, 148, 192, 0.1);
  transition: all var(--transition-normal);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
  box-shadow: 0 0 10px rgba(217, 119, 6, 0.5);
}

/* === Header === */
.app-header {
  background: var(--gradient-primary);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(101, 148, 192, 0.2);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-width: 300px;
}

.back-btn {
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.3);
  color: var(--accent-gold);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-weight: 500;
  cursor: pointer;
}

.back-btn:hover {
  background: rgba(217, 119, 6, 0.25);
  border-color: var(--accent-gold);
  transform: translateX(-4px);
}

.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.header-left h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.seed {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  background: rgba(101, 148, 192, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(101, 148, 192, 0.2);
}

.seed input {
  background: transparent;
  border: none;
  color: var(--text-light);
  width: 120px;
  padding: 0.25rem 0;
  outline: none;
  font-size: 0.875rem;
}

.seed input::placeholder {
  color: var(--text-muted);
}

/* === Main Container === */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }
}

/* === Panel Kartları === */
.panel-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-normal);
}

.panel-card:hover {
  background: rgba(101, 148, 192, 0.12);
  border-color: rgba(101, 148, 192, 0.3);
}

.panel-card h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.panel-card h3 {
  font-size: 1rem;
  margin: 1rem 0 0.75rem 0;
  color: var(--accent-gold);
}

/* === Form Grupları === */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.9rem;
}

.form-group small {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.input-group {
  display: flex;
  gap: 0.75rem;
}

.form-group input[type="text"],
.form-group input[type="color"],
.form-group select,
.form-group textarea {
  flex: 1;
  background: rgba(14, 30, 91, 0.5);
  border: 1px solid rgba(101, 148, 192, 0.3);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.form-group input[type="text"]:focus,
.form-group input[type="color"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(14, 30, 91, 0.7);
  border-color: var(--accent-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-group select {
  cursor: pointer;
}

/* === Renk Seçici === */
.color-picker {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.color-picker input[type="color"] {
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: var(--radius-lg);
}

.color-preview {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(101, 148, 192, 0.3);
  transition: all var(--transition-normal);
}

/* === Seçenekler Listesi === */
.options-container {
  background: rgba(11, 11, 11, 0.5);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin: 1rem 0;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid rgba(101, 148, 192, 0.2);
}

.option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(53, 98, 166, 0.15);
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(101, 148, 192, 0.2);
  transition: all var(--transition-fast);
}

.option-item:hover {
  background: rgba(53, 98, 166, 0.25);
  border-color: rgba(101, 148, 192, 0.4);
}

.option-item-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.option-item-color {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.option-item-name {
  color: var(--text-light);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

.option-item-name:hover {
  background: rgba(53, 98, 166, 0.2);
  border-bottom: 2px solid var(--accent-gold);
}

.option-item-name-edit {
  background: rgba(14, 30, 91, 0.8);
  border: 2px solid var(--accent-gold);
  color: var(--text-light);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  min-width: 100px;
}

.option-item-name-edit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
}

.option-item-actions {
  display: flex;
  gap: 0.5rem;
}

.option-item-edit,
.option-item-confirm {
  background: rgba(53, 98, 166, 0.2);
  border: 1px solid rgba(101, 148, 192, 0.4);
  color: var(--text-blue);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.75rem;
  font-weight: 600;
}

.option-item-edit:hover,
.option-item-confirm:hover {
  background: rgba(53, 98, 166, 0.35);
  border-color: var(--text-blue);
}

.option-item-remove {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.8rem;
  font-weight: 600;
}

.option-item-remove:hover {
  background: rgba(239, 68, 68, 0.4);
  border-color: rgba(239, 68, 68, 0.6);
}

/* === Şablonlar === */
.preset-templates {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(101, 148, 192, 0.2);
}

.preset-templates h3 {
  margin-bottom: 1rem;
}

.template-btn {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
  text-align: left;
}

/* === Çark Paneli === */
.wheel-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 2rem;
  aspect-ratio: 1;
}

#wheelCanvas {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 30px rgba(217, 119, 6, 0.3));
}

.wheel-pointer {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid var(--accent-gold);
  z-index: 10;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* === Çark Kontrolleri === */
.wheel-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spin-info {
  text-align: center;
  padding: 1rem;
  background: rgba(53, 98, 166, 0.15);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(101, 148, 192, 0.2);
}

.result-display {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.speed-info {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* === Geçmiş Paneli === */
.history-panel {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(101, 148, 192, 0.2);
}

.history-panel h3 {
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.history-container {
  background: rgba(11, 11, 11, 0.5);
  border-radius: var(--radius-lg);
  padding: 1rem;
  max-height: 250px;
  overflow-y: auto;
  border: 1px solid rgba(101, 148, 192, 0.2);
}

.history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: rgba(53, 98, 166, 0.1);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-gold);
  font-size: 0.9rem;
}

.history-item-result {
  font-weight: 600;
  color: var(--text-light);
}

.history-item-time {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.history-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 1rem;
}

/* === Butonlar === */
.btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-fast);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}

.btn:hover:not(:disabled) {
  background: rgba(101, 148, 192, 0.2);
  border-color: rgba(101, 148, 192, 0.4);
  transform: translateY(-2px);
}

.btn:active:not(:disabled) {
  transform: translateY(0);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn.primary {
  background: var(--gradient-gold);
  border: 1px solid var(--accent-gold);
  color: var(--dark-bg);
}

.btn.primary:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
  box-shadow: 0 0 20px rgba(217, 119, 6, 0.4);
}

.btn.secondary {
  background: var(--gradient-secondary);
  border: 1px solid var(--accent-blue);
}

.btn.secondary:hover:not(:disabled) {
  background: linear-gradient(135deg, #4a7ec6 0%, #0E1E5B 100%);
  box-shadow: 0 0 20px rgba(53, 98, 166, 0.4);
}

.btn.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  width: 100%;
}

.btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn.danger {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.btn.danger:hover:not(:disabled) {
  background: rgba(239, 68, 68, 0.4);
  border-color: rgba(239, 68, 68, 0.6);
}

.btn.template-btn {
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  background: rgba(53, 98, 166, 0.15);
  border: 1px solid rgba(101, 148, 192, 0.2);
}

.btn.template-btn:hover {
  background: rgba(53, 98, 166, 0.25);
}

/* === Spin Modal Popup === */
.spin-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity var(--transition-normal);
  padding: 2rem;
}

.spin-modal.hidden {
  opacity: 0;
  pointer-events: none;
}

.spin-modal-content {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-2xl);
  padding: 3rem 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 0 50px rgba(217, 119, 6, 0.3), var(--shadow-xl);
  text-align: center;
  animation: modalSlideIn var(--transition-normal) ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.spin-modal-wheel-wrapper {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto 1.5rem auto;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#spinModalCanvas {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(217, 119, 6, 0.4));
}

.spin-modal-pointer {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid var(--accent-gold);
  z-index: 10;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.spin-modal-info {
  text-align: center;
  padding: 1.5rem;
  background: rgba(53, 98, 166, 0.2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(217, 119, 6, 0.3);
  width: 100%;
  box-sizing: border-box;
}

.spin-modal-result {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

.spin-modal-speed {
  font-size: 1rem;
  color: var(--text-muted);
}

/* === Loading Overlay === */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 11, 11, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity var(--transition-normal);
}

.overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  text-align: center;
}

.loader p {
  color: var(--accent-gold);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* === Animasyonlar === */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* === Responsive Tasarım === */
@media (max-width: 768px) {
  .app-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
  }

  .header-left {
    flex-direction: column;
    width: 100%;
    justify-content: center;
  }

  .controls {
    width: 100%;
    justify-content: center;
  }

  /* 2. Ana Yapı (Grid'i Tek Kolona Düşür) */
  .content-wrapper {
    grid-template-columns: 1fr !important; /* Yan yana durmayı zorla iptal et */
    gap: 2rem;
  }

  .container {
    padding: 1rem;
  }

  /* 3. Form ve Input Alanları (İç İçe Geçmeyi Önleyen Kısım) */
  .input-group {
    flex-direction: column; /* Yan yana değil alt alta olsun */
    gap: 1rem;
  }

  .form-group input[type="text"] {
    width: 100%; /* Tam genişlik */
  }

  /* Renk Seçici ve Buton Hizalaması */
  .color-picker {
    width: 100%;
    justify-content: space-between; /* Mobilde yayıl */
    background: rgba(14, 30, 91, 0.3);
    padding: 0.5rem;
    border-radius: var(--radius-md);
  }

  .color-picker input[type="color"],
  .color-preview {
    width: 50px;
    height: 50px;
  }

  /* Ekle Butonu */
  .btn.primary {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem;
  }

  /* 4. Çark Alanı */
  .wheel-wrapper {
    max-width: 300px; /* Mobilde taşmayı önle */
    margin: 0 auto 2rem;
  }

  /* 5. Modal (Sonuç Ekranı) */
  .spin-modal-content {
    width: 95%;
    padding: 1.5rem;
    max-height: 90vh; /* Ekrandan taşarsa scroll çıksın */
    overflow-y: auto;
  }

  .spin-modal-wheel-wrapper {
    height: 200px;
    width: 200px;
    margin: 1rem auto;
  }

  .spin-modal-result {
    font-size: 1.5rem;
    word-wrap: break-word; /* Uzun kelimeler taşmasın */
  }

  /* 6. Seçenekler Listesi */
  .options-container {
    max-height: 250px;
  }
  
  .option-item {
    flex-wrap: wrap; /* Sığmazsa alt satıra geç */
    gap: 0.5rem;
  }
  
  .option-item-actions {
    width: 100%;
    justify-content: flex-end;
    margin-top: 0.5rem;
  }
}

/* Çok Küçük Ekranlar (iPhone SE vb.) */
@media (max-width: 380px) {
  .wheel-wrapper {
    max-width: 260px;
  }
  
  .header-left h1 {
    font-size: 1.5rem;
  }
}

/* === MOBİL GÖRÜNÜM İYİLEŞTİRMELERİ (GÜNCELLENMİŞ) === */
@media (max-width: 768px) {
  
  /* 1. Seed (Tohum) Alanını Mobilde Tamamen Gizle */
  .app-header .seed {
    display: none !important;
  }

  /* 2. Header'ı İncelt ve Tek Satıra İndir */
  .app-header {
    flex-direction: row !important; /* Alt alta değil yan yana olsun */
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.8rem; /* Boşlukları azalt */
    height: 60px; /* Sabit ince yükseklik */
    gap: 0;
  }

  /* 3. Sol Taraf (Logo ve Başlık) */
  .header-left {
    flex-direction: row;
    align-items: center;
    width: auto;
    margin-bottom: 0;
    gap: 0.5rem;
  }

  .logo {
    height: 30px; /* Logoyu küçült */
    width: auto;
  }

  .header-left h1 {
    font-size: 1rem; /* Başlığı küçült */
    margin: 0;
    white-space: nowrap; /* Alt satıra geçmesin */
  }

  .back-btn {
    font-size: 1.2rem; /* Ok işaretini belirginleştir */
    padding: 0 0.5rem;
  }
  
  /* "Ana Sayfa" yazısını gizle, sadece ok kalsın (yer kazanmak için) */
  .back-btn {
    font-size: 0; /* Yazıyı gizle */
  }
  .back-btn::before {
    content: '←';
    font-size: 1.5rem; /* Sadece oku göster */
  }

  /* 4. Sağ Taraf (Sıfırla Butonu - Modern İkon) */
  .controls {
    width: auto;
    margin-top: 0;
  }

  #resetBtn {
    font-size: 0 !important; /* Yazıyı gizle */
    padding: 0;
    width: 40px;
    height: 40px;
    min-width: 40px; /* Küçülmeyi önle */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Tam yuvarlak */
    background: rgba(255, 255, 255, 0.1); /* Şeffaf arka plan */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.2s ease;
  }

  #resetBtn:active {
    transform: scale(0.9);
    background: rgba(255, 255, 255, 0.2);
  }

  #resetBtn::before {
    content: '🔄'; /* İkon */
    font-size: 1.2rem;
    line-height: 1;
  }

  /* 5. Ana İçeriği Yukarı Çek */
  .container {
    padding: 0.5rem;
    margin-top: 0;
  }
  
  .wheel-wrapper {
    margin-bottom: 1rem; /* Çark altındaki boşluğu azalt */
  }
}

/* === Çoklu Ekleme (Bulk Add) Stilleri - GÜNCELLENDİ === */
.bulk-section {
  margin-top: 0.8rem; /* Üst boşluk azaltıldı */
  padding-top: 0;
  border-top: none; /* Çizgi kaldırıldı */
  width: 100%;
}

.bulk-toggle-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.05); /* Daha şeffaf */
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
}

.bulk-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.bulk-area {
  display: none;
  margin-top: 0.5rem;
  animation: fadeIn 0.3s ease;
}

.bulk-area.active {
  display: block;
}

.bulk-textarea {
  width: 100%;
  height: 120px;
  background: rgba(14, 30, 91, 0.5);
  border: 1px solid rgba(101, 148, 192, 0.3);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  resize: vertical;
  margin-bottom: 0.5rem;
  transition: all var(--transition-fast);
}

.bulk-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(14, 30, 91, 0.8);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.bulk-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
