
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 1rem;
}
.logo {
  height: 55px;        /* 🔧 Logotip aniq va ko‘rinadigan bo‘ladi */
  width: auto;
}
.nav-left {
  display: flex;              /* Logotip va menyuni yonma-yon qiladi */
  align-items: center;        /* Vertikal tekislikda markazga joylaydi */
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 12px;
}
.nav-button {
  padding: 8px 16px;
  border-radius: 12px;
  background: linear-gradient(145deg, #1f1f1f, #292929);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}
.nav-button:hover {
  background: linear-gradient(135deg, #66c0f4, #1b2838);
  box-shadow: 0 0 10px rgba(102, 192, 244, 0.6);
  transform: translateY(-1px);
}
.nav-links li a {
  color: white;
  text-decoration: none;
}
.language-switcher button {
  padding: 6px 12px;
  margin-left: 5px;
  background: #333;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
.steam-login-modern {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #1b2838, #66c0f4);
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  margin-left: 10px;
  transition: all 0.3s ease;
}
.steam-login-modern:hover {
  background: linear-gradient(135deg, #66c0f4, #1b2838);
  box-shadow: 0 0 15px #66c0f4;
}
.steam-icon {
  width: 24px;
  height: 24px;
  background-image: url('../img/steam_logo_white.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}
.skins-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem;
}
.skin-card {
  background: linear-gradient(145deg, #1c1c1c, #2c2c2c);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  width: 200px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: 0.3s ease;
}
.skin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #66c0f4;
}
.skin-card img {
  width: 100%;
  border-radius: 8px;
}
/* Profil tugmasi */
#profile-button {
display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1b2838, #66c0f4);
  color: white;
  padding: 6px 14px;
  font-weight: bold;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(102, 192, 244, 0.3);
  transition: all 0.3s ease;
}
#profile-button img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #66c0f4;
  box-shadow: 0 0 5px #66c0f4;
}
#profile-button:hover {
  background: linear-gradient(135deg, #66c0f4, #1b2838);
  box-shadow: 0 0 20px #66c0f4;
}
#profile-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #66c0f4;
  box-shadow: 0 0 5px #66c0f4;
}
#profile-name-text {
  white-space: nowrap;
  overflow: visible;
  max-width: none;
  font-weight: 600;
  display: inline;
}

/* Ochiladigan profil menyusi */
#profile-dropdown {
 position: absolute;
  right: 0;
  top: 100%;
  background: linear-gradient(145deg, #1b1f2b, #2a2f3c);
  margin-top: 10px;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  min-width: 240px;
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out;
}

#profile-dropdown p {
  margin: 10px 0;
  font-size: 14px;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
}
/* Har bir ikonkali qator */
#profile-dropdown p::before {
  margin-right: 6px;
}
#profile-dropdown button {
 background-color: #e53e3e;
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  margin-top: 15px;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
#profile-dropdown button:hover {
  background-color: #c53030;
}
/* Yashirish */
.hidden {
  display: none;
}
/* Animatsiya */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.language-switcher select {
  background: linear-gradient(135deg, #1b2838, #66c0f4);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(102, 192, 244, 0.3);
  transition: all 0.3s ease;
}
.language-switcher select:focus {
  outline: none;
  box-shadow: 0 0 15px #66c0f4;
}
.language-switcher option {
  background-color: #1b2838;
  color: white;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px; /* 🔧 Bu til va profil orasiga joy qo‘yadi */
}

