/* 容器 */
.form-container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
}

/* 玩家信息卡片 */
.player-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.player-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}
.player-info p {
    margin: 5px 0;
}

/* 支付选项 */
.payment-option h4,
.payment-methods h4,
.gash-options h4 {
    font-size: 16px;
    margin-top: 20px;
    color: #444;
}

/* 按钮统一风格 */
.btn-pay {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff7e00;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-pay:hover {
    background-color: #e06b00;
}

.coin-pay-btn {
    width: 100%;
    text-align: center;
}

/* 支付方式图示 */
.payment-tile-group {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.payment-tile {
    flex: 1;
    border: 2px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.payment-tile input[type="radio"] {
    display: none;
}
.payment-tile input[type="radio"]:checked + .tile-content {
    border-color: #ff7e00;
    box-shadow: 0 0 10px rgba(255, 126, 0, 0.3);
}
.tile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.tile-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 8px;
}
.tile-label {
    font-size: 14px;
    color: #333;
}

/* 充值金额选项 */
.combo-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.combo-item {
    position: relative;
    flex: 1 1 calc(33% - 10px);
    min-width: 120px;
    background: #ff7e00;
}
.combo-radio {
    display: none;
}
.combo-card {
    background-color: #fff;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.combo-radio:checked + .combo-card {
    border-color: #ff7e00;
    background-color: #fff8f0;
}
.combo-name {
    font-size: 18px;
    font-weight: bold;
    color: #555;
}
.combo-coin {
    margin-top: 6px;
    font-size: 16px;
    color: #ff7e00;
}



/* 提交按钮 */
.submit-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #ff7e00;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.submit-btn:hover:not(.disabled) {
    background-color: #e06b00;
}
.submit-btn.disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* 小提示 */
.tip-text {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}
h4{
    font-size: 2rem !important;
    color: #f39 !important;
    font-weight: bold;
}

.combo-card-detail {
    line-height: 25px;
}