.tvi-cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 99999;
  width: 430px;
  max-width: calc(100% - 32px);
  background: #1c1830;
  color: #fff;
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.25), 0 15px 40px rgba(0, 0, 0, 0.45);
  font-family: inherit;
}

.tvi-cookie-consent__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.tvi-cookie-consent__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.tvi-cookie-consent__close {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tvi-cookie-consent__close:hover {
  background: rgba(255, 255, 255, 0.08);
}

.tvi-cookie-consent__text {
  margin: 8px 0 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #b7b3c6;
}

.tvi-cookie-consent__actions {
  display: flex;
  gap: 10px;
}

.tvi-cookie-consent__btn {
  flex: 1;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  padding: 9px 0;
  font-size: 14px;
  font-weight: 600;
}

.tvi-cookie-consent__btn--reject {
  background: #241f38;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.tvi-cookie-consent__btn--reject:hover {
  background: #2c2645;
}

.tvi-cookie-consent__btn--accept {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  box-shadow: 0 5px 20px rgba(124, 58, 237, 0.4);
}

.tvi-cookie-consent__btn--accept:hover {
  opacity: 0.92;
}

.tvi-cookie-consent__settings {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 420px) {
  .tvi-cookie-consent {
    bottom: 12px;
  }
}
