:root{
  --hc-game-surface:rgba(255,255,255,.88);
  --hc-game-border:rgba(255,255,255,.16);
  --hc-game-shadow:0 24px 60px rgba(23,32,52,.16);
}

.hc-games-hero,
.hc-bottle-board-shell,
.hc-bottle-panel{
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(140% 140% at 0% 0%, rgba(255,122,198,.12), transparent 36%),
    radial-gradient(120% 150% at 100% 0%, rgba(106,92,255,.12), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,248,255,.90));
  box-shadow:var(--hc-game-shadow);
}

.hc-games-hero{
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) auto;
  gap:18px;
  align-items:center;
  padding:24px;
  border-radius:28px;
  margin-bottom:18px;
}

.hc-games-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:28px;
  padding:5px 12px;
  border-radius:999px;
  background:rgba(106,92,255,.10);
  color:rgba(78,62,199,.96);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.hc-games-title{
  margin:12px 0 0;
  font-size:clamp(1.9rem, 1.4rem + 1.8vw, 2.8rem);
  font-weight:1000;
  letter-spacing:-.04em;
  color:rgba(23,32,52,.97);
}

.hc-games-sub{
  margin-top:10px;
  max-width:64ch;
  color:rgba(23,32,52,.68);
  line-height:1.55;
}

.hc-games-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}

.hc-games-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(23,32,52,.08);
  color:rgba(23,32,52,.84);
  font-weight:700;
}

.hc-games-hero-side{
  display:flex;
  justify-content:flex-end;
}

.hc-game-card{
  height:100%;
  border-radius:24px;
}

.hc-game-card.is-featured{
  background:
    radial-gradient(110% 140% at 0% 0%, rgba(255,227,132,.16), transparent 38%),
    radial-gradient(120% 120% at 100% 0%, rgba(106,92,255,.13), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,248,255,.93));
}

.hc-game-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.hc-game-card-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(106,92,255,.16), rgba(255,122,198,.14));
  color:rgba(78,62,199,.96);
  font-size:1.35rem;
}

.hc-game-card-title{
  margin-top:18px;
  font-size:1.35rem;
  font-weight:900;
  color:rgba(23,32,52,.96);
}

.hc-game-card-subtitle{
  margin-top:6px;
  color:rgba(78,62,199,.88);
  font-weight:800;
}

.hc-game-card-text{
  margin-top:10px;
  color:rgba(23,32,52,.68);
  line-height:1.55;
}

.hc-game-card-actions{
  margin-top:18px;
}

.hc-bottle-page-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
  flex-wrap:wrap;
}

.hc-bottle-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.45fr) minmax(340px, .75fr);
  gap:18px;
  align-items:start;
}

.hc-bottle-board-shell{
  padding:18px;
  border-radius:30px;
  overflow:hidden;
}

.hc-bottle-room-stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px;
}

.hc-bottle-stat{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(23,32,52,.08);
  font-weight:700;
  color:rgba(23,32,52,.82);
}

.hc-bottle-board{
  position:relative;
  min-height:760px;
  border-radius:28px;
  overflow:hidden;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(255,255,255,.22), transparent 36%),
    linear-gradient(180deg, rgba(40,28,66,.98), rgba(18,21,42,.99));
  border:1px solid rgba(255,255,255,.08);
}

.hc-bottle-table-glow{
  position:absolute;
  inset:18% 16%;
  border-radius:999px;
  background:radial-gradient(circle, rgba(255,133,208,.18), rgba(106,92,255,.06) 48%, rgba(0,0,0,0) 76%);
  filter:blur(22px);
}

.hc-bottle-seat-ring{
  position:absolute;
  inset:0;
}

.hc-bottle-seat{
  position:absolute;
  width:170px;
  padding:0;
  border:0;
  background:transparent;
  transform:translate(-50%, -50%);
}

