* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.rossnh {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  padding: 10px;
}
.rossnh::before {
  z-index: -1;
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/bg-st.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.rossnh::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px) contrast(0.8);
}

.rossnh-footer-links {
  position: absolute;
  bottom: 0;
  padding: 10px;
  a {
    color: #000;
    text-decoration: none;
    font-weight: 700;

    &:hover {
      text-decoration: underline;
    }
  }
}
.site-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.cookie-modal {
  position: relative;
  background: rgba(190, 184, 184, 0.5);
  color: #fff;
  padding: 2rem;
  text-align: center;

  border-radius: 16px;
  max-width: 650px;
  width: 90%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.07);
  animation: modalSlideIn 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(70px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-modal__title {
  margin-bottom: 12px;
  color: #1e2d3a;
}
.cookie-modal__close-btn {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  color: #000;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
  border-radius: 50%;
  line-height: 14px;
  backdrop-filter: blur(4px);
}
.cookie-modal__close-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: rotate(90deg);
}
.cookie-modal__content {
  margin-bottom: 2.2rem;
  line-height: 1.75;
  font-size: 1.2rem;
  color: #fff;
}
.cookie-modal__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.cookie-action-btn {
  display: inline-block;
  padding: 0.95rem 2.5rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  min-width: 200px;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #1e2d3a;
  color: white;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.cookie-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}
.cookie-action-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 30%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  transition: 0.75s;
}
.cookie-action-btn:hover::after {
  left: 130%;
}
@media (max-width: 767px) {
  .cookie-modal {
    padding: 1rem;
    width: 92%;
  }
  .cookie-modal__title {
    font-size: 1.5rem;
  }
  .cookie-modal__content {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  .cookie-action-btn {
    width: 100%;
    padding: 0.85rem 1.8rem;
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .cookie-modal__actions {
    flex-wrap: wrap;
  }
}
