.account-container {
  margin: 120px auto 60px;
  max-width: 900px;
  padding: 32px 28px;

  text-align: center;
  animation: riseFade 1s ease forwards;
  opacity: 0;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,138,255,0.18);
  border-radius: 20px;

  backdrop-filter: blur(10px);
  box-shadow:
    0 0 24px rgba(231,84,255,0.25),
    inset 0 0 20px rgba(255,255,255,0.02);
}

@keyframes riseFade {
  from { opacity: 0; transform: translateY(40px) scale(0.95); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* Profil foto */
.pfp {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e754ff;
  box-shadow: 0 0 12px #e754ff, 0 0 28px #ff8aff50;
  animation: pfpFloat 3s ease-in-out infinite alternate;
}

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

/* Profil blok hareketi */
.profile-block {
  display: inline-block;
  text-align: center;
  animation: floatBlock 4s ease-in-out infinite alternate;
}

@keyframes floatBlock {
  0%   { transform: translateY(0px) scale(1); }
  50%  { transform: translateY(-12px) scale(1.02); }
  100% { transform: translateY(0px) scale(1); }
}

/* Text glow */
#profileName {
  color: #ff8aff;
  text-shadow: 0 0 6px #ff8aff, 0 0 12px #e754ff50;
  transition: 0.3s;
}

.profile-block:hover #profileName {
  text-shadow: 0 0 12px #ff8aff, 0 0 28px #ff66d8, 0 0 40px #ff8aff;
  transform: scale(1.05);
}

/* Email stil */
#profileEmail {
  color: #fff;
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* Butonlar */
.account-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.account-buttons .btn {
  background: linear-gradient(135deg, #e754ff, #ff8aff);
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.25s;
  box-shadow: 0 0 10px #ff8aff50;
}

.account-buttons .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px #ff66d8, 0 0 28px #e754ff50;
}

/* Navbar */
.nav a {
  color: #ff8aff;
  font-weight: bold;
  text-decoration: none;
  margin-left: 20px;
  font-size: 17px;
  transition: 0.2s;
  text-shadow: 0 0 5px #ff8aff50;
}

.nav a:hover {
  color: #ff66ff;
  text-shadow: 0 0 12px #ff8aff, 0 0 24px #e754ff;
  transform: translateY(-2px) scale(1.05);
}

.home-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.home-icon {
  width: 18px;
  height: 18px;
  color: #9fdcff;
  filter: drop-shadow(0 0 4px #ff66ff);
  transition: 0.2s ease;
}

.home-link:hover .home-icon {
  color: #c9eaff;
  filter: drop-shadow(0 0 6px #ff66ff);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .account-container {
    margin: 100px 20px 0;
  }

  .pfp {
    width: 120px;
    height: 120px;
  }

  .account-buttons .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

.change-password-container {
  margin-top: 40px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.change-password-container input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 16px;
}

.change-password-container button {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  background: linear-gradient(135deg, #e754ff, #ff8aff);
  color: #fff;
  transition: 0.25s;
}

.change-password-container button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px #ff66d8, 0 0 28px #e754ff50;
}

/* Responsive */
@media (max-width: 768px) {
  .change-password-container {
    margin: 20px 16px 0;
  }

  .change-password-container input,
  .change-password-container button {
    font-size: 15px;
  }

  .btn.danger {
  background: #ff3b3b;
  color: white;
}

.btn.danger:hover {
  background: #ff1f1f;
}

}
