* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #FFFFFF;
    color: #121212;
  }
  
  .anasayfa {
    max-width: 700px;
    margin: 100px auto;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  
  h1 {
    font-size: 32px;
    color: #292D3A;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 16px;
    color: #121212;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .btn {
    display: inline-block;
    background-color: #4B3263;
    color: #FDFBF7;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
  }
  
  .btn:hover {
    background-color: #292D3A;
  }
  /* ANKET SAYFA STİLLERİ */
.anket-container {
    max-width: 700px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  
  .anket-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .anket-header h1 {
    font-size: 26px;
    color: #292D3A;
    margin-bottom: 10px;
  }
  
  .anket-header p {
    color: #666;
    margin-bottom: 15px;
  }
  
  .ilerleme-bar {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 10px;
    margin: 15px 0 8px;
  }
  
  .ilerleme-dolu {
    height: 10px;
    background: #4B3263;
    border-radius: 10px;
    transition: width 0.4s ease;
  }
  
  #soru-sayac {
    font-size: 13px;
    color: #999;
  }
  
  .soru-metni {
    font-size: 20px;
    color: #292D3A;
    margin-bottom: 25px;
    line-height: 1.5;
  }
  
  .secenekler {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .secenek {
    padding: 14px 20px;
    border: 2px solid #ddd;
    border-radius: 12px;
    background: white;
    font-size: 15px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    color: #121212;
  }
  
  .secenek:hover {
    border-color: #4B3263;
    background: #f9f7fc;
  }
  
  .secenek.secili {
    border-color: #4B3263;
    background: #4B3263;
    color: white;
  }
  
  .butonlar {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
  }
  
  .btn-geri {
    padding: 12px 30px;
    border: 2px solid #4B3263;
    border-radius: 50px;
    background: white;
    color: #4B3263;
    font-size: 15px;
    cursor: pointer;
  }
  
  .btn-geri:hover {
    background: #f0ebf8;
  }
  
  .btn-ileri {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    background: #4B3263;
    color: white;
    font-size: 15px;
    cursor: pointer;
    margin-left: auto;
  }
  
  .btn-ileri:hover {
    background: #292D3A;
  }
  /* SONUÇ SAYFA STİLLERİ */
.sonuc-container {
    max-width: 700px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  
  .sonuc-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .sonuc-header h1 {
    font-size: 28px;
    color: #292D3A;
    margin-bottom: 10px;
  }
  
  .profil-grafik {
    background: #f9f7fc;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
  }
  
  .profil-grafik h2 {
    font-size: 18px;
    color: #292D3A;
    margin-bottom: 20px;
  }
  
  .grafik {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .grafik-satir {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .grafik-etiket {
    width: 140px;
    font-size: 14px;
    color: #333;
    flex-shrink: 0;
  }
  
  .grafik-bar-bg {
    flex: 1;
    height: 18px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .grafik-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease;
  }
  
  .grafik-puan {
    width: 40px;
    font-size: 13px;
    color: #666;
    text-align: right;
  }
  
  .oneri-kutusu h3 {
    font-size: 17px;
    color: #292D3A;
    margin: 25px 0 15px;
  }
  
  .oneri-baslik {
    padding: 15px 20px;
    background: #f9f7fc;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .oneri-baslik h2 {
    font-size: 20px;
    color: #292D3A;
    margin-bottom: 8px;
  }
  
  .oneri-baslik p {
    color: #666;
    font-size: 14px;
    margin: 0;
  }
  
  .oyuncak-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .oyuncak-kart {
    background: #f9f7fc;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #e8e0f0;
  }
  
  .oyuncak-kart strong {
    display: block;
    color: #4B3263;
    margin-bottom: 6px;
    font-size: 14px;
  }
  
  .oyuncak-kart p {
    color: #666;
    font-size: 13px;
    margin: 0;
  }
  
  .aktivite-liste {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .aktivite-liste li {
    padding: 12px 15px;
    background: #f9f7fc;
    border-radius: 10px;
    color: #333;
    font-size: 14px;
  }
  
  .aktivite-liste li::before {
    content: "✓ ";
    color: #4B3263;
    font-weight: bold;
  }

  /* YAŞ SEÇİM */
.yas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
  }
  
  .yas-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    border: 2px solid #ddd;
    border-radius: 15px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    gap: 10px;
  }
  
  .yas-btn:hover {
    border-color: #4B3263;
    background: #f9f7fc;
    transform: translateY(-2px);
  }
  
  .yas-emoji {
    font-size: 36px;
  }
  
  .yas-label {
    font-size: 16px;
    font-weight: 700;
    color: #292D3A;
  }

  /* MOBİL UYUMLU */
@media (max-width: 600px) {

    .anket-container {
      margin: 15px;
      padding: 20px;
      border-radius: 15px;
    }
  
    .anasayfa {
      margin: 15px;
      padding: 20px;
    }
  
    h1 {
      font-size: 22px;
    }
  
    .yas-grid {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
  
    .yas-btn {
      padding: 18px 10px;
    }
  
    .yas-emoji {
      font-size: 28px;
    }
  
    .yas-label {
      font-size: 14px;
    }
  
    .soru-metni {
      font-size: 17px;
    }
  
    .secenek {
      padding: 12px 15px;
      font-size: 14px;
    }
  
    .butonlar {
      flex-direction: row;
      gap: 10px;
    }
  
    .btn-geri, .btn-ileri {
      padding: 12px 20px;
      font-size: 14px;
      width: 100%;
      text-align: center;
    }
  
    .oyuncak-grid {
      grid-template-columns: 1fr;
    }
  
    .sonuc-container {
      margin: 15px;
      padding: 20px;
    }
  
    .grafik-etiket {
      width: 100px;
      font-size: 12px;
    }
  
    .grafik-puan {
      font-size: 12px;
    }
  }

  /* SONUÇ SAYFASI - ÜRÜN KARTLARI */
.urun-kart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f7fc;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #e8e0f0;
    margin-bottom: 12px;
    gap: 15px;
  }
  
  .ana-urun {
    border: 2px solid #4B3263;
    background: #f3eff9;
  }
  
  .urun-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .urun-bilgi {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
  }
  
  .urun-etiket {
    font-size: 11px;
    color: #4B3263;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .urun-bilgi strong {
    font-size: 15px;
    color: #292D3A;
  }
  
  .urun-bilgi p {
    font-size: 13px;
    color: #666;
    margin: 0;
  }
  
  .urun-btn {
    display: inline-block;
    background: #4B3263;
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .urun-btn:hover {
    background: #292D3A;
  }
  
  .hediye-banner {
    margin-top: 25px;
    background: linear-gradient(135deg, #4B3263, #292D3A);
    color: white;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .hediye-banner span {
    font-size: 12px;
    opacity: 0.85;
  }
  
  /* MOBİL - ÜRÜN KARTLARI */
  @media (max-width: 600px) {
    .urun-kart {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .urun-btn {
      width: 100%;
      text-align: center;
    }
  
    .grafik-puan {
      font-size: 11px;
      width: 90px;
      text-align: right;
    }
  }
/* ANA SAYFA YENİ TASARIM */
.anasayfa-body {
  min-height: 100vh;
  background: #f9f7fc;
  position: relative;
  overflow: hidden;
  font-family: 'Nunito', Arial, sans-serif;
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
}

.blob1 {
  width: 500px;
  height: 500px;
  background: #4B3263;
  top: -100px;
  right: -100px;
}

.blob2 {
  width: 400px;
  height: 400px;
  background: #9b59b6;
  bottom: -100px;
  left: -100px;
}

.blob3 {
  width: 300px;
  height: 300px;
  background: #292D3A;
  top: 50%;
  left: 40%;
}

.anasayfa-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
}

.hero-sol {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo-badge {
  display: inline-block;
  background: white;
  color: #4B3263;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #e8e0f0;
  width: fit-content;
}

.hero-sol h1 {
  font-size: 48px;
  font-weight: 900;
  color: #292D3A;
  line-height: 1.1;
  margin: 0;
}

.vurgu {
  color: #4B3263;
  position: relative;
}

.hero-aciklama {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.ozellik-listesi {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ozellik {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333;
  font-weight: 600;
}

.ozellik-icon {
  font-size: 20px;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-baslat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4B3263, #292D3A);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  width: fit-content;
  box-shadow: 0 8px 25px rgba(75,50,99,0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.btn-baslat:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(75,50,99,0.5);
}

@keyframes pulse {
  0% { box-shadow: 0 8px 25px rgba(75,50,99,0.4); }
  50% { box-shadow: 0 8px 35px rgba(75,50,99,0.7); }
  100% { box-shadow: 0 8px 25px rgba(75,50,99,0.4); }
}

.alt-bilgi {
  font-size: 13px;
  color: #999;
  margin: 0;
}

/* SAĞ TARAF KARTLAR */
.hero-sag {
  display: flex;
  align-items: center;
  justify-content: center;
}

.kart-yigi {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.bilgi-karti {
  background: white;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  animation: karti-giris 0.5s ease both;
}

.bilgi-karti:hover {
  transform: translateX(8px);
}

.karti1 { animation-delay: 0.1s; }
.karti2 { animation-delay: 0.2s; }
.karti3 { animation-delay: 0.3s; }
.karti4 { animation-delay: 0.4s; border: 2px solid #4B3263; }

@keyframes karti-giris {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.karti-ikon {
  font-size: 28px;
  width: 50px;
  height: 50px;
  background: #f3eff9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bilgi-karti strong {
  display: block;
  color: #292D3A;
  font-size: 15px;
  font-weight: 700;
}

.bilgi-karti p {
  color: #888;
  font-size: 13px;
  margin: 0;
}

/* MOBİL */
@media (max-width: 768px) {
  .anasayfa-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 40px;
    min-height: auto;
  }

  .hero-sol h1 {
    font-size: 34px;
  }

  .btn-baslat {
    font-size: 16px;
    padding: 14px 24px;
  }
}
/* YAŞ BUTONU ALT YAZI */
.yas-alt {
  font-size: 11px;
  color: #aaa;
  margin-top: 3px;
}

.yas-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px;
  border: 2px solid #ddd;
  border-radius: 16px;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  gap: 6px;
}

.yas-btn:hover {
  border-color: #4B3263;
  background: #f9f7fc;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(75,50,99,0.15);
}

/* YZ ANİMASYON */
@keyframes yz-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.15); }
}

@keyframes yz-wiggle {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}

@keyframes yz-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes yz-progress {
  0% { width: 10%; }
  50% { width: 80%; }
  100% { width: 10%; }
}

.yz-yukleniyor {
  background: linear-gradient(135deg, #fef9ff, #f0f8ff);
  border: 2px dashed #c8a8e8;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  margin: 25px 0;
}

.yz-emoji {
  font-size: 32px;
  display: inline-block;
  animation: yz-bounce 0.8s ease-in-out infinite;
}

.yz-wiggle {
  font-size: 20px;
  display: inline-block;
  animation: yz-wiggle 1s ease-in-out infinite;
}

.yz-baslik {
  font-size: 22px;
  font-weight: 800;
  color: #4B3263;
  margin: 0 0 8px;
  animation: yz-pulse 1.5s ease-in-out infinite;
}

.yz-alt {
  font-size: 14px;
  color: #7a5fa0;
  margin: 0 0 16px;
  animation: yz-pulse 1.5s ease-in-out infinite;
  animation-delay: 0.3s;
}

.yz-progress-bar {
  background: #e8d8f5;
  border-radius: 50px;
  height: 12px;
  overflow: hidden;
  max-width: 280px;
  margin: 0 auto;
}

.yz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4B3263, #9b59b6);
  border-radius: 50px;
  animation: yz-progress 2s ease-in-out infinite;
}