.hc-bottle-seat-card{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
  width:100%;
  padding:12px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  color:#fff;
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
  box-shadow:0 18px 34px rgba(0,0,0,.18);
  transition:transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.hc-bottle-seat:hover .hc-bottle-seat-card,
.hc-bottle-seat:focus-visible .hc-bottle-seat-card{
  transform:translateY(-2px);
  border-color:rgba(255,231,164,.28);
  box-shadow:0 20px 36px rgba(0,0,0,.24);
}

.hc-bottle-seat.is-empty .hc-bottle-seat-card{
  background:linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
}

.hc-bottle-seat.is-self .hc-bottle-seat-card{
  border-color:rgba(116,255,183,.42);
  box-shadow:0 0 0 1px rgba(116,255,183,.18), 0 18px 40px rgba(0,0,0,.22);
}

.hc-bottle-seat.is-target .hc-bottle-seat-card{
  border-color:rgba(255,222,124,.42);
  box-shadow:0 0 0 1px rgba(255,222,124,.18), 0 18px 40px rgba(0,0,0,.22);
}

.hc-bottle-seat.is-highlight .hc-bottle-seat-card{
  animation:hcBottleSeatPulse 1.2s ease-in-out 2;
}

@keyframes hcBottleSeatPulse{
  0%,100%{box-shadow:0 18px 34px rgba(0,0,0,.18);}
  50%{box-shadow:0 0 0 2px rgba(255,222,124,.35), 0 22px 44px rgba(0,0,0,.28);}
}

.hc-bottle-seat-avatar-wrap{
  position:relative;
  flex:0 0 auto;
}

.hc-bottle-seat-avatar{
  width:56px;
  height:56px;
  border-radius:18px;
  object-fit:cover;
  background:rgba(255,255,255,.16);
}

.hc-bottle-seat-number{
  position:absolute;
  right:-4px;
  bottom:-4px;
  min-width:22px;
  height:22px;
  padding:0 6px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.94);
  color:rgba(23,32,52,.95);
  font-size:.72rem;
  font-weight:900;
}

.hc-bottle-seat-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:4px;
  text-align:left;
}

.hc-bottle-seat-name{
  font-weight:900;
  line-height:1.15;
  color:#fff;
}

.hc-bottle-seat-meta{
  color:rgba(255,255,255,.72);
  font-size:.82rem;
  line-height:1.35;
}

.hc-bottle-seat--0{left:50%; top:14%;}
.hc-bottle-seat--1{left:82%; top:31%;}
.hc-bottle-seat--2{left:82%; top:69%;}
.hc-bottle-seat--3{left:50%; top:86%;}
.hc-bottle-seat--4{left:18%; top:69%;}
.hc-bottle-seat--5{left:18%; top:31%;}

.hc-bottle-table{
  position:absolute;
  inset:19% 17%;
  border-radius:999px;
  overflow:hidden;
}

.hc-bottle-table-surface{
  position:relative;
  width:100%;
  height:100%;
  border-radius:999px;
  border:1px solid rgba(255,238,196,.18);
  background:
    radial-gradient(circle at 48% 38%, rgba(255,255,255,.12), transparent 30%),
    radial-gradient(circle at 50% 56%, rgba(255,222,124,.12), transparent 44%),
    linear-gradient(180deg, rgba(116,62,29,.96), rgba(64,31,18,.98));
  box-shadow:inset 0 8px 32px rgba(255,255,255,.06), inset 0 -18px 30px rgba(0,0,0,.24), 0 26px 60px rgba(0,0,0,.28);
}

.hc-bottle-center-copy{
  position:absolute;
  left:50%;
  top:28px;
  transform:translateX(-50%);
  text-align:center;
  z-index:2;
  width:min(88%, 360px);
}

.hc-bottle-center-kicker{
  font-size:.7rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:900;
  color:rgba(255,238,196,.76);
}

