/* Kidlio Genel Stilleri */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Renk Paleti - Modern ve Çocuk Dostu */
  --primary-color: #6b78f0;
  --primary-dark: #5b6ae8;
  --primary-light: #8b9cf8;
  --secondary-color: #a88ef8;
  --accent-color: #f59e0b;
  --success-color: #10b981;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-card: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

/* Gece Modu (Dark Mode) - Koyu Mor/Lacivert Tonları */
html.dark-loading,
body.dark {
  --primary-color: #8b9cf8;
  --primary-dark: #6b78f0;
  --primary-light: #a5b4fc;
  --secondary-color: #c4b5fd;
  --accent-color: #fbbf24;
  --success-color: #34d399;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-light: #94a3b8;
  --bg-primary: #120e38;
  --bg-secondary: #0c0928;
  --bg-card: #1e1450;
  --border-color: #4338ca;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.6);
}

/* Theme Toggle Button */
.theme-toggle {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.15rem;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.theme-toggle:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border-color: rgba(255, 255, 255, 0.25);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.theme-toggle .icon-moon {
  display: none;
}

body.dark .theme-toggle {
  background: linear-gradient(
    135deg,
    rgba(129, 140, 248, 0.3) 0%,
    rgba(148, 112, 245, 0.2) 100%
  );
  border-color: rgba(129, 140, 248, 0.2);
}

body.dark .theme-toggle:hover {
  background: linear-gradient(
    135deg,
    rgba(129, 140, 248, 0.4) 0%,
    rgba(148, 112, 245, 0.3) 100%
  );
  border-color: rgba(129, 140, 248, 0.35);
}

body.dark .theme-toggle .icon-sun {
  display: none;
}

body.dark .theme-toggle .icon-moon {
  display: flex;
}

html {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #78a9eb;
}

html.dark-loading,
html:has(body.dark) {
  background: #060518;
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

/* Modern Thin Scrollbar - Tamamen transparent */
*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: transparent !important;
}

*::-webkit-scrollbar-track {
  background-color: transparent !important;
}

*::-webkit-scrollbar-track-piece {
  background-color: transparent !important;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(100, 100, 150, 0.3);
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(100, 100, 150, 0.5);
}

*::-webkit-scrollbar-corner {
  background-color: transparent !important;
}

*::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

*::-webkit-resizer {
  background-color: transparent !important;
}

/* Firefox için thin scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(100, 100, 150, 0.3) transparent;
}

/* Dark mode scrollbar - koyu temaya uygun */
body.dark *::-webkit-scrollbar {
  background-color: transparent !important;
}

body.dark *::-webkit-scrollbar-track {
  background-color: transparent !important;
}

body.dark *::-webkit-scrollbar-track-piece {
  background-color: transparent !important;
}

body.dark *::-webkit-scrollbar-thumb {
  background-color: rgba(107, 120, 240, 0.4);
}

body.dark *::-webkit-scrollbar-thumb:hover {
  background-color: rgba(107, 120, 240, 0.6);
}

body.dark *::-webkit-scrollbar-corner {
  background-color: transparent !important;
}

body.dark *::-webkit-resizer {
  background-color: transparent !important;
}

body.dark * {
  scrollbar-color: rgba(107, 120, 240, 0.4) transparent;
}

body {
  font-family:
    "Quicksand",
    "Nunito",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  /* Light Mode - Peygamberçiçeği Mavisi (8-stop gradient) */
  background: linear-gradient(
    160deg,
    #a8d0fc 0%,
    #98c3f8 14%,
    #88b6f4 28%,
    #76a5f0 42%,
    #6495ed 56%,
    #5a8ae3 70%,
    #5080d5 84%,
    #4268c0 100%
  );
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

/* Body Pattern Overlay - Light Mode (Gündüz Teması - Minimal) */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
        /* Sade, hafif parçacık deseni - dark mode ile aynı aralık */ radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 1.5px,
    transparent 1.5px
  );
  background-size: 28px 28px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 0;
}

/* Light mode - Hafif bulut efekti (sadece üstte) */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse 60% 30% at 15% 5%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 50% 25% at 85% 8%,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 45%
    );
  pointer-events: none;
  z-index: 0;
}

