/* ==========================================================
   🌌 Neo-Aero Digital UI Theme — Style Definition (v1.1)
   Designed by ChatGPT for Mert Belder
   ========================================================== */

/* General Layout - Fullscreen Takeover */
.neo-aero {
  --bg-dark: #040911;
  --bg-card: rgba(10, 20, 35, 0.85);
  --accent: #00aaff;
  --text-color: #e8f4ff;
  --border-glow: rgba(0, 174, 255, 0.15);

  /* --- TAM EKRAN STİLİ --- */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999; /* Diğer tüm elementlerin üzerinde olmasını sağlar */
  
  background: radial-gradient(circle at 20% 20%, #0b1a2b, #040911);
  color: var(--text-color);
  font-family: "Poppins", "Inter", sans-serif;
  letter-spacing: 0.2px;
  line-height: 1.5;
  padding: 20px;
  box-sizing: border-box;

  /* --- İÇERİĞİ ORTALAMA --- */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Dikeyde ortalar */
  align-items: center;    /* Yatayda ortalar */
  overflow-y: auto; /* İçerik ekrana sığmazsa kaydırma çubuğu çıkar */
}

/* Card Elements */
.neo-aero .card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 25px;
  margin: 12px 0; /* Artık sadece dikeyde margin yeterli */
  box-shadow: 0 0 30px rgba(0, 174, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  width: 100%;
  max-width: 700px;
}
.neo-aero .card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 35px rgba(0, 174, 255, 0.4);
  border-color: rgba(0, 174, 255, 0.4);
}

/* Buttons */
.neo-aero .btn {
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--border-glow);
  background: rgba(10, 20, 35, 0.9);
  color: var(--text-color);
  width: 100%;
  cursor: pointer;
  transition: 0.2s ease;
  font-size: 15px;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 600;
}
.neo-aero .btn:hover {
  background: rgba(0, 174, 255, 0.12);
  box-shadow: 0 0 12px rgba(0, 174, 255, 0.25);
}
.neo-aero .btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Inputs */
.neo-aero textarea {
  background: rgba(5, 10, 20, 0.85);
  color: var(--text-color);
  border: 1px solid rgba(0, 174, 255, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  width: 100%;
  transition: 0.2s ease;
  box-sizing: border-box;
  font-family: inherit;
  margin-top: 10px;
  min-height: 140px;
}
.neo-aero textarea:focus {
  border-color: rgba(0, 174, 255, 0.6);
  box-shadow: 0 0 8px rgba(0, 174, 255, 0.3);
}

/* Headings */
.neo-aero h2, .neo-aero h3 {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-top: 0;
  font-size: 1.3em;
}

/* Result Area Specifics */
.neo-aero #aqe-result-content p {
    margin: 8px 0;
    font-size: 1em;
}
.neo-aero #aqe-result-content .score-display {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--accent);
    text-align: center;
    margin: 15px 0;
    animation: neonPulse 2.5s infinite ease-in-out;
}

/* YÜKLEME ANİMASYONU */
.neo-aero .aqe-loader {
    border: 4px solid var(--border-glow);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto 0;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animations */
@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 5px rgba(0, 174, 255, 0.4); }
  50% { text-shadow: 0 0 20px rgba(0, 174, 255, 0.8); }
}

/* Selection */
.neo-aero ::selection {
  background: rgba(0, 174, 255, 0.3);
  color: white;
}

/* Mobil Uyumluluk */
@media (max-width: 600px) {
    .neo-aero {
        padding: 10px;
    }
    .neo-aero .card {
        padding: 20px;
    }
    .neo-aero h3 {
        font-size: 1.1em;
    }
    .neo-aero .btn {
        padding: 12px;
        font-size: 14px;
    }
}

