/* ============================================
   Cookie Consent Banner - GDPR/AdSense Compliance
   ============================================ */
.cookie-consent-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
  border-top: 2px solid #2563eb;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.cookie-consent-overlay.cc-visible {
  transform: translateY(0);
}

.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-consent-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.cookie-consent-text {
  flex: 1;
  min-width: 280px;
  color: #e2e8f0;
  font-size: 0.9rem;
  line-height: 1.65;
}

.cookie-consent-text a {
  color: #93c5fd;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-consent-text a:hover {
  color: #bfdbfe;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cc-btn {
  padding: 0.6rem 1.35rem;
  border-radius: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cc-btn-accept {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.cc-btn-accept:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.45);
}

.cc-btn-reject {
  background: transparent;
  color: #94a3b8;
  border: 1.5px solid #475569;
}

.cc-btn-reject:hover {
  color: #e2e8f0;
  border-color: #94a3b8;
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 640px) {
  .cookie-consent-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cookie-consent-icon {
    display: none;
  }

  .cookie-consent-text {
    font-size: 0.82rem;
    min-width: auto;
  }

  .cookie-consent-actions {
    width: 100%;
    justify-content: center;
  }

  .cc-btn {
    flex: 1;
    min-width: 120px;
  }
}
