.google-consent {
  position: fixed;
  z-index: 1000;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  left: clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.5rem;
  max-width: 920px;
  margin-left: auto;
  padding: 1.35rem;
  border: 1px solid rgba(139, 124, 246, 0.42);
  border-radius: 20px;
  background: rgba(12, 12, 14, 0.97);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.55);
  color: #f7f7f8;
  font-family: "Space Grotesk", system-ui, sans-serif;
  backdrop-filter: blur(18px);
}

.google-consent[hidden],
.google-consent-settings[hidden] {
  display: none;
}

.google-consent strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.google-consent p {
  max-width: 620px;
  margin: 0;
  color: #b9b9c1;
  font-size: 0.83rem;
  line-height: 1.55;
}

.google-consent a {
  display: inline-block;
  margin-top: 0.55rem;
  color: #8b7cf6;
  font-size: 0.76rem;
  text-underline-offset: 3px;
}

.google-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.google-consent button,
.google-consent-settings {
  min-height: 42px;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: #121216;
  color: #f7f7f8;
  font: 700 0.76rem/1 "Space Grotesk", system-ui, sans-serif;
  cursor: pointer;
}

.google-consent button[data-consent="granted"] {
  border-color: #8b7cf6;
  background: #8b7cf6;
  color: #09080e;
}

.google-consent button:hover,
.google-consent-settings:hover {
  border-color: #8b7cf6;
}

.google-consent-settings {
  position: fixed;
  z-index: 999;
  right: 1rem;
  bottom: 1rem;
  min-height: 36px;
  padding: 0.55rem 0.8rem;
  background: rgba(12, 12, 14, 0.9);
  color: #b9b9c1;
  backdrop-filter: blur(14px);
}

@media (max-width: 680px) {
  .google-consent {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .google-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
