/* Сброс минимальный */
* { box-sizing:border-box; margin:0; padding:0 }
html, body {
  height:100%;
  overflow:hidden; /* убираем скролл */
}

body {
  font-family:Inter, Arial, "Helvetica Neue", sans-serif;
  line-height:1.2;
  background-image: url('/img/bg.jpg');
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  height:100vh; /* на полный экран */
  width:100%;
  position:relative; /* важно для псевдоэлемента */
}

/* Размытие фона */
body::before {
  content:"";
  position:absolute;
  inset:0;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  transform: scale(1);
  z-index:-1;
}

.page {
  width:100%;
  max-width:1100px;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Карточка как ссылка */
.card {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:20px;
  text-decoration:none;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px) saturate(120%);
  border-radius:16px;
  padding:20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
  max-height:100%;
}

/* Анимация при наведении (десктоп) */
@media (hover:hover) and (pointer:fine) {
  .card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  }
}

.hero {
  width:100%;
  max-width:860px;
  height:auto;
  display:block;
  border-radius:12px;
  object-fit:contain;
  max-height:70vh;
}

.btn {
  display:inline-block;
  width: max-content;
  text-decoration:none;
  padding:14px 28px;
  border-radius:999px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.06em;
  background: linear-gradient(90deg, rgba(0,123,255,1), rgba(0,200,255,1));
  color:white;
  box-shadow: 0 6px 18px rgba(2,132,199,0.28);
  transition: transform .14s ease, box-shadow .14s ease, opacity .12s ease;
}

/* Эффекты кнопки */
.btn:active { transform:translateY(1px) }
.btn:hover { opacity:0.95 }

/* Адаптив */
@media (max-width:600px) {
  .card {
        border-radius: 0;
        box-shadow: none;
        height: 100%;
        padding: 0;
        justify-content: flex-start;
    }
  .btn {
    padding:12px 20px;
    position: absolute;
                top: 70%;
  }
  .hero {
    max-height:none;  
    width:100%;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
  }
  .page {
   
    height: 100vh;
   
}
}