/* === ANA YERLEŞİM VE KARTLAR  === */

.container {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding: 24px;
  margin: auto;
}

.card {
  background: rgba(30, 25, 45, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px #0008;

  padding: 28px;
  transition: box-shadow 0.4s, background 0.4s;
}

.card:hover {
  background: rgba(30, 25, 45, 0.7);
  box-shadow: 0 0 25px #a855f744, 0 12px 45px #000a;
}

.section {
  margin-top: 28px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffffff22, transparent);
  margin: 24px 0;
}

/* Header Kartı  */
header.card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 48px 28px;
  text-align: center;
  background: rgba(30, 25, 45, 0.55);
}

.header-inner {
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;

  /* Pill'ler de buzlu cam */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #efeaf7;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
  opacity: 0.7;
  font-size: 12px;
  text-align: center;
  margin: 24px 0;
}
