/* Общие настройки */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

/* Фоновое изображение */
body {
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1920&q=80') no-repeat center center fixed;
  background-size: cover;
}

/* Затемнённый слой */
.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Контейнер */
.container {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 30px 40px;
  border-radius: 20px;
  text-align: center;
  color: white;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Заголовок */
.header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.header p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Кнопки соцсетей */
.socials {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: background 0.3s ease;
}

/* Цвета для каждой соц.сети */
.fb { background-color: #3b5998; }
.ig { background-color: #e1306c; }
.tt { background-color: #000000; }
.google { background-color: #db4437; }
.tg { background-color: #0088cc; }

.btn:hover {
  opacity: 0.85;
}
