@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

#third-party-cookies-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #2a2a2a, #4a2a00); /* Darker, professional gradient */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}

/* Subtle geometric pattern for sophistication */
#third-party-cookies-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(45deg, rgba(255, 165, 0, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 165, 0, 0.05) 25%, transparent 25%);
  background-size: 60px 60px; /* Unchanged size */
  background-position: 0 0, 30px 30px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5; /* Increased opacity for sharper definition */
}

/* Refined glowing effect with smoother animation */
#third-party-cookies-modal::after {
  content: none;
}

@keyframes gentleGlow {
  0%, 100% {
    background-position: initial; /* Animation removed as dots are gone */
  }
}

#third-party-cookies-modal .modal-content {
  position: relative;
  z-index: 1;
  background: #fafafa;
  border-radius: 16px;
  padding: 45px 55px;
  max-width: 440px;
  text-align: center;
  box-shadow:
    0 12px 25px rgba(255, 140, 0, 0.3),
    0 4px 10px rgba(0, 0, 0, 0.15);
  color: #7a3c00;
  border: 2px solid #cc5500;
}

#third-party-cookies-modal .modal-logo {
  max-width: 180px;
  margin-bottom: 28px;
  filter: none;
}

#third-party-cookies-modal h2 {
  margin-top: 0;
  margin-bottom: 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2em;
  color: #000000;
  text-shadow: none;
}

#third-party-cookies-modal p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.1em;
  line-height: 1.6;
  color: #8b4b00cc;
}