:root {
  --red: #c5002b;
  --less_red: rgba(197, 0, 43, 0.35);
  --yellow: #febc04;
  --teal: #1fcdc4;
  --blue: #044257;
}
::selection {
  background-color: var(--red);
  color: #fff;
}
body {
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
  color: #1f2937;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Floating bubbles */
#bubbles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: -1;
  filter: blur(6px);
}

.bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.bubble.red {
  background: var(--red);
  opacity: 0.35;
}
.bubble.teal {
  background: var(--teal);
  opacity: 0.4;
}
.bubble.yellow {
  background: var(--yellow);
  opacity: 0.3;
}
.bubble.blue {
  background: var(--blue);
  opacity: 0.25;
}

/* Language dropdown */
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  background: #fff;
  color: #374151;
  font-weight: 600;
  transition: 0.2s;
}
.lang-trigger:hover {
  border-color: var(--red);
  color: var(--red);
}
.lang-menu {
  position: absolute;
  right: 0;
  top: 110%;
  width: 200px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  padding: 0.25rem;
  display: none;
  z-index: 9999 !important;
}
.lang-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.5rem 0.65rem;
  border-radius: 0.75rem;
  font-weight: 500;
  color: #374151;
}
.lang-item:hover {
  background: #fff3f3;
  color: var(--red);
}

/* Hide bubbles under footer */
footer {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), #fff);
  backdrop-filter: blur(2px);
}
