/* Loople cookie consent banner styles */
.loople-cc-root {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999999;
  display: flex;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
  animation: loople-cc-in .28s ease-out forwards;
}
@keyframes loople-cc-in { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes loople-cc-out { to { transform: translateY(20px); opacity: 0; } }
.loople-cc-box {
  pointer-events: auto;
  max-width: 560px;
  width: 100%;
  background: #18181B;
  color: #FAFAFA;
  border: 1px solid #27272A;
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7), 0 12px 30px -8px rgba(232,25,122,.25);
  font-family: 'Inter var', Inter, -apple-system, system-ui, sans-serif;
}
.loople-cc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.loople-cc-title { font-weight: 800; font-size: 16px; letter-spacing: -0.2px; }
.loople-cc-close {
  background: transparent; color: #A1A1AA; border: 0;
  font-size: 24px; cursor: pointer; line-height: 1; padding: 0 4px;
}
.loople-cc-close:hover { color: #FAFAFA; }
.loople-cc-body p { margin: 0 0 12px; color: #D4D4D8; font-size: 14px; line-height: 1.55; }
.loople-cc-link { color: #E8197A; text-decoration: none; font-weight: 600; }
.loople-cc-link:hover { text-decoration: underline; }
.loople-cc-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.loople-cc-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  border: 0;
  font-family: inherit;
  transition: opacity .15s ease, transform .1s ease;
}
.loople-cc-btn:hover { opacity: .92; }
.loople-cc-btn:active { transform: scale(0.98); }
.loople-cc-btn-primary {
  background: linear-gradient(135deg, #E8197A 0%, #8B5CF6 100%);
  color: #fff;
}
.loople-cc-btn-ghost {
  background: transparent;
  border: 1px solid #3F3F46;
  color: #FAFAFA;
}
@media (max-width: 480px) {
  .loople-cc-root { padding: 8px; }
  .loople-cc-box { border-radius: 16px; padding: 16px 18px; }
  .loople-cc-actions { flex-direction: column; }
}
