/* Early Access — premium country picker cards */
.ea-country-picker{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:8px;
  margin-bottom:2px;
}
.ea-country-picker:has(.ea-country-btn.active) .ea-country-btn:not(.active){
  opacity:0.62;
}
@media(max-width:480px){
  .ea-country-picker{ grid-template-columns:1fr; }
}
.ea-country-btn{
  background:rgba(24,25,29,.55);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1.5px solid rgba(255,255,255,.12);
  color:#fff;
  padding:10px 12px;
  border-radius:14px;
  cursor:pointer;
  transition:all .35s cubic-bezier(.4,0,.2,1);
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:10px;
  min-height:48px;
  margin:0;
  opacity:0.9;
}
.ea-country-btn::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 0% 50%, rgba(138,92,255,.1), transparent 70%);
  opacity:0;
  transition:opacity .35s ease;
}
.ea-country-btn:hover{
  border-color:rgba(138,92,255,.45);
  box-shadow:0 6px 22px rgba(0,0,0,.32);
  transform:translateY(-1px);
  opacity:1;
}
.ea-country-btn:hover::before{ opacity:1; }
.ea-country-btn.active{
  opacity:1;
  background:linear-gradient(135deg, rgba(138,92,255,.16), rgba(233,76,90,.1));
  border-color:#8a5cff;
  box-shadow:0 0 0 1px rgba(138,92,255,.35), 0 8px 26px rgba(0,0,0,.35);
  transform:scale(1.01);
}
.ea-country-btn.active::before{ opacity:1; }
.ea-country-btn:has(input:focus-visible){
  outline:2px solid rgba(138,92,255,.65);
  outline-offset:3px;
}
.ea-country-btn input[type="radio"]{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.ea-country-flag{
  flex-shrink:0;
  width:38px;
  height:38px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.ea-country-flag-img{
  width:28px;
  height:21px;
  object-fit:cover;
  border-radius:4px;
  box-shadow:0 1px 4px rgba(0,0,0,.28);
  display:block;
}
.ea-country-flag-img--inline{
  width:22px;
  height:16px;
  vertical-align:-2px;
  margin-right:6px;
  display:inline-block;
}
.ea-country-flag-emoji{
  font-family:"Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji","Twemoji Mozilla",sans-serif;
  font-style:normal;
  font-size:1.5rem;
  line-height:1;
}
.ea-country-btn.active .ea-country-flag{
  border-color:rgba(138,92,255,.45);
  box-shadow:0 0 12px rgba(138,92,255,.25);
}
.ea-country-body{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.ea-country-name{
  font-size:14px;
  font-weight:700;
  line-height:1.25;
}
.ea-country-code{
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.06em;
  color:rgba(207,210,220,.65);
  text-transform:uppercase;
}
.ea-country-check{
  flex-shrink:0;
  font-size:1rem;
  color:#e94c5a;
  opacity:0;
  transform:scale(0.6);
  transition:opacity .25s ease, transform .25s ease;
}
.ea-country-btn.active .ea-country-check{
  opacity:1;
  transform:scale(1);
}
