.vl-cookie-banner,
.vl-cookie-modal {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.vl-cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 24px;
  background: rgba(10, 10, 15, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  color: #ffffff;
  display: none;
}

.vl-cookie-banner.is-visible { display: block; }

.vl-cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.vl-cookie-banner h2,
.vl-cookie-modal h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}

.vl-cookie-banner p,
.vl-cookie-modal p,
.vl-cookie-modal li {
  margin: 0;
  color: #d4d4d8;
  font-size: 14px;
  line-height: 1.6;
}

.vl-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.vl-cookie-btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 11px 16px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.vl-cookie-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.vl-cookie-btn.primary {
  background: linear-gradient(120deg, #ffbe06 10.69%, #ea0303 40%, #ce25ff 75%, #0099ff 100%);
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(139, 92, 246, 0.25);
}

.vl-cookie-link {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  background-image: linear-gradient(120deg, #ffbe06 10.69%, #ea0303 40%, #ce25ff 75%, #0099ff 100%);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 2px;
}

.vl-cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.58);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.vl-cookie-modal-backdrop.is-visible { display: flex; }

.vl-cookie-modal {
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: 26px;
  border-radius: 26px;
  background: #0A0A0F;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
  color: #ffffff;
}

.vl-cookie-option {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
}

.vl-cookie-option label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 850;
}

.vl-cookie-option input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #8b5cf6;
}

.vl-cookie-option small {
  display: block;
  margin: 7px 0 0 30px;
  color: #a1a1aa;
  font-size: 13px;
  line-height: 1.55;
}

.vl-cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 22px;
}

@media (max-width: 760px) {
  .vl-cookie-banner-inner {
    grid-template-columns: 1fr;
  }
  .vl-cookie-actions {
    justify-content: flex-start;
  }
}
