/* ===== ZAIBSMARK — Consent Overlay Styles (Light Theme) ===== */

/* Fix cursor visibility on top of overlay */
.cursor-ring {
  z-index: 100000 !important;
}

#zaibsmark-consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 20px;
  animation: consentFadeIn 0.6s ease both;
  cursor: none; /* Let the custom cursor handle it */
}

@keyframes consentFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

#zaibsmark-consent-box {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  padding: 48px 44px 40px;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5),
    0 25px 50px -12px rgba(0, 0, 0, 0.1);
  position: relative;
  animation: consentSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes consentSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Gold lines removed per user request */

.consent-logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: #111;
  
  margin-bottom: 6px;
  text-transform: uppercase;
}

.consent-tagline {
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: #111; /* Changed from gold */
  text-transform: uppercase;
  
  margin-bottom: 28px;
  font-weight: 500;
}

.consent-divider {
  width: 40px;
  height: 2px;
  background: rgba(17, 17, 17, 0.1); /* Changed from gold */
  margin: 0 auto 28px;
}

.consent-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
  
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.consent-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  
  margin-bottom: 32px;
}

.consent-body a {
  color: #111; /* Changed from gold */
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(17, 17, 17, 0.3);
  transition: all 0.3s;
}

.consent-body a:hover {
  color: #111;
  border-color: #111;
}

.consent-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.consent-btn-accept {
  padding: 14px 40px;
  background: #111;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: none; /* Custom cursor */
  
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.consent-btn-accept:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.consent-btn-reject {
  padding: 14px 28px;
  background: transparent;
  color: #111; /* Changed from grey */
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  cursor: none; /* Custom cursor */
  
  transition: all 0.3s;
}

.consent-btn-reject:hover {
  color: #111;
  border-color: #111;
  background: rgba(0, 0, 0, 0.03);
}

.consent-note {
  margin-top: 24px;
  font-size: 0.75rem;
  color: #888;
  
  line-height: 1.6;
}

/* Reject screen */
#zaibsmark-reject-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

#zaibsmark-reject-screen .reject-icon {
  font-size: 2.8rem;
  color: #111; /* Changed from gold */
  margin-bottom: 5px;
}

#zaibsmark-reject-screen h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
  
}

#zaibsmark-reject-screen p {
  font-size: 0.9rem;
  color: #666;
  
  line-height: 1.7;
  max-width: 400px;
  text-align: center;
}

#zaibsmark-reject-screen .consent-btn-accept {
  margin-top: 10px;
}

/* Mobile */
@media (max-width: 480px) {
  #zaibsmark-consent-box {
    padding: 40px 24px 32px;
  }
  .consent-btn-accept,
  .consent-btn-reject {
    width: 100%;
    text-align: center;
  }
  .consent-buttons {
    flex-direction: column;
  }
}
