html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-y: auto;
  height: 100%;
  perspective: 1px;
  transform-style: preserve-3d;
  font-family: 'Boldonse', system-ui;
  background: #0e0e13;
  color: white;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Логотип */
.logo-container {
  text-align: center;
  padding-top: 40px;
}

.logo-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.logo-btn img {
  max-width: 692px;
  width: 100%;
  height: auto;
}

/* Навигация */
.nav-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  position: relative;
  z-index: 10;
  margin: 0 auto 5px;
  padding: 20px 20px;
  margin-bottom: 0;
  order: 2;
}

.nav-btn {  
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: rgb(9, 0, 65);
  border: 3px solid #1100ff;
  border-radius: 20px;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s;
  min-width: 150px;
  text-align: center;
}

.nav-btn:hover {
  background-color: #6b6b6b; 
  transform: scale(1.02); 
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
}

.nav-btn:active {
  transform: scale(0.98); 
}

/* Основной контент */
.content-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

/* Информационный блок */
.info-block {
  background: rgba(149, 133, 255, 0.29);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 30px;
  margin: 130px 0;
  max-width: 1000px;  
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}

.info-title {
  font-size: 2rem;
  margin-bottom: 0px;
  line-height: 1.2;
  text-align: center;
}

.info-text {
  font-size: 1.5rem;
  line-height: 1.3;
  text-align: center;
}

/* Секция Discord */
.discord-section {
  text-align: center;
  margin: 80px 0;
  position: relative;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #FFF, #a83eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.discord-btn {
  display: inline-block;
  max-width: 200px;
  transition: transform 0.3s;
  margin: 20px 0;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9));
}

.discord-btn:hover {
  transform: scale(1.1);
  animation: discord-glow 1.5s infinite alternate;
}

@keyframes discord-glow {
  100% {
    filter: drop-shadow(0 0 20px rgba(0, 38, 255, 0.6));
  }
}

.discord-btn img {
  width: 100%;
  height: auto;
}

/* Таймер вайпа */
.wipe-countdown {
  background: linear-gradient(135deg, #2d1065 0%, #1a0b2e 100%);
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  border: 2px solid #7002ff;
  text-align: center;
  margin: 20px auto;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  font-family: 'Minecraft', 'Oswald', sans-serif;
}

.wipe-title {
  font-size: 2rem;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #FFF, #ea02ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wipe-timer {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 10px 0;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(40, 2, 255, 0.7);
}

.wipe-date {
  font-size: 1rem;
  opacity: 0.9;
  color: #dddddd;
}

/* Команда сервера */
.simple-team {
  background: #2d2d2d;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
}

.simple-team h2 {
  color: #f0f0f0;
  font-size: 24px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.team-member {
  background: #3a3a3a;
  border: 2px solid #555;
  border-radius: 8px;
  padding: 15px;
  width: 160px;
}

.team-member img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #4CAF50;
  object-fit: cover;
}

.team-member h3 {
  color: white;
  margin: 10px 0 5px;
  font-size: 18px;
}

.team-member p {
  color: #aaaaaa;
  font-size: 14px;
}

/* Twitch секция */
.simple-twitch {
  background: #47ff81c1;
  padding: 20px;
  text-align: center;
}

.simple-twitch h2 {
  color: white;
  font-size: 24px;
}

.twitch-placeholder {
  background: rgba(0, 0, 0, 0.555);
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.twitch-placeholder img {
  width: 80px;
  margin-top: 15px;
  transition: transform 0.3s;
}

.twitch-placeholder img:hover {
  transform: scale(1.1);
}

/* Адаптивность */
@media (max-width: 768px) {
  .nav-btn {
      font-size: 18px;
      padding: 8px 15px;
      min-width: 120px;
  }
  
  .info-title, .section-title {
      font-size: 2rem;
  }
  
  .info-text {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo-btn img {
      max-width: 300px;
  }
  
  .nav-container {
      flex-direction: column;
      align-items: center;
  }
  
  .info-block {
      padding: 20px;
  }
}

@media (max-width: 600px) {
  .team-member {
    width: 120px;
    padding: 10px;
  }
  
  .team-member img {
    width: 60px;
    height: 60px;
  }
}