﻿* { margin: 0; padding: 0; box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}
html, body { width: 100vw; height: 100vh; overflow: hidden; }
body {
  min-height: 100vh;
  background-image: url('bridge-bg-desktop.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #0a2a4a;
}
@media (max-width: 768px) {
  body {
    background-image: url('bridge-bg-mobile.png');
    background-size: cover;
    background-position: top center;
  }
}
.overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); z-index: 999; display: block;
}
.cookie-popup {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  background: #ffffff;
  border-top-left-radius: 12px; border-top-right-radius: 12px;
  border-bottom-left-radius: 0; border-bottom-right-radius: 0;
  padding: 28px 32px 32px 32px;
  max-width: 600px; width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  text-align: center; z-index: 1000;
  animation: slideUp 0.3s ease-out; display: block;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-popup h2 {
  font-size: 22px; font-weight: 700; color: #1a1a1a;
  margin: 0 0 12px 0; line-height: 1.3;
}
.cookie-popup p {
  font-size: 14px; color: #4a4a4a; line-height: 1.5; margin: 0 0 20px 0;
}
.btn-container {
  display: flex !important; gap: 16px !important; width: 100%; margin: 0;
}
.cookie-popup .btn {
  display: inline-block !important;
  padding: 11px 24px; font-size: 15px; font-weight: 600;
  text-decoration: none; border-radius: 8px; cursor: pointer;
  transition: all 0.3s ease; border: none; flex: 1; text-align: center;
  margin: 0 !important; width: auto !important; max-width: none !important;
}
.btn-allow { background: #1877f2; color: #ffffff; }
.btn-allow:hover {
  background: #166fe5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}
.btn-settings { background: #f0f2f5; color: #1877f2; }
.btn-settings:hover { background: #f0f2f5; color: #166fe5; }
.btn:focus { outline: none; }
.btn:focus-visible { box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.45); }
@media (max-width: 768px) {
  .cookie-popup { padding: 24px 28px 28px 28px; max-width: 90%; }
  .cookie-popup h2 { font-size: 20px; }
  .cookie-popup p { font-size: 13px; }
  .btn-container { gap: 12px !important; }
  .cookie-popup .btn { padding: 10px 20px; font-size: 14px; }
}
