.geo-pop-backdrop {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.geo-pop--open .geo-pop-backdrop {
  opacity: 1; pointer-events: all;
}
.geo-pop-panel {
  position: fixed; z-index: 9999;
  bottom: 0; left: 0; right: 0;
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(160deg,#0d1b2e 0%,#0a1220 100%);
  border: 1px solid rgba(255,190,0,.25);
  border-bottom: none;
  border-radius: 18px 18px 0 0;
  padding: 0 0 env(safe-area-inset-bottom,0);
  box-shadow: 0 -8px 48px rgba(0,0,0,.6), 0 0 0 1px rgba(255,190,0,.08) inset;
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(.32,1.1,.65,1);
  max-height: 88dvh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,190,0,.3) transparent;
}
.geo-pop--open .geo-pop-panel { transform: translateY(0); }
.geo-pop-handle {
  width: 40px; height: 4px;
  background: rgba(255,190,0,.35);
  border-radius: 2px;
  margin: 10px auto 0;
}
.geo-pop-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px 10px;
  position: sticky; top: 0;
  background: #0d1b2e;
  border-bottom: 1px solid rgba(255,190,0,.18);
  box-shadow: 0 4px 16px rgba(0,0,0,.55);
  z-index: 100;
}
.geo-pop-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.geo-pop-titles { flex: 1; min-width: 0; }
.geo-pop-title {
  font-size: 1rem; font-weight: 700; color: #ffd700;
  margin: 0; letter-spacing: .02em; line-height: 1.25;
}
.geo-pop-subtitle {
  font-size: .72rem; color: rgba(255,255,255,.45);
  margin: 2px 0 0; line-height: 1.2;
}
.geo-pop-close {
  flex-shrink: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  width: 30px; height: 30px;
  color: rgba(255,255,255,.6);
  font-size: 1.1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, color .2s;
}
.geo-pop-close:hover { background: rgba(255,255,255,.15); color: #fff; }
.geo-pop-cards { padding: 12px 14px 18px; display: flex; flex-direction: column; gap: 12px; }
.geo-card {
  display: flex; flex-direction: column; gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,190,0,.18);
  border-radius: 14px;
  overflow: hidden;
  transition: background .2s, border-color .2s;
  position: relative;
}
.geo-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,190,0,.05) 0%, transparent 40%);
  pointer-events: none; z-index: 0;
}
.geo-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,190,0,.35); }
.geo-card--promo { border-color: rgba(255,100,0,.4); }
.geo-card--promo::before {
  background: linear-gradient(180deg, rgba(255,80,0,.07) 0%, transparent 40%);
}
.geo-card__top {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 14px 10px;
  position: relative; z-index: 0;
}
.geo-card__logo-wrap {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 12px;
  background: transparent;
  border: none;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.geo-card__logo-wrap img {
  width: 100%; height: 100%; object-fit: cover; padding: 0;
}
.geo-card__logo-placeholder {
  font-size: 2rem; font-weight: 900; color: #ffd700; line-height: 1;
}
.geo-card__name {
  font-size: 1rem; font-weight: 800; color: #fff;
  margin: 0; line-height: 1.3; flex: 1; min-width: 0;
}
.geo-card--promo .geo-card__name::before { content: '🔥 '; font-size: .85em; }
.geo-card__desc {
  font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.55;
  margin: 0; padding: 0 14px 14px;
  position: relative; z-index: 0;
}
.geo-card__cta {
  display: block;
  background: linear-gradient(135deg,#f5a623 0%,#e8870a 100%);
  color: #0a1220;
  font-size: .82rem; font-weight: 900;
  letter-spacing: .04em; text-transform: uppercase; text-align: center;
  padding: 13px 16px;
  text-decoration: none;
  border-top: 1px solid rgba(255,190,0,.2);
  box-shadow: 0 -1px 0 rgba(255,255,255,.06) inset;
  transition: filter .2s, letter-spacing .15s;
  position: relative; z-index: 0;
}
.geo-card__cta:hover { filter: brightness(1.12); letter-spacing: .06em; color: #0a1220; }
.geo-pop-loading {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 24px 0;
  color: rgba(255,255,255,.35); font-size: .85rem;
}
.geo-pop-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,190,0,.2);
  border-top-color: #ffd700;
  border-radius: 50%;
  animation: geo-spin .7s linear infinite;
}
@keyframes geo-spin { to { transform: rotate(360deg); } }
@media (min-width: 540px) {
  .geo-pop-panel {
    bottom: 32px;
    border-radius: 18px;
    border-bottom: 1px solid rgba(255,190,0,.18);
    max-height: 80dvh;
  }
  .geo-pop-handle { display: none; }
}
