/* Общие стили */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Контейнер-карточка */
.container {
  background: rgba(20, 20, 40, 0.9);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  width: 360px;
  max-width: 90%;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

/* Аватарка */
.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #4a3aff;
}

/* Ник */
h1 {
  font-size: 1.5rem;
  margin: 0;
  color: #ffffff;
}

/* Подпись */
.subtitle {
  font-size: 0.9rem;
  color: #cccccc;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Заголовки секций */
.section-title {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  font-weight: 600;
}

/* Стриминговые платформы */
.stream-platforms {
  display: flex;
  gap: 8px;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 3px 0;
}

.platform-icon {
  width: 20px;
  height: 20px;
}

.platform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #4a3aff;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.platform-btn i {
  font-size: 20px;
}

.platform-btn:hover {
  background: #6b5bff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Кнопки-ссылки */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  background: #4a3aff;
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.link-btn i {
  font-size: 20px;
  width: 24px;
  color: #ffffff;
  transition: transform 0.2s ease;
}

.boosty-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1); /* Делаем оранжевую иконку белой */
}

.link-btn:hover {
  background: #6b5bff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.link-btn:hover i,
.link-btn:hover .boosty-icon {
  transform: scale(1.1);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
    width: 300px;
  }

  .link-btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .platform-btn {
    width: 40px;
    height: 40px;
  }

  .platform-btn i {
    font-size: 18px;
  }
}

@media (max-width: 380px) {
  .stream-platforms {
    gap: 6px;
  }

  .platform-btn {
    width: 38px;
    height: 38px;
  }

  .platform-btn i {
    font-size: 16px;
  }
}

.rutube-icon {
  width: 28px;  /* больше стандартных 20px */
  height: 28px;
  margin-top: -5px;
}

.goodgame-icon {
  width: 28px;  /* больше стандартных 20px */
  height: 28px;
}
