/* Базовые стили */
body {
  font-family: 'Inter', sans-serif;
  background-color: #1B1B1B;
  color: #D8D0C1;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Шапка страницы */
.header {
  background-image: url('image/header-background.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 50px 0;
}



.title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
}

.minecraft-server-ip {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Основная секция с донатами */
.content {
  padding: 90px 150px;
  width: 100%;
}

.section-title {
  color: #F0C75E;
  margin-bottom: 20px;
}

.alert {
  background-color: #2B2B2B;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

/* Карточки с донатами */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.card {
  background-color: #2B2B2B;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #D8D0C1;
  margin-top: 0;
}

.card ul {
  list-style-type: square;
  padding-left: 20px;
}

/* Особый стиль для премиум-аккаунта */
.card.premium {
  background: linear-gradient(to right, #F0C75E, transparent);
  color: #1B1B1B;
}

/* Контактная информация */
.contact-info {
  margin-top: 50px;
  text-align: center;
}

.contact-info strong {
  color: #F0C75E;
}

/* Подвал страницы */
#footer {
  padding: 20px 150px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#footer p {
  color: #746A5A;
  font-size: 17px;
}

#footer p span {
  color: #D8D0C1;
}

/* Responsive design */
@media screen and (max-width: 1625px) {
  .content {
    padding: 90px;
  }
}

@media screen and (max-width: 819px) {
  .content {
    padding: 50px 30px;
  }
}

@media screen and (max-width: 564px) {
  #footer {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}