/* Dark Mode - Derin Gece Moru (8-stop gradient) */
body.dark {
  background: linear-gradient(
    160deg,
    #1e1450 0%,
    #1a1248 14%,
    #161040 28%,
    #120e38 42%,
    #0f0b30 56%,
    #0c0928 70%,
    #090720 84%,
    #060518 100%
  );
}

body.dark::before {
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

body.dark::after {
  background: none;
}

.content-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px 20px;
  background: transparent;
  width: 100%;
  flex-shrink: 0;
  z-index: 100;
  position: relative;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
  animation: float 3s ease-in-out infinite;
}

/* Logo Float Animation - header-top-row içinde absolute positioned logo için */
@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.header-top-row .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 2rem;
}

/* Ana İçerik */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 12px rgba(107, 120, 240, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(107, 120, 240, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--border-color);
}

/* Alt Bilgi */
.footer {
  text-align: center;
  padding: 16px 20px;
  /* Light mode - beyaz yazı, gölgeli okunabilir */
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 600;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  width: 100%;
  flex-shrink: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

body.dark .footer {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* Sabit Footer Navigasyon */
.footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 1000;
}

.footer-nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 140px;
  justify-content: center;
}

.footer-nav-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 120, 240, 0.3);
}

.footer-nav-btn:active {
  transform: translateY(0);
}

.footer-nav-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.footer-nav-text {
  line-height: 1;
}

.footer-nav-double {
  flex: 1;
  max-width: 180px;
}

/* Tag */
.tagline {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 4px;
}


/* ========================================
   Content Area Decoration - Tüm sayfalarda kullanılır
   ======================================== */

.content-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Mini Güneşler - Gündüz parıltısı */
.content-blob-1,
.content-blob-2,
.content-blob-3 {
  position: absolute;
  border-radius: 50%;
  animation: mini-sun-glow 5s ease-in-out infinite;
}

.content-blob-1 {
  width: 18px;
  height: 18px;
  background: radial-gradient(
    circle,
    rgba(255, 240, 180, 0.6) 0%,
    rgba(255, 220, 130, 0.3) 50%,
    transparent 80%
  );
  box-shadow: 0 0 12px rgba(255, 220, 150, 0.4);
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.content-blob-2 {
  width: 14px;
  height: 14px;
  background: radial-gradient(
    circle,
    rgba(255, 245, 190, 0.5) 0%,
    rgba(255, 225, 140, 0.25) 50%,
    transparent 80%
  );
  box-shadow: 0 0 10px rgba(255, 225, 160, 0.35);
  top: 25%;
  right: 12%;
  animation-delay: 1.5s;
}

.content-blob-3 {
  width: 12px;
  height: 12px;
  background: radial-gradient(
    circle,
    rgba(255, 240, 170, 0.45) 0%,
    rgba(255, 215, 120, 0.2) 50%,
    transparent 80%
  );
  box-shadow: 0 0 8px rgba(255, 230, 170, 0.3);
  bottom: 22%;
  left: 8%;
  animation-delay: 3s;
}

/* Mini Güneş Animasyonu */
@keyframes mini-sun-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.9;
  }
}

/* Confetti */
.content-blob-4,
.content-blob-5,
.content-blob-6 {
  position: absolute;
  border-radius: 3px;
  animation: confetti-float 8s ease-in-out infinite;
}

.content-blob-4 {
  width: 14px;
  height: 14px;
  background: rgba(251, 191, 36, 0.55);
  top: 18%;
  right: 14%;
  transform: rotate(45deg);
  animation-delay: 0s;
}

.content-blob-5 {
  width: 10px;
  height: 18px;
  background: rgba(52, 211, 153, 0.5);
  bottom: 18%;
  right: 10%;
  transform: rotate(-15deg);
  animation-delay: 2s;
}

.content-blob-6 {
  width: 16px;
  height: 10px;
  background: rgba(107, 120, 240, 0.45);
  bottom: 30%;
  left: 12%;
  transform: rotate(30deg);
  animation-delay: 4s;
}