.hc-bottle-center-title{
  margin-top:6px;
  font-size:clamp(1.1rem, 1rem + .8vw, 1.55rem);
  font-weight:950;
  color:#fff4d3;
}

.hc-bottle-center-note{
  margin-top:8px;
  color:rgba(255,247,226,.78);
  line-height:1.45;
  font-size:.92rem;
}

.hc-bottle-rotator{
  position:absolute;
  left:50%;
  top:56%;
  width:190px;
  height:190px;
  transform:translate(-50%, -50%) rotate(-90deg);
  transform-origin:50% 50%;
  transition:transform 5.2s cubic-bezier(.13,.81,.09,1);
  z-index:3;
}

.hc-bottle-asset{
  position:relative;
  width:100%;
  height:100%;
}

.hc-bottle-glass{
  position:absolute;
  left:24px;
  right:24px;
  top:73px;
  height:44px;
  border-radius:999px 14px 14px 999px;
  background:
    linear-gradient(90deg, rgba(126,255,215,.92), rgba(90,225,176,.94) 30%, rgba(38,144,109,.96) 72%, rgba(24,102,80,.98));
  box-shadow:0 0 0 1px rgba(255,255,255,.12), 0 12px 24px rgba(0,0,0,.20);
}

.hc-bottle-glass::before{
  content:"";
  position:absolute;
  inset:6px 18px 6px 18px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(255,255,255,.38), rgba(255,255,255,0));
}

.hc-bottle-neck{
  position:absolute;
  right:12px;
  top:81px;
  width:36px;
  height:28px;
  border-radius:8px 999px 999px 8px;
  background:linear-gradient(180deg, rgba(94,206,170,.96), rgba(40,126,99,.98));
}

.hc-bottle-cap{
  position:absolute;
  right:0;
  top:86px;
  width:20px;
  height:18px;
  border-radius:5px 999px 999px 5px;
  background:linear-gradient(180deg, rgba(255,204,115,.98), rgba(179,116,45,.98));
  box-shadow:0 6px 12px rgba(0,0,0,.16);
}

.hc-bottle-animation-layer{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.hc-bottle-controls{
  margin-top:16px;
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:14px;
  align-items:stretch;
}

.hc-bottle-control-card{
  padding:14px 16px;
  border-radius:20px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(23,32,52,.08);
}

.hc-bottle-control-kicker{
  color:rgba(78,62,199,.92);
  font-size:.74rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-weight:900;
}

.hc-bottle-control-title{
  margin-top:8px;
  font-weight:900;
  color:rgba(23,32,52,.96);
}

.hc-bottle-control-text{
  margin-top:6px;
  color:rgba(23,32,52,.65);
  line-height:1.45;
}

.hc-bottle-control-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.hc-bottle-side{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.hc-bottle-panel{
  border-radius:26px;
}

.hc-bottle-feed{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:320px;
  max-height:460px;
  overflow:auto;
  padding-right:4px;
}

.hc-bottle-feed-item{
  display:flex;
  gap:10px;
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(23,32,52,.08);
  background:rgba(255,255,255,.76);
}

.hc-bottle-feed-item.is-system{
  background:linear-gradient(180deg, rgba(247,244,255,.92), rgba(242,240,255,.90));
}

.hc-bottle-feed-item.is-gift{
  background:linear-gradient(180deg, rgba(255,249,236,.95), rgba(255,243,213,.90));
}

.hc-bottle-feed-avatar{
  width:42px;
  height:42px;
  border-radius:14px;
  object-fit:cover;
  flex:0 0 auto;
}

.hc-bottle-feed-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(106,92,255,.12);
  color:rgba(78,62,199,.96);
  font-size:1rem;
  flex:0 0 auto;
}

.hc-bottle-feed-main{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:4px;
}

.hc-bottle-feed-title{
  font-weight:800;
  color:rgba(23,32,52,.94);
}

.hc-bottle-feed-text{
  color:rgba(23,32,52,.74);
  line-height:1.45;
  word-break:break-word;
}

.hc-bottle-feed-meta{
  color:rgba(23,32,52,.52);
  font-size:.82rem;
}

.hc-bottle-chat-form{
  margin-top:14px;
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:10px;
}

.hc-bottle-gift-target{
  padding:12px 14px;
  border-radius:18px;
  border:1px dashed rgba(106,92,255,.24);
  background:rgba(242,240,255,.78);
  color:rgba(23,32,52,.72);
  line-height:1.45;
}

.hc-bottle-gift-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
  margin-top:14px;
}

