/* 买币页面样式 - Bootstrap版本 */
body {
    background-color: #000000;
    font-family: 'Metropolis Medium', sans-serif;
    color: #333333;
}

/* Logo样式 */
.buy-logo {
    max-width: 17vw;
    width: 43%;
    min-width: 15%;
    object-fit: contain;
}

/* Logo区域 */
.logo-section {
    padding: 40px 0 20px 0;
}

/* 表单标题 */
.form-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 0;
}

/* 价格显示 */
.price-section {
    margin-bottom: 25px;
}

.price-value {
    color: #10D078;
    font-weight: 600;
    font-size: 14px;
}

.price-label {
    color: #666666;
    font-size: 14px;
}

/* 表单容器 */
.buy-form-panel {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.panel{
    margin-bottom: 0;
}
.buy-form-body {
    padding: 30px 15px 20px 15px;
}

/* 表单控件 */
.form-control-custom {
    padding: 12px 15px;
    font-size: 12px;
}

.form-control-with-badge {
    padding: 12px 80px 12px 15px;
    font-size: 12px;
}

/* 移除表单控件聚焦时的阴影效果 */
.form-control:focus,
.form-control-custom:focus,
.form-control-with-badge:focus {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    outline: none;
}

/* 移除标签粗体 */
.control-label {
    font-weight: normal !important;
}

/* 提示文字 */
.note-text {
    color: white;
    font-size: 10px;
    text-align: left;
    margin-top: 15px;
    padding-left: 12px;
}

/* 订阅邮件部分 */
.newsletter-section {
    margin-top: 40px;
    padding: 30px 15px;
    text-align: left;
}

.newsletter-title {
    color: white;
    font-size: 14px;
    margin-bottom: 20px;
    margin-left: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    background-color:#212529;
    border: none;
    color: #fff;
    padding: 15px;
    border-radius: 4px;
    font-size: 10px;
}

.newsletter-input:focus {
    border: none;
    box-shadow: none;
    outline: none;
}

.newsletter-btn {
    background-color: #10D078;
    border: none;
    color: #000000;
    padding: 6px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #0ea368;
    color: #000000;
}

/* 应用商店Logo */
.app-stores {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.app-store-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.app-store-logo:hover {
    opacity: 1;
}

/* You Get标签 */
.you-get-label {
    color: #10D078 !important;
    font-weight: 600 !important;
}

.you-get-input {
    background-color: #e9ecef !important;
}

/* 货币标签 */
.currency-badge {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e9ecef;
    border: 1px solid #ced4da;
    color: #6c757d    ;
    font-size: 10px;
}

.currency-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.currency-info {
    width: 12px;
    height: 12px;
    opacity: 0.7;
}

/* 金额限制提示 */
.amount-limit {
    margin-top: 5px;
}

.amount-limit-top {
    display: block;
    margin-bottom: 8px;
    color: #666666;
    font-size: 10px;
    text-align: right;
}

/* 网络显示 */
.network-display {
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    color: #666666;
    cursor: not-allowed;
    font-size: 15px;
}

/* 购买按钮 */
.btn-buy {
    background: #10D078;
    border: none;
    color: #000000;
    font-weight: 500;
    margin-top: 20px;
    padding: 15px;
    font-size: 14px;
}

.btn-buy:hover {
    color: white;
}

.btn-buy:focus,
.btn-buy:active {
    background: linear-gradient(135deg, #0ea368, #0c8f5a);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 208, 120, 0.3);
}

.btn-buy:disabled {
    background: #6c757d !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

.btn-buy:disabled:hover {
    background: #6c757d !important;
    color: #ffffff !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .logo-section {
        padding: 20px 0 15px 0;
    }
    
    .form-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .buy-form-body {
        padding: 20px;
    }
    
    .price-section {
        text-align: center;
    }
    
    .btn-buy {
        padding: 12px;
        font-size: 15px;
    }
}