/* Confetti Float Animation */
@keyframes confetti-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }
  25% {
    transform: translateY(-15px) rotate(45deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-5px) rotate(90deg);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-20px) rotate(135deg);
    opacity: 0.6;
  }
}

/* Dark Mode - Mini güneşleri gizle, confetti kalsın */
body.dark .content-blob-1,
body.dark .content-blob-2,
body.dark .content-blob-3 {
  display: none;
}
body.dark .content-blob-4 {
  background: rgba(251, 191, 36, 0.55);
}
body.dark .content-blob-5 {
  background: rgba(52, 211, 153, 0.5);
}
body.dark .content-blob-6 {
  background: rgba(129, 140, 248, 0.5);
}


/* ========================================
   Body Decoration - Tüm sayfalarda kullanılır
   ======================================== */

.body-decoration {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Bulut Şekilleri - Gündüz teması */
.body-decoration::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 60px;
  border-radius: 60px 60px 50px 50px;
  background: radial-gradient(
    ellipse at 30% 40%,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 80%
  );
  top: 3%;
  left: 2%;
  animation: float-shape-1 15s ease-in-out infinite;
  filter: blur(1px);
}

.body-decoration::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 50px;
  border-radius: 50px 50px 40px 40px;
  background: radial-gradient(
    ellipse at 40% 35%,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 80%
  );
  top: 8%;
  right: 2%;
  animation: float-shape-2 18s ease-in-out infinite;
  filter: blur(1px);
}

/* Blob Şekilleri - Yumuşak bulut/balon hissi */
.body-decoration .blob-1 {
  position: absolute;
  width: 80px;
  height: 50px;
  border-radius: 50px;
  background: radial-gradient(
    ellipse at 35% 35%,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.15) 60%,
    transparent 90%
  );
  top: 28%;
  left: 18%;
  animation: float-shape-3 12s ease-in-out infinite;
}

.body-decoration .blob-2 {
  position: absolute;
  width: 70px;
  height: 45px;
  border-radius: 45px;
  background: radial-gradient(
    ellipse at 40% 30%,
    rgba(255, 255, 255, 0.38) 0%,
    rgba(255, 255, 255, 0.12) 60%,
    transparent 90%
  );
  top: 55%;
  right: 20%;
  animation: float-shape-4 14s ease-in-out infinite;
}

/* Küçük Parıltı Noktaları - Güneş ışığı hissi */
.body-decoration .dot-1 {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 240, 200, 0.6) 50%,
    transparent 80%
  );
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  top: 38%;
  left: 25%;
  animation: sparkle 4s ease-in-out infinite;
}

.body-decoration .dot-2 {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 245, 210, 0.55) 50%,
    transparent 80%
  );
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
  top: 65%;
  right: 28%;
  animation: sparkle 5s ease-in-out infinite 1s;
}

/* Mini Güneş Parıltıları */
.body-decoration .star-1 {
  position: absolute;
  width: 26px;
  height: 26px;
  top: 18%;
  right: 32%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 245, 200, 0.75) 0%,
    rgba(255, 220, 150, 0.4) 50%,
    transparent 80%
  );
  box-shadow: 0 0 20px rgba(255, 230, 170, 0.5);
  animation: sun-glow 5s ease-in-out infinite;
}

/* Güneş parlaklık animasyonu */
@keyframes sun-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* Sparkle Animasyonu - Gündüz parıltısı */
@keyframes sparkle {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* Float Animasyonları */
@keyframes float-shape-1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-15px) rotate(5deg) scale(1.05);
  }
}

@keyframes float-shape-2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-12px) rotate(-5deg) scale(1.03);
  }
  66% {
    transform: translateY(-8px) rotate(3deg) scale(1.02);
  }
}

@keyframes float-shape-3 {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.08);
  }
}

@keyframes float-shape-4 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(5deg);
  }
  75% {
    transform: translateY(-6px) rotate(-5deg);
  }
}

/* ==========================================
   DARK MODE - Gece Gökyüzü Dekorasyonları
   ========================================== */

/* Dark mode - Bulutları gizle */
body.dark .body-decoration::before,
body.dark .body-decoration::after {
  display: none;
}

