.igshop_container {
    max-width: 100%;
    margin: 0 auto;
    background: transparent;
}

/* 顶部导航栏 完全对标参考.top-bar */
.igshop_top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 15px 30px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    margin-bottom: 25px;
}

.igshop_top-bar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s;
}
.igshop_top-bar a:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.top-bar a i { font-size: 1.1em; }


/* 通用卡片 全新独立类名，原igshop_card所有样式完全不变 */
.data-card {
    background: transparent;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.data-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}
/* 卡片标题配套新类名 */
.data-card-title {
    font-size: 20px;
    color: #FFD700;
    margin: 0 0 20px 0;
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}


/* 通用卡片 对标参考.card 增加阴影、调整内边距 */
.igshop_card {
    background: transparent;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.igshop_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}
.igshop_card-title {
    font-size: 20px;
    color: #FFD700;
    margin: 0 0 20px 0;
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* 账号信息网格 对标参考.info-grid / .info-item 增加半透背景 */
.igshop_info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.igshop_info-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 16px;
    border-radius: 10px;
    border-left: 3px solid #FFD700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #ffffff;
}
.igshop_info-item i {
    color: #FFD700;
    font-size: 18px;
    width: 20px;
    text-align: center;
}


/* 快捷入口网格 全新独立类名，样式与原igshop_info-grid完全一致 */
.grid-card-wrap {
    display: grid;
    /* minmax(最小宽度, 自动均分)，数值越大卡片越宽、一行越少 */
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
}
.grid-card-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 16px;
    border-radius: 10px;
    border-left: 3px solid #FFD700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #ffffff;
    /* 文字超出自动省略，防止文字撑宽卡片 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.grid-card-item i {
    color: #FFD700;
    font-size: 18px;
    width: 20px;
    text-align: center;
    flex-shrink: 0; /* 图标固定不压缩 */
}

/* 商品网格卡片 对标参考.shop-grid / .shop-card 质感统一 */
.igshop_shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin: 20px 0;
}
.igshop_shop-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,215,0,0.18);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}
.igshop_shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 22px rgba(255,215,0,0.25);
    border-color: rgba(255,215,0,0.4);
}
.igshop_shop-card-name {
    font-size: 16px;
    font-weight: normal;
    color: #FFD700;
    margin-bottom: 12px;
    text-shadow: 0 0 6px rgba(255,215,0,0.3);
}
.igshop_shop-card-desc {
    color: #FF0000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.igshop_shop-card-type {
    padding: 8px 14px;
    background: rgba(255,215,0,0.1);
    border-radius: 8px;
    color: #00FA9A;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}
.igshop_shop-card-price {
    font-size: 17px;
    margin-bottom: 24px;
}
.igshop_shop-card-price-num {
    font-size: 14px;
    margin-bottom: 24px;
}

/* 购买按钮 对标参考.buy-btn 圆角、渐变、阴影统一 */
.igshop_buy-btn {
    display: inline-block;
    width: 90%;
    padding: 8px 0;
    background: linear-gradient(90deg, #ff4500, #ff8c00);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(255,69,0,0.35);
    transition: all 0.3s ease;
    align-self: center;
    border: none;
    margin-top: 10px;
}
.igshop_buy-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(255,69,0,0.55);
    text-shadow: 0 0 8px #fff;
}
.igshop_kill-btn {
    display: inline-block;
    width: 90%;
    padding: 8px 0;
    background: linear-gradient(90deg,#20bdff,#007bff);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 10px;
    border: none;
    box-shadow: 0 6px 20px rgba(0,123,255,0.35);
    transition: all 0.3s ease;
    align-self: center;
}
.igshop_kill-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(0,123,255,0.55);
    text-shadow: 0 0 8px #fff;
}
.igshop_gray-btn {
    background: #666 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.igshop_old-price {
    text-decoration: line-through;
    color: #999;
}

/* 抢购提示框 质感对齐tips-box */
.igshop_sale-tip {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 20px 0;
    color: #ffdf80;
    line-height: 1.7;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 0 15px rgba(255,215,0,0.15);
    transition: all 0.3s ease;
}
.igshop_sale-tip:hover {
    transform: translateY(-2px);
}

.igshop_warn-tip {
    background: rgba(255,80,80,.06);
    border: 1px solid rgba(255,80,80,.3);
    box-shadow: 0 0 10px rgba(255,80,80,0.15);
    color: #ff9999;
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    transition: all 0.3s ease;
}
.igshop_warn-tip:hover {
    transform: translateY(-2px);
}

/* 图片展示区域 - 表格整体居中 */
.igshop_img-show-box {
    text-align: center;
    margin: 20px 0;
}
.igshop_img-show-box table {
    width: auto;
    margin: 0 auto;
    border-spacing: 16px;
}
.igshop_img-show-box img {
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255,215,0,0.2);
}

/* 无装备空白提示 */
.igshop_empty-tip {
    padding: 40px;
    text-align: center;
    color: #ff5555;
    font-size: 16px;
}