@media (max-width:991px) {
    body.poster {
        margin-top: 0;
    }
}

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}

.main-section {
    height:90vh;  
    top:-100px;
}

@media (max-width:991px) {
    .main-section {
     max-height: 100vh!important;     
    }
}

/* Подсветка важного текста */
strong {
    color:#6301a4 ;
    font-weight: bold;
}

/* Анимации */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

div.cookify__view:active{
  padding-right:50px;
}


.model{
  border:2px #2e2438 solid;
  border-radius:5px;
}
.content {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.content:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}