/* Hilal Ay Emoji - Sadece dark mode'da görünür */
.body-decoration .moon-emoji {
  display: none;
}

body.dark .body-decoration .moon-emoji {
  display: block;
  position: absolute;
  top: 12%;
  left: 22%;
  font-size: 2.2rem;
  opacity: 0.6;
  filter: drop-shadow(0 0 8px rgba(255, 250, 200, 0.4));
  animation: moon-float 6s ease-in-out infinite;
}

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

/* Yıldız Emojileri - Sadece dark mode'da görünür */
.body-decoration .star-emoji {
  display: none;
}

body.dark .body-decoration .star-emoji {
  display: block;
  position: absolute;
  opacity: 0.45;
  filter: drop-shadow(0 0 3px rgba(255, 255, 200, 0.5))
    drop-shadow(0 0 6px rgba(255, 250, 150, 0.3));
  animation: star-emoji-twinkle 4s ease-in-out infinite;
}

body.dark .body-decoration .star-emoji-1 {
  top: 8%;
  right: 15%;
  font-size: 0.9rem;
  animation-delay: 0s;
}

body.dark .body-decoration .star-emoji-2 {
  top: 22%;
  left: 42%;
  font-size: 0.7rem;
  animation-delay: 1.2s;
}

body.dark .body-decoration .star-emoji-3 {
  top: 35%;
  right: 8%;
  font-size: 0.8rem;
  animation-delay: 2.5s;
}

body.dark .body-decoration .star-emoji-4 {
  top: 52%;
  left: 12%;
  font-size: 0.65rem;
  animation-delay: 0.8s;
}

body.dark .body-decoration .star-emoji-5 {
  bottom: 38%;
  right: 35%;
  font-size: 0.75rem;
  animation-delay: 1.8s;
}

body.dark .body-decoration .star-emoji-6 {
  bottom: 25%;
  left: 8%;
  font-size: 0.85rem;
  animation-delay: 3s;
}

body.dark .body-decoration .star-emoji-7 {
  bottom: 15%;
  right: 22%;
  font-size: 0.7rem;
  animation-delay: 0.5s;
}

body.dark .body-decoration .star-emoji-8 {
  top: 68%;
  left: 38%;
  font-size: 0.6rem;
  animation-delay: 2s;
}

@keyframes star-emoji-twinkle {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(255, 255, 200, 0.4))
      drop-shadow(0 0 4px rgba(255, 250, 150, 0.2));
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
    filter: drop-shadow(0 0 4px rgba(255, 255, 200, 0.7))
      drop-shadow(0 0 8px rgba(255, 250, 150, 0.4));
  }
}

/* Dark mode - Blob'ları gizle */
body.dark .body-decoration .blob-1,
body.dark .body-decoration .blob-2 {
  display: none;
}

/* Dark mode - Dot'ları gizle */
body.dark .body-decoration .dot-1,
body.dark .body-decoration .dot-2 {
  display: none;
}

/* Dark mode - Star elementlerini gizle */
body.dark .body-decoration .star-1 {
  display: none;
}


/* ========================================
   Home Button - Tüm sayfalarda kullanılır
   ======================================== */

.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.header-top-row .home-button {
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.header-top-row .activities-button {
  flex-shrink: 0;
  position: absolute;
  left: 46px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.header-actions {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.header-top-row .theme-toggle {
  flex-shrink: 0;
}

.home-button,
.activities-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.home-button:hover,
.activities-button:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border-color: rgba(255, 255, 255, 0.25);
}

.home-button .icon-home,
.activities-button .icon-activities {
  font-size: 1.15rem;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark .home-button,
body.dark .activities-button {
  background: linear-gradient(
    135deg,
    rgba(129, 140, 248, 0.3) 0%,
    rgba(148, 112, 245, 0.2) 100%
  );
  border-color: rgba(129, 140, 248, 0.2);
}

body.dark .home-button:hover,
body.dark .activities-button:hover {
  background: linear-gradient(
    135deg,
    rgba(129, 140, 248, 0.4) 0%,
    rgba(148, 112, 245, 0.3) 100%
  );
  border-color: rgba(129, 140, 248, 0.35);
}

