/* ===== RTC COOKIE NOTICE ===== */

.rtc-cookie-notice {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.rtc-cookie-inner {
  max-width: 720px;
  width: 100%;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.rtc-cookie-text {
  font-size: 13px;
  line-height: 1.45;
  color: #b0b0b0;
}

.rtc-cookie-btn {
  background: #cbb37a;
  color: #0b0b0b;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.rtc-cookie-btn:hover {
  background: #bfa864;
}

.rtc-cookie-notice.hide {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

/* MOBILE */
@media (max-width: 480px) {
  .rtc-cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .rtc-cookie-btn {
    width: 100%;
  }
}