.hc-bottle-gift-card{
  padding:10px;
  border-radius:18px;
  border:1px solid rgba(23,32,52,.08);
  background:rgba(255,255,255,.78);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  text-align:center;
  transition:border-color .14s ease, transform .14s ease, box-shadow .14s ease;
}

.hc-bottle-gift-card:hover,
.hc-bottle-gift-card.is-selected{
  border-color:rgba(106,92,255,.32);
  transform:translateY(-1px);
  box-shadow:0 12px 24px rgba(23,32,52,.08);
}

.hc-bottle-gift-card img{
  width:52px;
  height:52px;
  object-fit:contain;
}

.hc-bottle-gift-name{
  font-weight:800;
  color:rgba(23,32,52,.94);
}

.hc-bottle-gift-price{
  color:rgba(78,62,199,.92);
  font-weight:700;
  font-size:.86rem;
}

.hc-bottle-gift-actions{
  margin-top:14px;
}

.hc-bottle-gift-flight{
  position:absolute;
  left:0;
  top:0;
  width:82px;
  padding:8px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.92);
  box-shadow:0 20px 40px rgba(23,32,52,.18);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  transform:translate(-50%, -50%);
  transition:transform 1.3s cubic-bezier(.2,.78,.18,1), opacity 1.3s ease;
  z-index:8;
}

.hc-bottle-gift-flight img{
  width:44px;
  height:44px;
  object-fit:contain;
}

.hc-bottle-gift-flight span{
  font-size:.72rem;
  line-height:1.2;
  text-align:center;
  color:rgba(23,32,52,.88);
  font-weight:800;
}

.hc-bottle-gift-flight.is-moving{
  opacity:.96;
}

.hc-bottle-gift-flight.is-done{
  opacity:0;
}

@media (max-width: 1199.98px){
  .hc-bottle-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width: 991.98px){
  .hc-games-hero{
    grid-template-columns:1fr;
  }
  .hc-bottle-board{
    min-height:700px;
  }
}

@media (max-width: 767.98px){
  .hc-bottle-board-shell{
    padding:14px;
  }
  .hc-bottle-board{
    min-height:820px;
  }
  .hc-bottle-table{
    inset:28% 11% 24% 11%;
  }
  .hc-bottle-seat{
    width:150px;
  }
  .hc-bottle-seat--0{left:50%; top:11%;}
  .hc-bottle-seat--1{left:79%; top:28%;}
  .hc-bottle-seat--2{left:79%; top:58%;}
  .hc-bottle-seat--3{left:50%; top:78%;}
  .hc-bottle-seat--4{left:21%; top:58%;}
  .hc-bottle-seat--5{left:21%; top:28%;}
  .hc-bottle-controls{
    grid-template-columns:1fr;
  }
}

@media (max-width: 575.98px){
  .hc-bottle-board{
    min-height:860px;
  }
  .hc-bottle-seat{
    width:134px;
  }
  .hc-bottle-seat-card{
    gap:8px;
    padding:10px;
  }
  .hc-bottle-seat-avatar{
    width:48px;
    height:48px;
    border-radius:16px;
  }
  .hc-bottle-seat-name{
    font-size:.86rem;
  }
  .hc-bottle-seat-meta{
    font-size:.75rem;
  }
  .hc-bottle-rotator{
    width:152px;
    height:152px;
  }
  .hc-bottle-gift-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
