.tab3-wrap{margin:10px 0;}
.tab3-nav{display: flex;
    gap: 12px;
    list-style: none;
    padding: 0 !important;}

.tab3-btn {
    flex: 1;
    min-width: 160px;

    background:
        linear-gradient(
            180deg,
            rgba(220, 190, 140, 0.14) 0%,
            rgba(0, 0, 0, 0.85) 100%
        ),
        radial-gradient(
            at top,
            rgba(255, 255, 255, 0.06),
            transparent 60%
        ),
        #0a0a0a;

    border: 1px solid rgba(200, 170, 120, 0.25);

    color: #f1e7d0;

    font-weight: 800;
    padding: 12px 14px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.85),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);

    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tab3-btn.is-active {
    border-color: rgba(240, 210, 150, 0.55);

    box-shadow:
        0 0 14px rgba(220, 190, 140, 0.2),
        inset 0 0 6px rgba(255, 255, 255, 0.06);

    filter: brightness(1.12);
}

.tab3-btn:hover {
    transform: translateY(-3px);

    border-color: rgba(220, 190, 140, 0.45);

    box-shadow:
        0 0 12px rgba(220, 190, 140, 0.18);

    filter: brightness(1.1);
}

.tab3-btn img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
}
.tab3-nav li {
    flex: 1;
}



.tab3-panels{position:relative;}
.tab3-panel{display:none;}
.tab3-panel.is-active{display:block;}

.tab3-note{font-size:13px;color:#f0d9ff;opacity:.9;margin:6px 0 0;text-align:center;}

.info-panel-list{display:grid;gap:14px;grid-template-columns:1fr;}
@media (min-width:900px){.info-panel-list{grid-template-columns:1fr;}}
  
  .gamble-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 10px;
}

.gamble-table .rate-row{
  background:rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.08);
}

.gamble-table td{
  padding:12px 14px;
  vertical-align:top;
}

.gamble-table .rate{
  width:90px;
  font-weight:800;
  color:#f7d9fb;
  text-align:center;
  border-right:1px solid rgba(255,255,255,0.08);
}

.gamble-table .items{
  font-size:14px;
  line-height:1.6;
}

.dot{
  color:#f5d042;
  font-size:12px;
  margin-right:6px;
}
.boss-card-list {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 900px) {
  .boss-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .boss-card-list {
    grid-template-columns: 1fr;
  }
}

.boss-card {
 background: linear-gradient(
        180deg,
        rgba(200, 170, 120, 0.10) 0%,   
        rgba(0, 0, 0, 0.85) 100%
    ),
    radial-gradient(
        at top,
        rgba(255, 255, 255, 0.05),
        transparent 60%
    ),
    #0a0a0a;

    border: 1px solid rgba(200, 170, 120, 0.25);

    border-radius: 14px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.85),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
  border-radius: 8px;
  color: #f5f5f5;
  font-size: 14px;
}

.boss-card--hot {
  border-color: #cda235;
  box-shadow: 0 0 8px rgba(205,162,53,0.4);
  border: 1px solid rgba(160,110,255,0.45);
  /* border-radius:14px; */
  box-shadow:
    0 20px 50px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(160,110,255,0.15);
  box-shadow: 0 0 18px rgba(170,120,255,0.55),
    0 28px 65px rgba(0,0,0,0.85),
    inset 0 0 0 1px rgba(200,150,255,0.35);
  filter:brightness(1.1);
}

.boss-card__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
  border-bottom: 1px solid #333;
  padding-bottom: 6px;
}

.boss-card__time {
  font-weight: 700;
  font-size: 16px;
  color: #facc6b;
}

.boss-card__name {
  font-weight: 700;
  font-size: 18px;
color:#f7d9fb;
text-align:center;
    background: linear-gradient(to bottom, #fff 50%, #eaeaea 50%, #eaeaea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.boss-card__map {
  font-size: 12px;
  color: #9ca3af;
  margin-left: 4px;
}

.boss-card__tag-hot {
  display: inline-block;
  margin-left: 4px;
  padding: 0 6px;
  font-size: 12px;
  border-radius: 999px;
  background: #7f1d1d;
  color: #fca5a5;
}

.boss-card__tag-yellow {
  display: inline-block;
  margin-left: 4px;
  padding: 0 6px;
  font-size: 12px;
  border-radius: 999px;
  background-color: rgb(205, 162, 53);
  color: #fff;
}

.boss-card__meta {
  margin-top: 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.boss-card__tag {
  display: inline-block;
  padding: 1px 8px;
  font-size: 11px;
  border-radius: 999px;
  line-height: 1.4;
  border: 1px solid transparent;
}

.boss-card__tag--monster {
  background: #14532d;
  border-color: #22c55e;
  color: #bbf7d0;
}

.boss-card__tag--tp-on {
  background: #1d4ed8;
  border-color: #3b82f6;
  color: #dbeafe;
}

.boss-card__tag--tp-off {
  background: #111827;
  border-color: #6b7280;
  color: #e5e7eb;
}

.boss-card__tag--rt-on {
  background: #0f766e;
  border-color: #14b8a6;
  color: #ccfbf1;
}

.boss-card__tag--rt-off {
  background: #111827;
  border-color: #6b7280;
  color: #e5e7eb;
}

.boss-card__move {
  font-size: 12px;
  color: #9ca3af;
}

.boss-card__label-fee {
  color: #facc6b;
  font-weight: 600;
}

.boss-card__label-cond {
  color: #93c5fd;
  font-weight: 600;
}

.boss-card__body {
  margin-top: 6px;
}

.boss-card__drops {
  margin: 0;
  padding-left: 18px;
}

.boss-card__drops li {
  margin-bottom: 2px;
}

.drop-highlight {
  color: #ff4d4d;
  font-weight: 700;
}

.note-highlight {
  color: #f97316;
  font-size: 13px;
}

  .boss-card__link {
    display: inline-block;
    padding: 12px 22px;

    border-radius: 6px;

    background:
        linear-gradient(
            180deg,
            rgba(220, 190, 140, 0.18) 0%,
            rgba(0, 0, 0, 0.8) 100%
        ),
        radial-gradient(
            at top,
            rgba(255, 255, 255, 0.08),
            transparent 60%
        ),
        #0d0c0a;

    border: 1px solid rgba(220, 190, 140, 0.35);

    color: #f5ecd8 !important;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;

    cursor: pointer;
    margin-bottom: 12px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.85),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);

    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease, border-color .15s ease;
}

