/* ==========================================
   HAYVANLAR DUNYASI - ORTAK STILLER
   ========================================== */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a2e;
  --bg-card: #16213e;
  --bg-card-hover: #1f3460;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --accent: #2ecc71;
  --accent-dark: #27ae60;
  --accent-glow: rgba(46, 204, 113, 0.3);
  --danger: #e74c3c;
  --warning: #f39c12;
  --info: #3498db;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --transition: 0.3s ease;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

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

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

img {
  max-width: 100%;
}

/* ==========================================
   NAVIGASYON
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(46, 204, 113, 0.1);
  padding: 0 2rem;
  transition: all var(--transition);
}

.navbar.scrolled {
  padding: 0 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: max-content;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  flex-shrink: 1;
  overflow: hidden;
}

.nav-links a {
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(46, 204, 113, 0.1);
}

.nav-links a.active {
  color: var(--accent);
}

.nav-search {
  position: relative;
}

.nav-search input {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  width: 200px;
  transition: all var(--transition);
  font-family: var(--font);
}

.nav-search input:focus {
  outline: none;
  border-color: var(--accent);
  width: 260px;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.nav-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  opacity: 0.5;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
}

/* Mobile Nav */
@media (max-width: 1280px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    border-bottom: 1px solid rgba(46, 204, 113, 0.1);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-search input {
    width: 150px;
  }

  .nav-search input:focus {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .nav-logo {
    font-size: 1.15rem;
  }
}

@media (max-width: 600px) {
  .nav-search {
    display: none;
  }

  .nav-logo {
    font-size: 1rem;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920&q=80&auto=format') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.65) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-emoji {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 15px var(--accent-glow);
}

.hero-btn:hover {
  background: var(--accent-dark);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--accent-glow);
}

/* ==========================================
   SECTION ORTAK
   ========================================== */
.section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   KATEGORI KARTLARI (GRID)
   ========================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  display: block;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.category-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  color: var(--text-primary);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card .card-emoji {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}

.category-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.category-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.category-card .card-count {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  background: rgba(46, 204, 113, 0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ==========================================
   ISTATISTIKLER
   ========================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
  color: var(--text-primary);
}

a.stat-item {
  cursor: pointer;
}

a.stat-item:hover {
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(46, 204, 113, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* ==========================================
   KATEGORI SAYFA YAPISI
   ========================================== */
.page-hero {
  padding: 8rem 2rem 3rem;
  text-align: center;
  background: var(--bg-secondary);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

.page-hero .hero-emoji {
  font-size: 4rem;
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Alt Kategori */
.subcategory {
  margin-bottom: 4rem;
}

.subcategory-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(46, 204, 113, 0.2);
}

.subcategory-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
}

.subcategory-header .sub-emoji {
  font-size: 1.8rem;
}

/* Hayvan Kartlari */
.animal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.animal-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
  cursor: pointer;
}

.animal-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.animal-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.animal-card-header .animal-emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.animal-card-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.animal-card-header .latin-name {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
}

.animal-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.animal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  padding: 0.2rem 0.6rem;
  background: rgba(46, 204, 113, 0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

.tag.habitat { background: rgba(52, 152, 219, 0.15); color: var(--info); }
.tag.diet { background: rgba(243, 156, 18, 0.15); color: var(--warning); }
.tag.danger { background: rgba(231, 76, 60, 0.15); color: var(--danger); }

/* ==========================================
   DETAY MODAL
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.modal-close:hover {
  background: rgba(231, 76, 60, 0.3);
}

.modal-emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.modal h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.modal .modal-latin {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
  display: block;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-info-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.modal-info-item .info-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.modal-info-item .info-value {
  font-weight: 600;
  color: var(--accent);
}

.modal-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modal-fun-facts {
  background: rgba(46, 204, 113, 0.05);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.modal-fun-facts h4 {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.modal-fun-facts ul {
  list-style: none;
  padding: 0;
}

.modal-fun-facts li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.modal-fun-facts li::before {
  content: '💡';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
}

@media (max-width: 600px) {
  .modal {
    padding: 1.5rem;
    margin: 1rem;
  }

  .modal-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   SURUNGEN OZEL - DETAYLI TIMSAH KARTLARI
   ========================================== */
.croc-detail-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--accent);
  transition: all var(--transition);
}

.croc-detail-card:hover {
  background: var(--bg-card-hover);
  box-shadow: var(--shadow);
}

.croc-detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.croc-detail-header .croc-emoji {
  font-size: 3rem;
}

.croc-detail-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.croc-detail-header .croc-latin {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
}

.croc-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.croc-stat {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.croc-stat .stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.croc-stat .stat-value {
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

.croc-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.croc-facts {
  background: rgba(46, 204, 113, 0.05);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

.croc-facts h4 {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.croc-facts ul {
  list-style: none;
  padding: 0;
}

.croc-facts li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 0.2rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.croc-facts li::before {
  content: '🐊';
  position: absolute;
  left: 0;
  font-size: 0.7rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--bg-secondary);
  padding: 3rem 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
}

.footer-section p,
.footer-section a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
}

.footer-links li a {
  display: block;
  padding: 0.15rem 0;
  transition: color var(--transition);
}

.footer-links li a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1400px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ==========================================
   ARAMA SONUCLARI
   ========================================== */
.search-results {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  width: 90%;
  max-width: 600px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1500;
  display: none;
  box-shadow: var(--shadow-lg);
}

.search-results.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--transition);
  color: var(--text-primary);
  cursor: pointer;
}

.search-result-item:hover {
  background: rgba(46, 204, 113, 0.1);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item .result-emoji {
  font-size: 1.5rem;
}

.search-result-item .result-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.search-result-item .result-info span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.search-no-results {
  padding: 2rem;
  text-align: center;
  color: var(--text-secondary);
}

/* ==========================================
   ANIMASYONLAR
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .section {
    padding: 3rem 1.25rem;
  }

  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .animal-grid {
    grid-template-columns: 1fr;
  }

  .animal-cards {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero {
    padding: 7rem 1.25rem 2.5rem;
  }

  .page-hero p {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .croc-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .quiz-container {
    padding: 1rem;
  }

  .quiz-result .result-score,
  .results-score {
    font-size: 2.2rem;
  }

  .contact-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

  .page-hero .hero-emoji {
    font-size: 3rem;
  }
}

/* ==========================================
   SAYFA GRADIENT ARKA PLANLARI
   ========================================== */
.page-hero.hero-memeliler {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b00 50%, #1a1a2e 100%);
}
.page-hero.hero-kuslar {
  background: linear-gradient(135deg, #1a1a2e 0%, #0c2340 50%, #1a1a2e 100%);
}
.page-hero.hero-surungen {
  background: linear-gradient(135deg, #1a1a2e 0%, #1b3a1b 50%, #2d2200 100%);
}
.page-hero.hero-baliklar {
  background: linear-gradient(135deg, #1a1a2e 0%, #0a1628 50%, #0d2137 100%);
}
.page-hero.hero-amfibiler {
  background: linear-gradient(135deg, #1a1a2e 0%, #0d2b2b 50%, #1a2e1a 100%);
}
.page-hero.hero-bocekler {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1a3e 50%, #3e1a2e 100%);
}
.page-hero.hero-omurgasizlar {
  background: linear-gradient(135deg, #1a1a2e 0%, #0a1a3e 50%, #1a0a2e 100%);
}
.page-hero.hero-tehlike {
  background: linear-gradient(135deg, #1a1a2e 0%, #3e1a0a 50%, #2e1a0a 100%);
}
.page-hero.hero-turkiye {
  background: linear-gradient(135deg, #2e0a0a 0%, #1a1a2e 50%, #0a2e0a 100%);
}
.page-hero.hero-quiz {
  background: linear-gradient(135deg, #1a1a2e 0%, #2e2d0a 50%, #0a2e1a 100%);
}
.page-hero.hero-hakkinda {
  background:
    linear-gradient(to bottom, rgba(6, 12, 20, 0.35) 0%, rgba(6, 12, 20, 0.78) 100%),
    linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(10, 26, 46, 0.75) 50%, rgba(26, 46, 62, 0.9) 100%),
    url('assets/about-hero.svg') center 35% / cover no-repeat;
  background-blend-mode: normal, normal, normal;
}

.page-hero.hero-hakkinda .hero-emoji,
.page-hero.hero-hakkinda h1,
.page-hero.hero-hakkinda p {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.page-hero.hero-hakkinda p {
  color: rgba(255, 255, 255, 0.88);
}

/* ==========================================
   PATTERN B DESTEK SINIFLARI
   ========================================== */
.subcategory-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(46, 204, 113, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.subcategory-title span {
  font-size: 1.8rem;
}

.animal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.animal-card .card-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.animal-card .card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.animal-card .card-latin {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.animal-card .card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.card-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(46, 204, 113, 0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
}

.page-hero-emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

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

/* ==========================================
   TEHLIKE ETİKETLERİ
   ========================================== */
.danger-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.danger-badge.kritik {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.danger-badge.tehlike {
  background: rgba(243, 156, 18, 0.2);
  color: #f39c12;
  border: 1px solid rgba(243, 156, 18, 0.3);
}

.danger-badge.hassas {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

/* ==========================================
   QUIZ STILLERI
   ========================================== */
.quiz-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.quiz-progress {
  margin-bottom: 2rem;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  transition: width 0.3s ease;
  width: 0%;
}

.quiz-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-primary);
  font-size: 0.95rem;
  text-align: left;
  font-family: var(--font);
}

.quiz-option:hover:not(.disabled) {
  background: rgba(46, 204, 113, 0.1);
  border-color: var(--accent);
}

.quiz-option.correct {
  background: rgba(46, 204, 113, 0.2);
  border-color: var(--accent);
  color: var(--accent);
}

.quiz-option.wrong {
  background: rgba(231, 76, 60, 0.2);
  border-color: var(--danger);
  color: var(--danger);
}

.quiz-option.disabled {
  cursor: not-allowed;
  opacity: 0.7;
}


/* ==========================================
   İLETİŞİM FORMU STİLLERİ
   ========================================== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--accent-glow);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.about-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.about-card .about-icon,
.about-card .about-card-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================
   İLETİŞİM BÖLÜMÜ
   ========================================== */
.contact-section {
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.contact-section p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-submit-btn {
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  align-self: flex-start;
}

.contact-submit-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--accent-glow);
}

.contact-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-status {
  margin-top: 1rem;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  font-size: 0.95rem;
}

.contact-status.success {
  padding: 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.contact-status.error {
  padding: 1rem;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ==========================================
   QUIZ INLINE JS SINIFLARI
   ========================================== */
.quiz-question {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.quiz-question-number {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.quiz-question-text {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.quiz-score {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
}

.quiz-feedback {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: var(--bg-secondary);
  line-height: 1.6;
}

.quiz-feedback p {
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.feedback-correct {
  color: var(--accent);
  font-weight: 700;
}

.feedback-wrong {
  color: var(--danger);
  font-weight: 700;
}

.quiz-next-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.quiz-next-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Quiz Sonuç Ekranı */
.quiz-results {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.quiz-results .results-emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.quiz-results h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.results-score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin: 1rem 0;
}

.results-percentage {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.results-message {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.results-summary {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.results-summary p {
  color: var(--text-secondary);
}

.quiz-restart-btn {
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.quiz-restart-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Quiz Kategori Seçim Ekranı */
.quiz-select-panel {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 520px;
  margin: 0 auto;
}

.quiz-select-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: center;
}

.quiz-select-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.quiz-select-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition);
  border-left: 3px solid transparent;
  user-select: none;
}

.quiz-select-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.quiz-select-item.selected {
  background: rgba(46, 204, 113, 0.08);
  border-left-color: var(--accent);
}

.quiz-select-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}

.quiz-select-item input[type="radio"]:checked {
  border-color: var(--accent);
}

.quiz-select-item input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.quiz-select-item .cat-emoji {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.quiz-select-item .cat-name {
  font-weight: 600;
  font-size: 0.95rem;
  flex: 1;
}

.quiz-select-item .cat-count {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  flex-shrink: 0;
}

.quiz-start-btn {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.quiz-start-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.quiz-back-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.quiz-back-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .quiz-select-panel {
    padding: 1.25rem;
  }

  .quiz-select-item {
    padding: 0.6rem 0.75rem;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .quiz-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================
   ÖZEL KOLEKSİYONLAR
   ========================================== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.collection-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
  cursor: pointer;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.collection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform var(--transition);
}

.collection-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  color: var(--text-primary);
}

.collection-card:hover::before {
  transform: scaleY(1);
}

.collection-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 204, 113, 0.08);
  border-radius: var(--radius-sm);
}

.collection-info {
  flex: 1;
  min-width: 0;
}

.collection-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.collection-info p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.collection-info .collection-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: rgba(46, 204, 113, 0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Koleksiyon hero gradient sınıfları */
.page-hero.hero-hizli {
  background: linear-gradient(135deg, #1a1a2e 0%, #2e2d0a 50%, #1a1a2e 100%);
}
.page-hero.hero-yavas {
  background: linear-gradient(135deg, #1a1a2e 0%, #1b3a2b 50%, #1a1a2e 100%);
}
.page-hero.hero-uzun-yasam {
  background: linear-gradient(135deg, #1a1a2e 0%, #1a2e3e 50%, #1a1a2e 100%);
}
.page-hero.hero-zehirli {
  background: linear-gradient(135deg, #1a1a2e 0%, #3e1a1a 50%, #2e1a2e 100%);
}
.page-hero.hero-buz-devri {
  background: linear-gradient(135deg, #1a1a2e 0%, #0a2e3e 50%, #1a2e3e 100%);
}
.page-hero.hero-amazon {
  background: linear-gradient(135deg, #1a1a2e 0%, #0a2e0a 50%, #1a2e1a 100%);
}
.page-hero.hero-kutup {
  background: linear-gradient(135deg, #1a1a2e 0%, #0a1e3e 50%, #1a2e3e 100%);
}
.page-hero.hero-afrika {
  background: linear-gradient(135deg, #1a1a2e 0%, #3e2e0a 50%, #2e1a0a 100%);
}
.page-hero.hero-okyanus {
  background: linear-gradient(135deg, #1a1a2e 0%, #0a1a3e 50%, #0a2e3e 100%);
}
.page-hero.hero-goc {
  background: linear-gradient(135deg, #1a1a2e 0%, #1a2e2e 50%, #0a2e1a 100%);
}
.page-hero.hero-kamuflaj {
  background: linear-gradient(135deg, #1a1a2e 0%, #1a2e1a 50%, #2e2e0a 100%);
}
.page-hero.hero-zeki {
  background: linear-gradient(135deg, #1a1a2e 0%, #2e1a3e 50%, #1a1a3e 100%);
}
.page-hero.hero-gece {
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a2e 50%, #1a0a2e 100%);
}
.page-hero.hero-buyuk {
  background: linear-gradient(135deg, #1a1a2e 0%, #2e2e0a 50%, #3e1a0a 100%);
}
.page-hero.hero-kucuk {
  background: linear-gradient(135deg, #1a1a2e 0%, #1a3e2e 50%, #0a2e2e 100%);
}
.page-hero.hero-nesli-tukenen {
  background: linear-gradient(135deg, #1a1a2e 0%, #3e0a0a 50%, #2e1a1a 100%);
}

/* Koleksiyon kartları responsive */
@media (max-width: 768px) {
  .collection-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   BLOG LİSTELEME SAYFASI
   ========================================== */
.page-hero.hero-blog {
  background: url('assets/blog-hero.svg') center/cover no-repeat;
  position: relative;
}

.page-hero.hero-blog::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 46, 0.85) 100%);
  z-index: 0;
}

.page-hero.hero-blog .hero-emoji,
.page-hero.hero-blog h1,
.page-hero.hero-blog p {
  position: relative;
  z-index: 1;
}

.blog-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.blog-filter-btn {
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.blog-filter-btn:hover {
  background: rgba(46, 204, 113, 0.1);
  border-color: var(--accent);
  color: var(--text-primary);
}

.blog-filter-btn.active {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  font-weight: 600;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-header {
  padding: 2rem 1.5rem 1rem;
  text-align: center;
}

.blog-card-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.75rem;
}

.blog-card-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.blog-card-header .blog-card-latin {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
}

.blog-card-body {
  padding: 0 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 1.5rem;
}

.blog-card-category {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-card-category.kritik {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}

.blog-card-category.tehlike {
  background: rgba(243, 156, 18, 0.15);
  color: #f39c12;
}

.blog-card-category.hassas {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
}
.blog-card-category.genel {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
}

.blog-card-read {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}

.blog-card-read:hover {
  color: var(--accent-dark);
}

/* ==========================================
   MAKALE SAYFASI
   ========================================== */
.article-hero {
  padding: 8rem 2rem 3rem;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #3e1a0a 50%, #2e1a0a 100%);
}

.article-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

.article-hero-content {
  position: relative;
  z-index: 1;
}

.article-hero .hero-emoji {
  font-size: 5rem;
}

.article-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.article-hero-latin {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
  display: block;
  margin-bottom: 1rem;
}

.article-hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.article-hero-badge.kritik {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.article-hero-badge.tehlike {
  background: rgba(243, 156, 18, 0.2);
  color: #f39c12;
  border: 1px solid rgba(243, 156, 18, 0.3);
}

.article-hero-badge.hassas {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition);
}

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

.breadcrumb span {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* Article Content - 2 column layout */
.article-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 4rem 4rem;
}

/* Article Body */
.article-body h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(46, 204, 113, 0.2);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.article-section {
  margin-bottom: 1.5rem;
}

/* Fun Facts (expanded) */
.article-fun-facts {
  background: rgba(46, 204, 113, 0.05);
  border-left: 3px solid var(--accent);
  padding: 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 1rem;
}

.article-fun-facts h3 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.article-fun-facts ul {
  list-style: none;
  padding: 0;
}

.article-fun-facts li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.article-fun-facts li::before {
  content: '💡';
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

/* Sidebar - Quick Facts */
.article-sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
}

.article-quick-facts {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.article-quick-facts h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-fact-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-fact-item:last-child {
  border-bottom: none;
}

.quick-fact-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.quick-fact-value {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* Related Articles & İlgili İçerikler */
.related-articles,
.ilgili-icerikler {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem 4rem;
}

.ilgili-icerikler {
  padding: 3rem 2rem 4rem;
  max-width: 1400px;
}

.ilgili-icerikler h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(46, 204, 113, 0.2);
}

.ilgili-icerikler .related-card h4 {
  margin-bottom: 0.5rem;
}

.ilgili-icerikler .related-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.related-articles h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(46, 204, 113, 0.2);
}

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

.related-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
  color: var(--text-primary);
  display: block;
  position: relative;
  overflow: hidden;
}

.related-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.related-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  color: var(--text-primary);
}

.related-card:hover::before {
  transform: scaleX(1);
}

.related-card .related-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.related-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.related-card .related-latin {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
  display: block;
  margin-bottom: 0.75rem;
}

.related-card-link {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Modal Article Link */
.modal-article-link-container {
  margin-top: 1.25rem;
  text-align: center;
}

.modal-article-link {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.modal-article-link:hover {
  background: var(--accent-dark);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--accent-glow);
}

/* ==========================================
   BLOG / MAKALE RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .article-content {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 1024px) {
  .article-content {
    padding: 1.5rem 2.5rem 4rem;
  }

  .related-articles {
    padding: 0 2.5rem 4rem;
  }

  .breadcrumb {
    padding: 1rem 2.5rem;
  }

  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .article-hero h1 {
    font-size: 2rem;
  }

  .article-hero .hero-emoji {
    font-size: 3.5rem;
  }

  .article-content {
    padding: 1rem 1.5rem 3rem;
  }

  .related-articles {
    padding: 0 1.5rem 3rem;
  }

  .breadcrumb {
    padding: 1rem 1.5rem;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}
