:root {
  --bg-color: #f5efe6;
  --darker-bg: #e8e0d5;
  --text-color: #3d3d3d;
  --glass-color: rgba(245, 239, 230, 0.7);
  --border-color: rgba(255, 255, 255, 0.4);
  --shadow-color: rgba(149, 137, 117, 0.2);
}

/* Новый раздел для фонового изображения */
.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/фотки/shee.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -4;
  opacity: 0.9;
}

body {
  margin: 0;
  background-color: var(--bg-color);
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  position: relative;
}

/* Затемнение фона */
.background-darkener {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--darker-bg);
  z-index: -3;
}

/* Эффект матового стекла */
.glass-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 186, 7, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -2;
  pointer-events: none;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(28, 184, 19, 0.322) 0%,
    rgba(7, 213, 55, 0) 50%,
    rgba(88, 199, 23, 0.08) 100%
  );
}

/* Общий стеклянный стиль */
.glass {
  background: var(--glass-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 30px var(--shadow-color);
}

/* Верхняя часть */
.upper {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.upper-text {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Контент */
.content {
  padding: 100px 20px 80px;
  min-height: calc(100vh - 180px);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Карточка */
.glass-card {
  padding: 40px 50px;
  border-radius: 16px;
  max-width: 600px;
  text-align: center;
  background: rgba(245, 239, 230, 0.5);
  display: flex;
  flex-direction: column; /* Кнопки всегда в столбик */
  align-items: center; /* Выравнивание по центру */
  gap: 15px;
}

.glass-card h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.glass-card p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-weight: 300;
}

/* Кнопки */
.glass-btn {
  display: inline-block;
  padding: 12px 35px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  color: var(--text-color);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.glass-btn--secondary {
  margin-top: 10px;
}

/* Футер */
.footer {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
}

.footer-text {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  opacity: 0.8;
}
