/* Vanguard Cloak 前端样式 */

.vc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 头部样式 */
.vc-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.vc-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vc-logo {
    font-size: 24px;
    font-weight: bold;
    color: #0073aa;
    margin: 0;
}

.vc-nav {
    display: flex;
    gap: 20px;
}

.vc-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.vc-nav a:hover {
    color: #0073aa;
}

/* 产品页面 */
.vc-product-section {
    padding: 40px 0;
}

.vc-product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.vc-product-image {
    flex: 1;
    text-align: center;
}

.vc-product-icon {
    font-size: 120px;
}

.vc-product-info {
    flex: 1;
}

.vc-product-title {
    font-size: 32px;
    margin: 0 0 20px 0;
    color: #333;
}

.vc-product-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vc-product-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.vc-product-features li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
}

.vc-product-price {
    margin: 30px 0;
    font-size: 24px;
}

.vc-price-label {
    color: #666;
    margin-right: 10px;
}

.vc-price-amount {
    color: #0073aa;
    font-weight: bold;
}

.vc-buy-button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.vc-buy-button:hover {
    background: #005a87;
}

/* 结账页面 */
.vc-checkout-section {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.vc-checkout-summary {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.vc-order-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.vc-order-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 0 0;
    font-size: 20px;
    font-weight: bold;
}

.vc-total-amount {
    color: #0073aa;
}

.vc-payment-section {
    margin-top: 30px;
}

.vc-pay-button {
    width: 100%;
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.vc-pay-button:hover {
    background: #005a87;
}

/* 账户页面 */
.vc-account-section {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.vc-account-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #ddd;
}

.vc-tab-button {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.vc-tab-button.active {
    border-bottom-color: #0073aa;
    color: #0073aa;
    font-weight: bold;
}

.vc-tab-content {
    display: none;
}

.vc-tab-content.active {
    display: block;
}

.vc-orders-table {
    width: 100%;
    border-collapse: collapse;
}

.vc-orders-table th,
.vc-orders-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.vc-orders-table th {
    background: #f9f9f9;
    font-weight: bold;
}

.vc-license-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.vc-license-info p {
    margin: 10px 0;
}

.vc-license-info code {
    background: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-family: monospace;
}

.vc-copy-btn {
    margin-left: 10px;
    padding: 5px 10px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.vc-domain-input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-right: 10px;
    width: 300px;
}

.vc-btn, .vc-btn-small {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

.vc-btn-small {
    padding: 5px 10px;
    font-size: 12px;
}

.vc-download-btn {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.vc-download-btn:hover {
    background: #218838;
}

/* 状态标签 */
.vc-status-pending {
    color: #ffc107;
    font-weight: bold;
}

.vc-status-completed {
    color: #28a745;
    font-weight: bold;
}

.vc-status-active {
    color: #28a745;
    font-weight: bold;
}

.vc-status-cancelled {
    color: #dc3545;
    font-weight: bold;
}

/* 登录/注册页面 */
.vc-auth-section {
    max-width: 400px;
    margin: 50px auto;
}

.vc-auth-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.vc-auth-card h2 {
    margin: 0 0 30px 0;
    text-align: center;
    color: #333;
}

.vc-form-group {
    margin-bottom: 20px;
}

.vc-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.vc-form-group input[type="email"],
.vc-form-group input[type="password"],
.vc-form-group input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.vc-submit-btn {
    width: 100%;
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.vc-submit-btn:hover {
    background: #005a87;
}

.vc-auth-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.vc-auth-link a {
    color: #0073aa;
    text-decoration: none;
}

/* 页脚 */
.vc-footer {
    text-align: center;
    padding: 40px 0;
    color: #666;
    margin-top: 60px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .vc-product-card {
        flex-direction: column;
    }
    
    .vc-header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .vc-nav {
        flex-direction: column;
        gap: 10px;
    }
}

