/* Eggy Gold nav wallet - blends into existing lobby2 top bar without changing tables/users/cue shop hooks */
.eggy-gold-nav-card{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:44px;
  padding:5px 7px;
  border-radius:7px;
  background:linear-gradient(180deg,rgba(8,18,27,.78),rgba(2,9,14,.72));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04), inset 0 -1px 0 rgba(0,0,0,.38);
  white-space:nowrap;
}
.eggy-gold-balance{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:116px;
  color:#f8ffff;
  text-decoration:none;
}
.eggy-gold-coin{
  width:30px;
  height:30px;
  flex:0 0 30px;
  display:grid;
  place-items:center;
  border-radius:50%;
  position:relative;
  background:radial-gradient(circle at 34% 27%,#fff7bd 0 11%,#ffd05a 28%,#d98a14 58%,#6d3607 100%);
  box-shadow:0 0 10px rgba(255,190,46,.28), inset 0 2px 3px rgba(255,255,255,.42), inset 0 -4px 6px rgba(80,35,0,.45);
}
.eggy-gold-coin:before{
  content:"";
  position:absolute;
  inset:4px;
  border-radius:50%;
  border:1px solid rgba(105,55,4,.45);
  box-shadow:inset 0 0 7px rgba(255,247,181,.28);
}
.eggy-gold-coin i{
  width:12px;
  height:17px;
  display:block;
  border-radius:60% 60% 52% 52% / 68% 68% 42% 42%;
  transform:rotate(-10deg);
  background:linear-gradient(145deg,rgba(98,52,2,.72),rgba(255,219,96,.2));
  box-shadow:inset 1px 1px 2px rgba(48,25,0,.58),0 1px 0 rgba(255,245,170,.38);
}
.eggy-gold-copy{line-height:1.02;display:flex;flex-direction:column;gap:2px;}
.eggy-gold-copy small{font-size:9px;letter-spacing:.9px;text-transform:uppercase;color:#8deef3;font-weight:800;}
.eggy-gold-copy b{font-size:16px;color:#ffd35d;text-shadow:0 0 8px rgba(255,177,32,.22);}
.eggy-gold-actions{display:flex;align-items:center;gap:5px;}
.eggy-gold-actions a{
  min-width:54px;
  text-align:center;
  text-decoration:none;
  color:#eaffff;
  font-size:10px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.45px;
  padding:8px 9px;
  border-radius:5px;
  border:1px solid rgba(86,238,255,.2);
  background:linear-gradient(180deg,rgba(11,31,42,.94),rgba(4,15,23,.96));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.eggy-gold-actions a:hover{filter:brightness(1.16);}
.eggy-gold-buy{color:#dfffff!important;}
.eggy-gold-redeem{color:#ffe8a6!important;border-color:rgba(255,205,76,.22)!important;}
@media(max-width:1180px){
  .eggy-gold-nav-card{order:8;margin-left:auto;}
}
@media(max-width:720px){
  .eggy-gold-nav-card{width:100%;justify-content:space-between;margin:2px 0 0;padding:7px 8px;}
  .eggy-gold-balance{min-width:0;}
  .eggy-gold-actions{margin-left:auto;}
  .eggy-gold-actions a{min-width:68px;padding:9px 10px;}
}
@media(max-width:390px){
  .eggy-gold-copy b{font-size:14px;}
  .eggy-gold-actions a{min-width:58px;font-size:9px;padding:8px 7px;}
}
