* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
  color: #f8fafc;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.plenkvs-page-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  transition: all 0.65s cubic-bezier(0.3, 0.95, 0.45, 0.95);
}

.plenkvs-page-background {
  z-index: 0;
  background-image: url("/img/bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(1.2) contrast(1.1);
}

.plenkvs-cookies-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.65);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.plenkvs-cookies-modal {
  color: #f1f5f9;
  padding: 1rem 2.8rem;
  width: 100%;
  position: relative;
  bottom: 60px;
  /* 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);
  background: #fff;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(70px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.plenkvs-cookies-modal::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  z-index: -1;
  opacity: 0.4;
  filter: blur(6px);
}

.plenkvs-cookies-text-wrapp {
  font-family: "abcsans", -apple-system, blinkmacsystemfont, "Segoe UI",
    "Roboto", "Helvetica Neue", arial, sans-serif;
  color: #000;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.55;
  font-size: 16px;
}

.plenkvs-cookies-title {
  /* font-family: "Work Sans", sans-serif; */
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}

.plenkvs-cookies-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.plenkvs-cookies-btn {
  display: inline-block;
  padding: 0.95rem 2.5rem;
  border: none;
  border-radius: 4px;
  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: gray;
  color: white;
  /* box-shadow: 0 10px 15px rgba(30, 92, 235, 0.3); */
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.plenkvs-cookies-btn:hover {
  background: #b87e14;
}

/* Přizpůsobení pro mobilní zařízení */
@media (max-width: 810px) {
  .plenkvs-cookies-btn {
    padding: 0.95rem;
    min-width: auto;
  }
}
@media (max-width: 767px) {
  .plenkvs-cookies-modal {
    padding: 2.2rem 1.8rem;
  }

  .plenkvs-cookies-title {
    font-size: 1.5rem;
  }
  .plenkvs-cookies-text-wrapp {
    line-height: normal;
    font-size: 14px;
  }
  .plenkvs-cookies-actions {
    flex-wrap: wrap;
  }
  .plenkvs-cookies-btn {
    width: 100%;
  }
}

.sidebar {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1000;
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding-right: 16px;
  margin-block: 10px;
  color: #e2e8f0;

  a {
    color: currentColor;
    text-decoration: none;
    margin-block: 10px;
    transition: color 0.3s ease;

    &:hover {
      color: #10b981;
    }
  }
}


.links {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 20px;
  bottom: 20px;
  transform: translate(-50%, 0);
  left: 50%;
  z-index: 9;
}

.links a {
  color: #000;
  display: flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
}