.boss-card__link:hover {
    transform: translateY(-2px);

    border-color: rgba(240, 210, 150, 0.6);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.9),
        0 0 16px rgba(220, 190, 140, 0.25);

    filter: brightness(1.12);
}

.boss-card__link:active {
    transform: translateY(0);

    box-shadow:
        inset 0 0 8px rgba(0,0,0,0.7);

    filter: brightness(0.97);
}

.boss-card--package {
    background: linear-gradient(
        180deg,
        rgba(200, 170, 120, 0.10) 0%,   
        rgba(0, 0, 0, 0.85) 100%
    ),
    radial-gradient(
        at top,
        rgba(255, 255, 255, 0.05),
        transparent 60%
    ),
    #0a0a0a;

    border: 1px solid rgba(200, 170, 120, 0.25);

    border-radius: 14px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.85),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);

    filter: brightness(1.05);

    text-align: center;

    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, border-color .2s ease;
}

.boss-card--package:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 255, 255, 0.18);

    box-shadow:
        0 16px 45px rgba(0, 0, 0, 0.9),
        0 0 12px rgba(255, 255, 255, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);

    filter: brightness(1.1);
}

.boss-card--package .boss-card__header{
  border-bottom:none;
  padding-bottom:0;
}

.boss-card--package .boss-card__name{
  font-size:26px;
  font-weight:800;
  letter-spacing:0.5px;
  color:#f7d9fb;
}

.boss-card--package .boss-card__name img{
  display:block;
  margin:0 auto 10px;
  width:200px;
}

.package-price{
  margin:14px 0 6px;
  font-size:18px;
  font-weight:700;
  color:#ffd166;
}

.package-warning{
  margin-bottom:12px;
  font-size:13px;
  color:#f97316;
  font-weight:600;
}

.package-list{
  margin-top:10px;
  padding:14px 16px;
  border-radius:10px;

}

.package-list p{
  margin:6px 0;
      font-size: 17px;
    text-align: center;
}

.info-panel-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
}

@media(max-width:900px){
  .info-panel-list{
    grid-template-columns:1fr;
  }
}


.info-panel{
background: linear-gradient(
        180deg,
        rgba(200, 170, 120, 0.10) 0%,   
        rgba(0, 0, 0, 0.85) 100%
    ),
    radial-gradient(
        at top,
        rgba(255, 255, 255, 0.05),
        transparent 60%
    ),
    #0a0a0a;

    border: 1px solid rgba(200, 170, 120, 0.25);

    border-radius: 14px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.85),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  padding:18px 20px;
  color:#e5e5e5;
}

.info-panel__head{
  display:flex;
  align-items:center;
  gap:10px;
  padding-bottom:10px;
  margin-bottom:12px;
  border-bottom:1px solid #2a2a2a;
}

.info-panel__index{
  font-weight:800;
  color:#facc6b;
  font-size:18px;
}

.info-panel__title{
  font-size:18px;
  font-weight:700;
  margin:0;
  color:#ffffff;
background: linear-gradient(to bottom, #fff 50%, #eaeaea 50%, #eaeaea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

h3.info-panel__title {
margin-bottom:5px;
}


.info-panel__badge{
  margin-left:auto;
  font-size:12px;
  padding:2px 10px;
  border-radius:999px;
  font-weight:600;
}

.badge-gold{
  background:#7c5c1f;
  color:#facc6b;
}

.badge-red{
  background:#7f1d1d;
  color:#fecaca;
}

.badge-blue{
  background:#1e3a8a;
  color:#bfdbfe;
}


.info-panel__body{
  font-size:14px;
  line-height:1.7;
}

.info-panel__body p{
  margin:0 0 6px;
}


.info-panel,
.info-panel *{
  user-select:none;
}
























.doll-grade td { 
            background-color: rgba(30, 24, 16, 0.8);

box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.6),
    0 0 18px rgba(220, 190, 140, 0.35),   
    inset 0 0 6px rgba(255, 230, 180, 0.12);
        }
        .boss-table {
  align-self: flex-start;
}

.boss-table-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width:900px){
  .boss-table-grid{
    grid-template-columns:1fr;
  }
}