#screen-culo-menu {
  background: radial-gradient(ellipse at 50% 30%, #38162a 0%, #0f0710 72%);
  gap: 22px;
}

#screen-culo-menu .submenu-title {
  color: #f0d0e8;
  text-shadow: 0 0 22px rgba(220,90,170,0.26), 1px 1px 0 #301020;
}

#screen-culo-menu .submenu-desc {
  color: #a07090;
}

#screen-culo-menu .submenu-card-icon {
  border-color: #dc5aaa !important;
  box-shadow: 0 0 22px rgba(220,90,170,0.22), 3px 6px 18px rgba(0,0,0,0.6);
}

#screen-culo-menu .culo-menu-action {
  position: relative;
  overflow: hidden;
  color: #fff;
  font-weight: 700;
  border: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.14s ease, filter 0.14s ease, box-shadow 0.18s ease;
}

#screen-culo-menu .culo-menu-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  right: 1px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

#screen-culo-menu .culo-menu-action--solo {
  background: rgba(20,90,60,0.45);
  border-color: rgba(80,220,140,0.35);
}

#screen-culo-menu .culo-menu-action--private {
  background: rgba(20,40,110,0.45);
  border-color: rgba(100,140,255,0.35);
}

#screen-culo-menu .culo-menu-action--join {
  background: rgba(90,55,10,0.45);
  border-color: rgba(230,160,40,0.35);
}

#screen-culo-menu .culo-menu-action--public {
  background: rgba(90,15,60,0.45);
  border-color: rgba(220,80,160,0.35);
}

#screen-culo-menu .culo-menu-action:hover {
  color: #fff;
  transform: scale(1.03);
  filter: brightness(1.06);
}

#screen-culo-menu .culo-menu-action--solo:hover {
  background: rgba(20,90,60,0.65);
  box-shadow: 0 0 18px rgba(80,220,140,0.25);
}

#screen-culo-menu .culo-menu-action--private:hover {
  background: rgba(20,40,110,0.65);
  box-shadow: 0 0 18px rgba(100,140,255,0.25);
}

#screen-culo-menu .culo-menu-action--join:hover {
  background: rgba(90,55,10,0.65);
  box-shadow: 0 0 18px rgba(230,160,40,0.25);
}

#screen-culo-menu .culo-menu-action--public:hover {
  background: rgba(90,15,60,0.65);
  box-shadow: 0 0 18px rgba(220,80,160,0.25);
}

#screen-culo-menu .submenu-rules-link {
  color: #f0d0e8;
  border-color: rgba(220,90,170,0.34);
  background: rgba(36,8,26,0.7);
}

#screen-culo-menu .submenu-rules-link:hover {
  color: #ffe4f4;
  border-color: rgba(240,128,196,0.64);
  background: rgba(70,18,50,0.86);
}

#screen-culo-game {
  background: radial-gradient(ellipse at center, #38162a 0%, #0f0710 72%);
  padding: 64px 14px 22px;
  gap: 12px;
}

.culo-wrap {
  width: min(980px, 96vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.culo-players {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.culo-player {
  position: relative;
  min-width: 130px;
  padding: 8px 10px;
  border: 1px solid rgba(210,130,170,0.25);
  border-radius: 8px;
  background: rgba(0,0,0,0.28);
  color: #f0d0e8;
  text-align: center;
  font-size: 0.78rem;
}

.culo-player.current {
  border-color: #e898c8;
  box-shadow: 0 0 16px rgba(220,130,180,0.35);
}

.culo-player.passed {
  opacity: 0.55;
}

.culo-role {
  display: block;
  margin-top: 3px;
  color: #c878b0;
  font-size: 0.68rem;
}

.culo-table {
  position: relative;
  width: min(620px, 94vw);
  min-height: 148px;
  border: 2px solid rgba(210,130,170,0.28);
  border-radius: 12px;
  background: rgba(0,0,0,0.24);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
}

.culo-round-banner {
  position: absolute;
  inset: 12px auto auto 50%;
  transform: translate(-50%, -10px) scale(0.96);
  z-index: 3;
  min-width: min(360px, calc(100% - 24px));
  padding: 10px 14px;
  border: 1px solid rgba(240, 190, 220, 0.48);
  border-radius: 8px;
  background: rgba(32, 8, 22, 0.94);
  box-shadow: 0 16px 34px rgba(0,0,0,0.42), 0 0 20px rgba(220,130,180,0.26);
  color: #ffe5f4;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.culo-round-banner.show {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  animation: culoRoundPulse 0.42s ease both;
}

.culo-round-banner strong {
  display: block;
  color: #f0c040;
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.culo-round-banner span {
  display: block;
  margin-top: 2px;
  color: #f8c8e4;
  font-size: 0.78rem;
}

@keyframes culoRoundPulse {
  0% { transform: translate(-50%, -12px) scale(0.92); }
  70% { transform: translate(-50%, 2px) scale(1.03); }
  100% { transform: translate(-50%, 0) scale(1); }
}

.culo-current {
  color: #f0b0d8;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
}

.culo-played {
  display: flex;
  gap: 6px;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.culo-table-card.hand-card {
  width: 54px;
  height: 78px;
  border-width: 1px;
  border-radius: 5px;
  cursor: default;
}

.culo-table-card.hand-card:hover {
  transform: none;
}

.culo-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.culo-actions .btn:disabled {
  opacity: 0.38;
  cursor: default;
  box-shadow: none;
}

.culo-hand {
  min-height: 132px;
  justify-content: flex-start;
}

#screen-culo-game .hand-card.selected {
  transform: translateY(-12px);
  border-color: #e898c8;
  box-shadow: 0 0 18px rgba(210,120,180,0.62), 2px 12px 16px rgba(0,0,0,0.6);
}

.culo-results {
  color: #f0d0e8;
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.5;
}

.culo-results strong {
  color: #f0c040;
}

#btn-culo-end-game {
  border-color: rgba(200,120,170,0.42);
  color: #f0c0e0;
}

.culo-flying-card {
  position: fixed;
  width: 42px;
  height: 60px;
  z-index: 1200;
  border-radius: 5px;
  border: 1px solid #bbb;
  overflow: hidden;
  pointer-events: none;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.7s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,0.45);
}

@media (max-width: 600px) {
  #screen-culo-game {
    padding-top: 58px;
  }

  .culo-player {
    min-width: 104px;
    padding: 7px 8px;
    font-size: 0.72rem;
  }

  .culo-table-card.hand-card {
    width: 42px;
    height: 60px;
  }
}

/* ── Barra de estado y menú in-game: tema rosa ── */
#screen-culo-game .status-bar {
  color: #d898c8;
}

#screen-culo-game .game-menu-wrap .btn-back {
  color: #f0c8e0;
  border-color: rgba(210,130,170,0.32);
}

#screen-culo-game .game-menu-wrap.open .btn-back,
#screen-culo-game .game-menu-wrap .btn-back:hover {
  border-color: rgba(210,100,160,0.55);
  color: #fff;
}

#screen-culo-game .game-menu-dropdown {
  background: rgba(15,7,12,0.95);
  border-color: rgba(210,130,170,0.22);
}

#screen-culo-game .game-menu-dropdown button {
  color: #f0c8e0;
}

#screen-culo-game .game-menu-dropdown button:hover {
  color: #fff;
}
