.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6); /* тёмный полупрозрачный оверлей */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  backdrop-filter: blur(25px); /* блюр внутри модального окна */
  -webkit-backdrop-filter: blur(12px); /* для Safari */
  padding: 40px 50px;
  border-radius: 14px;
  text-align: center;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  max-width: 400px;
  width: 90%;
}

.modal-logo {
  width: 150px;
  margin-bottom: 20px;
}

.modal-content h2 {
  font-size: 22px;
  margin-bottom: 30px;
  color: #ffffff;
}

.steam-login-button {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.steam-login-button img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

.steam-login-button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.head-login-modal {
    position: relative;
    margin-left: 60px;
    padding: 5px 15px;
    height: 30px;
    line-height: 30px;
    border-radius: 10px;
    background: linear-gradient(to right, #2af599 20%, #0DBBDD 100%);
    color: #fff;
    font-size: 14px;
    transition: all .3s ease;
    font-family: "SLUP-Heavy";
    text-shadow: 0 4px 5px rgba(0, 0, 0, .25);
    margin-right: 30px;
    display: flex;
    letter-spacing: 2px;
    justify-content: center;
}