.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(90deg, #00eaff, #3a9bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

main img {
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}
.ar {
  display: none !important;
}

.sansita-swasheduniquifier {
  font-family: "Sansita Swashed", system-ui;
  color: #3cc7ff;
  font-size: large;
  font-weight: 600;

  text-shadow: 0 0 6px #3cc7ff, 0 0 14px #6a66ff,
    0 0 22px rgba(60, 199, 255, 0.6);
}
nav {
  height: 50px;
  display: flex;
  padding-inline: 30px;
  padding-block: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* حد زجاجي خفيف */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 10000;
}

main {
  height: 100vh;
  width: 100%;
  background-image: url(../images/background-dark.jpg);
  background-size: cover;
  background-position: center;
  padding-top: 60px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 30px;
}
.nav-menu a {
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  opacity: 0.9;
}
.nav-menu a:hover {
  color: #00d9ff;
  opacity: 1;
  cursor: pointer;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
/* ===== DROPDOWN BASE ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  padding-top: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* ===== THE GLASS BOX ===== */
.glass-bg {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  overflow: visible;
  width: max-content;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  pointer-events: auto;
}

.glass-bg a {
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

.nav-dropdown:hover .glass-bg a {
  animation: assemble 0.6s forwards ease-out;
}

.glass-bg a:nth-child(1) {
  animation-delay: 0.05s;
  --x: -60px;
  --y: -40px;
  --r: -120deg;
}
.glass-bg a:nth-child(2) {
  animation-delay: 0.12s;
  --x: 70px;
  --y: -50px;
  --r: 160deg;
}

@keyframes assemble {
  0% {
    opacity: 0;
    transform: translate(var(--x), var(--y)) rotate(var(--r)) scale(0.4);
    filter: blur(12px);
  }
  70% {
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

.login-btn {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.1);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.login-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.4);
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}

.section-1 {
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* حد زجاجي خفيف */

  margin-top: 30px;
  padding: 30px;
  border-radius: 30px;
  text-align: center;
}

.card {
  min-width: 250px;
  height: 280px;
  background: rgba(255, 255, 255, 0.08); /* glass */
  border-radius: 32px;
  padding: 3px;
  position: relative;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow: 0 0 25px rgba(0, 200, 255, 0.18);
  transition: all 0.5s ease-in-out;
}

/* === MAIL ICON === */
.card .mail {
  position: absolute;
  right: 2rem;
  top: 1.4rem;
  background: transparent;
  border: none;
}

.card .mail svg {
  stroke: #00eaff;
  stroke-width: 3px;
  transition: 0.25s ease;
}

.card .mail svg:hover {
  stroke: #009ac7;
}

/* === IMAGE CONTAINER === */
.card .profile-pic {
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  top: 3px;
  left: 3px;
  border-radius: 29px;
  z-index: 1;
  border: 0px solid transparent;
  overflow: hidden;

  transition: all 0.5s ease-in-out 0.2s, z-index 0.5s ease-in-out 0.2s;
}

.card .profile-pic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
  transition: all 0.5s ease-in-out 0s;
}

/* === BOTTOM PANEL === */
.card .bottom {
  position: absolute;
  bottom: 3px;
  left: 3px;
  right: 3px;

  background: rgba(0, 20, 40, 0.55); /* glass dark */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-radius: 29px;
  border: 1px solid rgba(0, 217, 255, 0.17);

  top: 80%;
  z-index: 2;

  box-shadow: inset 0 0 25px rgba(0, 217, 255, 0.15);

  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.card .bottom .content {
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 160px;
}

.card .bottom .content .name {
  display: block;
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: bold;
}

.card .bottom .content .about-me {
  display: block;
  font-size: 0.9rem;
  color: #c7f4ff;
  margin-top: 1rem;
}

/* === FOOTER (Likes + Author) === */
.card .bottom .bottom-bottom {
  position: absolute;
  bottom: 0.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* AUTHOR BUTTON */
.card .bottom .bottom-bottom .button {
  background: rgba(255, 255, 255, 0.85);
  color: #0078a0;
  border: none;
  border-radius: 20px;
  font-size: 0.65rem;
  padding: 0.4rem 0.7rem;
  backdrop-filter: blur(10px);

  box-shadow: 0 0 10px rgba(0, 217, 255, 0.25);
}

.card .bottom .bottom-bottom .button:hover {
  background: #00cfff;
  color: white;
}

/* === HOVER EFFECTS (unchanged animations) === */
.card:hover {
  border-top-left-radius: 55px;
}

/* Image turns to small circle */
.card:hover .profile-pic {
  width: 100px;
  height: 100px;
  aspect-ratio: 1;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  z-index: 3;

  border: 5px solid rgba(0, 220, 255, 0.8);
  box-shadow: 0 0 20px rgba(0, 220, 255, 0.4);
}

/* zoom the avatar preview */
.card:hover .profile-pic img {
  transform: scale(2.5);
  object-position: 0px 25px;
  transition-delay: 0.35s;
}

/* Slide up */
.card:hover .bottom {
  top: 20%;
  border-radius: 90px 29px 29px 29px;
  transition-delay: 0.2s;
}

/* === LIKE BOX (Glass + Blue) === */
.likes-box {
  display: flex;
  align-items: center;
  gap: 6px;

  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 6px 12px;

  border: 1px solid rgba(255, 255, 255, 0.22);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: 0.25s ease;
}

.likes-box svg {
  width: 20px;
  stroke: #ffffff;
  transition: 0.25s ease;
}

.likes-box:hover {
  background: rgba(0, 217, 255, 0.22);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.likes-box:hover svg {
  stroke: #00d9ff;
}

.likes-box span {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
}
.like-count {
  cursor: pointer;
}

.tracks {
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(16, 29, 58, 0.5),
    rgba(10, 18, 32, 0.5)
  );
}

.track {
  background: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* Hover Neon Effect */
.track:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.6); /* نيون أزرق */
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.4),
    /* لمعة نيون */ 0 6px 20px rgba(0, 0, 0, 0.6); /* شادو ناعم */
}

 h2  {
  position: relative;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}
 h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #1dd3ff, #3a9bff);
  border-radius: 10px;
}

.Experts {
  background: radial-gradient(
    circle at top center,
    #12223a 0%,
    #0b1528 40%,
    #050a16 100%
  );
  box-shadow: inset 0 0 80px rgba(0, 200, 255, 0.08);
}

.profile-pic-human {
  width: 150px;   /* خليه أي مقاس انت عايزه */
  height: 150px;  /* لازم نفس القيمة = مربع */
  border-radius: 50%;
  overflow: hidden;
}

.profile-pic-human img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* أهم خطوة */
}
h5{
  color: rgb(45, 45, 45);
}


.profile-btn {
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  color: #dce7ff;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s ease;
}

.profile-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-3px);
}


.site-footer {
  background: #0a0f1d;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00e7ff, #1d8fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s;
}

.footer-links li a:hover {
  color: #00e7ff;
  text-shadow: 0 0 6px rgba(0,231,255,0.8);
}

.copy {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-top: 10px;
}

.copy span {
  color: #00e7ff;
  font-weight: 600;
}
