a.auth-button{
    display: block;
    font-size: 1.1em;
    width:140px;
    text-decoration:none;
    text-align:center;
    font: bold 14px arial;
    text-transform: uppercase;
    padding: 10px 15px;
    margin: 20px auto;
    color: #ccc;
    background-color: #a675b3;
    background-image: linear-gradient(top, #888 0%, #555 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #888), color-stop(1, #555));
    background-image: -moz-linear-gradient(top, #888 0%, #555 100%);
    background-image: -o-linear-gradient(top, #888 0%, #555 100%);
    border: none;
    border-radius: 3px;
    text-shadow: 0px -1px 0px #000;
    box-shadow: 0px 1px 0px #666,0px 5px 0px #444,0px 6px 6px rgba(0, 0, 0, .6);
    -webkit-transition: ease .15s all;
    -moz-transition: ease .15s all;
    -o-transition: ease .15s all;
    transition: ease .15s all;
    -webkit-animation: none;
     -moz-animation: none;
     -o-animation: none;
      animation: none;
    }
    a.auth-button:hover, a.auth-button:focus{
    -webkit-animation: linear 1.2s light infinite;
    -moz-animation: linear 1.2s light infinite;
    -o-animation: linear 1.2s light infinite;
    animation: linear 1.2s light infinite;
    }
    @-webkit-keyframes light{
    0%   { color: #ddd; text-shadow: 0px -1px 0px #000; }
    50%   { color: #fff; text-shadow: 0px -1px 0px #444, 0px 0px 5px #ffd, 0px 0px 8px #fff; }
    100% { color: #ddd; text-shadow: 0px -1px 0px #000; }
    }
    @-moz-keyframes light{
    0%   { color: #ddd; text-shadow: 0px -1px 0px #000; }
    50%   { color: #fff; text-shadow: 0px -1px 0px #444, 0px 0px 5px #ffd, 0px 0px 8px #fff; }
    100% { color: #ddd; text-shadow: 0px -1px 0px #000; }
    }
    @-o-keyframes light{
    0%   { color: #ddd; text-shadow: 0px -1px 0px #000; }
    50%   { color: #fff; text-shadow: 0px -1px 0px #444, 0px 0px 5px #ffd, 0px 0px 8px #fff; }
    100% { color: #ddd; text-shadow: 0px -1px 0px #000; }
    }
    @keyframes light{
    0%   { color: #ddd; text-shadow: 0px -1px 0px #000; }
    50%   { color: #fff; text-shadow: 0px -1px 0px #444, 0px 0px 5px #ffd, 0px 0px 8px #fff; }
    100% { color: #ddd; text-shadow: 0px -1px 0px #000; }
    }
    a.auth-button:active{
    color: #fff;
    text-shadow: 0px -1px 0px #444,0px 0px 5px #ffd,0px 0px 8px #fff;
    box-shadow: 0px 1px 0px #666,0px 2px 0px #444,0px 2px 2px rgba(0, 0, 0, .9);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -o-transform: translateY(3px);
    transform: translateY(3px);
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
    animation: none;
    }

.header__select--inner {
  border: 0;
  background: var(--white-color);
  height: 40px;
  padding: 0 3.3rem 0 1.8rem;
  
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-gray-color);
}

@media only screen and (min-width: 1200px) {
  .header__select--inner {
    padding: 0 4.3rem 0 2rem;
  }
}

.skiptranslate {
  display: none;
  height: 0;
}
.language__img {
  cursor: pointer;
}

body {
  top: 0 !important;
}

/* Guild Cards Styles */
.guild-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.guild-card--has-bot {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.guild-card--no-bot {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  opacity: 0.85;
}

.guild-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.guild-card__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.guild-card__content {
  flex: 1;
}

.guild-card__badge {
  margin-bottom: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bot-badge {
  background: rgba(100, 212, 72, 0.2);
  color: #90EE90;
  backdrop-filter: blur(5px);
}

.warning-badge {
  background: rgba(255, 193, 7, 0.2);
  color: #FFE082;
  backdrop-filter: blur(5px);
}

.guild-card__title {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700;
}

.guild-link {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.guild-link:hover {
  color: #FFD700;
  text-decoration: none;
}

.guild-card__title--no-link {
  color: white;
  opacity: 0.9;
}

.guild-card__stats {
  margin-bottom: 15px;
}

.stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.stat i {
  font-size: 12px;
}

.btn-guild {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: white;
  color: #667eea;
  border: none;
}

.btn-primary:hover {
  background: #FFD700;
  color: #667eea;
  transform: scale(1.05);
  text-decoration: none;
}

.btn-success {
  background: #64D448;
  color: white;
  border: none;
}

.btn-success:hover {
  background: #4CAF50;
  transform: scale(1.05);
  text-decoration: none;
}

.guild-card__icon {
  flex-shrink: 0;
}

.guild-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.guild-card:hover .guild-icon {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.8);
}

.guild-icon--grayscale {
  filter: grayscale(0.5);
}

/* Адаптивность */
@media (max-width: 768px) {
  .guild-card__inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .guild-card__stats {
    justify-content: center;
  }
  
  .guild-icon {
    width: 60px;
    height: 60px;
  }
  
  .guild-card__title {
    font-size: 16px;
  }
  
  .btn-guild {
    width: 100%;
    justify-content: center;
  }
}