/* ============================================
   音创·DNS - Liquid Glass UI System
   Realistic Glassmorphism Design
   ============================================ */

/* CSS Variables */
:root {
    --bg-primary: #1a1a2e;
    --bg-grid-color: #E1E1E1;
    
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(51, 51, 51, 0.12);
    --glass-shadow-inset-1: inset 2px -2px 2px -1px rgba(255, 255, 255, 0.9);
    --glass-shadow-inset-2: inset -2px 2px 2px -1px rgba(255, 255, 255, 0.9);
    --glass-shadow-inset-3: inset 8px -8px 8px -8px rgba(255, 255, 255, 0.55);
    --glass-shadow-inset-4: inset -8px 8px 8px -8px rgba(255, 255, 255, 0.55);
    --glass-shadow-inner-border: inset 0 0 2px rgba(0, 0, 0, 0.7);
    --glass-shadow-outer: 0 8px 24px rgba(0, 0, 0, 0.18);
    
    --text-primary: #f0f0f0;
    --text-secondary: #c8c8c8;
    --text-muted: #999;
    
    --accent-dark: #e8e8e8;
    --accent-darker: #d0d0d0;
    --accent-light: #b8b8b8;
    
    --success: #4ade80;
    --error: #f87171;
    --warning: #fbbf24;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #1a1a2e;
    overflow-x: hidden;
    
    /* 壁纸背景 */
    background-image: url('../paperwall/paperwall.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   LIQUID GLASS COMPONENTS
   ============================================ */

.glass-panel {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    
    box-shadow:
        var(--glass-shadow-inset-1),
        var(--glass-shadow-inset-2),
        var(--glass-shadow-inset-3),
        var(--glass-shadow-inset-4),
        var(--glass-shadow-inner-border),
        var(--glass-shadow-outer);
}

.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    
    box-shadow:
        inset 2px -2px 2px -1px rgba(255, 255, 255, 0.85),
        inset -2px 2px 2px -1px rgba(255, 255, 255, 0.85),
        inset 6px -6px 6px -6px rgba(255, 255, 255, 0.5),
        inset -6px 6px 6px -6px rgba(255, 255, 255, 0.5),
        inset 0 0 2px rgba(0, 0, 0, 0.5),
        0 6px 18px rgba(0, 0, 0, 0.14);
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow:
        inset 2px -2px 2px -1px rgba(255, 255, 255, 0.9),
        inset -2px 2px 2px -1px rgba(255, 255, 255, 0.9),
        inset 6px -6px 6px -6px rgba(255, 255, 255, 0.55),
        inset -6px 6px 6px -6px rgba(255, 255, 255, 0.55),
        inset 0 0 2px rgba(0, 0, 0, 0.6),
        0 12px 32px rgba(0, 0, 0, 0.22);
}

/* Glass Button */
.glass-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    overflow: hidden;
    
    background: rgba(45, 45, 45, 0.35);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    color: #f0f0f0;
    
    box-shadow:
        inset 1px -1px 2px -1px rgba(255, 255, 255, 0.25),
        inset -1px 1px 2px -1px rgba(255, 255, 255, 0.08),
        0 4px 14px rgba(0, 0, 0, 0.18),
        0 2px 6px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    
    transition: all 0.3s ease;
}

.glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.glass-btn:hover {
    transform: translateY(-2px);
    background: rgba(55, 55, 55, 0.45);
    box-shadow:
        inset 1px -1px 2px -1px rgba(255, 255, 255, 0.32),
        inset -1px 1px 2px -1px rgba(255, 255, 255, 0.12),
        0 8px 22px rgba(0, 0, 0, 0.28),
        0 4px 10px rgba(0, 0, 0, 0.16),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.glass-btn:hover::before {
    left: 100%;
}

.glass-btn:active {
    transform: translateY(0);
    background: rgba(40, 40, 40, 0.5);
    box-shadow:
        inset 2px 2px 4px rgba(0, 0, 0, 0.25),
        0 2px 6px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Button Variants */
.glass-btn--primary {
    background: rgba(30, 30, 30, 0.35);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
}

.glass-btn--primary:hover {
    background: rgba(40, 40, 40, 0.5);
}

.glass-btn--outline {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    color: #e8e8e8;
    border: 1.5px solid rgba(200, 200, 200, 0.25);
    
    box-shadow:
        inset 1px -1px 2px rgba(255, 255, 255, 0.6),
        inset -1px 1px 2px rgba(255, 255, 255, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.glass-btn--outline:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(220, 220, 220, 0.35);
}

.glass-btn--danger {
    background: rgba(150, 40, 40, 0.35);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
}

.glass-btn--danger:hover {
    background: rgba(170, 50, 50, 0.48);
}

.glass-btn--large {
    padding: 18px 44px;
    font-size: 17px;
    border-radius: 14px;
}

.glass-btn--full {
    width: 100%;
}

.glass-btn--small {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 8px;
}

/* Glass Input */
.glass-input {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-primary);
    outline: none;
    
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    
    box-shadow:
        inset 2px -2px 3px -1px rgba(255, 255, 255, 0.25),
        inset -2px 2px 3px -1px rgba(0, 0, 0, 0.15),
        inset 4px -4px 6px -4px rgba(255, 255, 255, 0.12),
        inset -4px 4px 6px -4px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.18),
        inset 0 0 3px rgba(0, 0, 0, 0.1);
    
    transition: all 0.25s ease;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 2px -2px 3px -1px rgba(255, 255, 255, 0.32),
        inset -2px 2px 3px -1px rgba(0, 0, 0, 0.12),
        inset 4px -4px 6px -4px rgba(255, 255, 255, 0.16),
        inset -4px 4px 6px -4px rgba(0, 0, 0, 0.06),
        inset 0 0 0 2px rgba(200, 200, 220, 0.35),
        0 0 0 4px rgba(150, 170, 200, 0.12);
}

.glass-input::placeholder {
    color: #888;
}

/* Glass Select */
.glass-select {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-primary);
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23aaa' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
    
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    
    box-shadow:
        inset 2px -2px 3px -1px rgba(255, 255, 255, 0.25),
        inset -2px 2px 3px -1px rgba(0, 0, 0, 0.15),
        inset 4px -4px 6px -4px rgba(255, 255, 255, 0.12),
        inset -4px 4px 6px -4px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.18),
        inset 0 0 3px rgba(0, 0, 0, 0.1);
    
    transition: all 0.25s ease;
}

.glass-select:focus {
    background-color: rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 2px -2px 3px -1px rgba(255, 255, 255, 0.32),
        inset -2px 2px 3px -1px rgba(0, 0, 0, 0.12),
        inset 0 0 0 2px rgba(200, 200, 220, 0.35),
        0 0 0 4px rgba(150, 170, 200, 0.12);
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(20, 20, 35, 0.5);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.12);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

.navbar-brand {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.welcome-text {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   MAIN LAYOUT
   ============================================ */

.main-content {
    padding: 48px 20px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 70px 40px;
    margin-bottom: 48px;
}

.hero-section h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-section > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 400;
}

.domain-preview {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin: 32px 0 !important;
}

.domain-preview strong {
    color: var(--accent-dark);
    font-weight: 700;
    font-family: "SF Mono", "Consolas", monospace;
}

.hero-section .glass-btn {
    margin-top: 12px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 52px;
}

.feature-card {
    padding: 38px 28px;
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(59, 130, 246, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    
    box-shadow:
        inset 2px -2px 3px rgba(255, 255, 255, 0.12),
        inset -2px 2px 3px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.18);
    
    font-size: 1.6rem;
    font-weight: 300;
    color: #93c5fd;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.3px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* ============================================
   FORM SECTION
   ============================================ */

.form-section {
    padding: 48px 44px;
    max-width: 680px;
    margin: 0 auto 32px;
}

.form-section h2 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 36px;
    font-size: 0.98rem;
}

.domain-form .form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 650;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.input-with-suffix {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.input-with-suffix .glass-input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.input-suffix {
    display: flex;
    align-items: center;
    padding: 0 20px;
    white-space: nowrap;
    
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    
    border: none;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    
    box-shadow:
        inset 2px -2px 2px rgba(255, 255, 255, 0.15),
        inset -2px 2px 2px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.1);
    
    color: var(--text-secondary);
    font-weight: 600;
    font-family: "SF Mono", "Consolas", "Monaco", monospace;
    font-size: 14px;
    user-select: all;
}

.form-hint {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 13px;
}

/* Info Box */
.info-box {
    max-width: 680px;
    margin: 0 auto;
    padding: 28px 32px;
    
    background: rgba(251, 243, 180, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(210, 195, 130, 0.25);
    border-left: 4px solid rgba(251, 191, 36, 0.5);
    border-radius: 12px;
    
    box-shadow:
        inset 2px -2px 2px rgba(255, 255, 255, 0.12),
        0 4px 14px rgba(0, 0, 0, 0.15);
}

.info-box h4 {
    color: #fbbf24;
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 15px;
}

.info-box ul {
    list-style-position: inside;
    color: var(--text-secondary);
}

.info-box li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ============================================
   ALERTS
   ============================================ */

.alert {
    padding: 16px 22px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 14px;
    
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    box-shadow:
        inset 2px -2px 2px rgba(255, 255, 255, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.08);
}

.alert-error {
    background: rgba(248, 113, 113, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(248, 113, 113, 0.25);
}

.alert-success {
    background: rgba(74, 222, 128, 0.15);
    color: #86efac;
    border: 1px solid rgba(74, 222, 128, 0.25);
}

/* ============================================
   MY DOMAINS TABLE
   ============================================ */

.my-domains-section {
    padding: 38px 36px;
    margin-bottom: 32px;
}

.my-domains-section h3 {
    color: var(--accent-dark);
    margin-bottom: 24px;
    font-size: 1.4rem;
    font-weight: 750;
    letter-spacing: -0.3px;
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table th,
.table td {
    padding: 15px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table th {
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tbody tr {
    transition: background 0.2s ease;
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.06);
}

code {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    font-family: "SF Mono", "Consolas", "Monaco", monospace;
    font-size: 0.9em;
    color: var(--accent-dark);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Status Badge */
.status {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.3px;
}

.status-active {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.status-inactive {
    background: rgba(248, 113, 113, 0.2);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.status-pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.empty-state {
    text-align: center;
    padding: 52px 24px;
    color: rgba(180, 190, 200, 0.7);
}

.empty-state p {
    margin-bottom: 18px;
    font-size: 15px;
}

/* ============================================
   AUTH PAGES (Login/Register)
   ============================================ */

.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 48px 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 36px;
}

.auth-header h1 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

.auth-footer {
    text-align: center;
    margin-top: 28px;
    color: var(--text-muted);
    font-size: 14px;
}

.auth-footer a {
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 650;
    border-bottom: 1.5px solid transparent;
    transition: border-color 0.2s ease;
}

.auth-footer a:hover {
    border-bottom-color: var(--accent-dark);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: rgba(15, 15, 28, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 20px;
    text-align: center;
    color: rgba(180, 180, 190, 0.7);
    margin-top: 56px;
    font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero-section {
        padding: 48px 24px;
    }
    
    .hero-section h2 {
        font-size: 1.85rem;
    }
    
    .form-section {
        padding: 34px 24px;
    }
    
    .auth-container {
        padding: 36px 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar .container {
        flex-direction: column;
        height: auto;
        padding: 16px 20px;
        gap: 12px;
    }
    
    .table {
        font-size: 13px;
    }
    
    .table th,
    .table td {
        padding: 11px 10px;
    }
    
    .my-domains-section {
        padding: 28px 20px;
    }
    
    .input-with-suffix {
        flex-direction: column;
    }
    
    .input-with-suffix .glass-input {
        border-top-right-radius: 12px;
        border-bottom-right-radius: 0;
        border-bottom: none;
    }
    
    .input-suffix {
        border-top-right-radius: 0;
        border-bottom-left-radius: 12px;
        border-top: 1.5px solid rgba(180, 180, 180, 0.25);
        justify-content: center;
        padding: 12px 20px;
    }
}

/* ============================================
   SSL CERTIFICATE PAGE STYLES
   ============================================ */

.page-header {
    text-align: center;
    padding: 48px 40px;
    margin-bottom: 32px;
}

.page-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.domain-preview-inline {
    margin-top: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    
    box-shadow:
        inset 1px -1px 2px rgba(255, 255, 255, 0.15),
        inset -1px 1px 2px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.domain-preview-inline strong {
    color: var(--accent-dark);
    font-weight: 700;
    font-family: "SF Mono", "Consolas", monospace;
}

.result-section {
    max-width: 800px;
    margin: 0 auto 32px;
    padding: 38px 36px;
}

.result-section h3 {
    color: var(--accent-dark);
    margin-bottom: 24px;
    font-size: 1.35rem;
    font-weight: 750;
    letter-spacing: -0.3px;
}

.certificate-info {
    /* Container for certificate details */
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.info-item {
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    box-shadow:
        inset 1px -1px 2px rgba(255, 255, 255, 0.12),
        inset -1px 1px 2px rgba(0, 0, 0, 0.06),
        inset 0 0 2px rgba(0, 0, 0, 0.05);
}

.info-item label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
}

.info-item code,
.info-item span {
    font-size: 14px;
    font-weight: 650;
    color: var(--accent-dark);
    word-break: break-all;
}

.notice-box {
    padding: 22px 26px;
    background: rgba(70, 130, 180, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 160, 210, 0.2);
    border-left: 4px solid rgba(96, 165, 250, 0.5);
    border-radius: 12px;
    margin-bottom: 18px;
    
    box-shadow:
        inset 2px -2px 2px rgba(255, 255, 255, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.notice-box h4 {
    color: #60a5fa;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.notice-box ol,
.notice-box ul {
    padding-left: 22px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.notice-box li {
    margin-bottom: 6px;
    font-size: 14px;
}

.notice-box strong {
    font-weight: 700;
    color: #1a4565;
}

.notice-box-warning {
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.2);
    border-left-color: rgba(251, 191, 36, 0.5);
}

.notice-box-warning h4 {
    color: #fbbf24;
}

.notice-box-warning ol,
.notice-box-warning ul {
    color: var(--text-secondary);
}

.notice-box-warning strong {
    color: #6a5510;
}

.certificates-list {
    padding: 38px 36px;
    margin-bottom: 32px;
}

.certificates-list h3 {
    color: var(--accent-dark);
    margin-bottom: 24px;
    font-size: 1.4rem;
    font-weight: 750;
    letter-spacing: -0.3px;
}

.help-section {
    max-width: 800px;
    margin: 0 auto 32px;
    padding: 38px 36px;
}

.help-section h3 {
    color: var(--accent-dark);
    margin-bottom: 24px;
    font-size: 1.35rem;
    font-weight: 750;
}

.help-content {
    display: grid;
    gap: 20px;
}

.help-item {
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    box-shadow:
        inset 1px -1px 2px rgba(255, 255, 255, 0.12),
        inset -1px 1px 2px rgba(0, 0, 0, 0.06);
}

.help-item h4 {
    color: var(--accent-dark);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.help-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   SSL VERIFICATION INFO STYLES
   ============================================ */

.verify-info-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px;
    
    box-shadow:
        inset 2px -2px 3px rgba(255, 255, 255, 0.12),
        inset -2px 2px 3px rgba(0, 0, 0, 0.08),
        0 4px 14px rgba(0, 0, 0, 0.15);
}

.verify-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.verify-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge-success {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.badge-pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.verify-table {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(200, 200, 200, 0.28);
}

.verify-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    padding: 14px 18px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease;
}

.verify-row:last-child {
    border-bottom: none;
}

.verify-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.verify-row label {
    font-size: 13px;
    font-weight: 650;
    color: var(--text-secondary);
}

.verify-row code {
    font-family: "SF Mono", "Consolas", "Monaco", monospace;
    font-size: 13px;
    word-break: break-all;
}

.verify-highlight {
    background: rgba(251, 191, 36, 0.08);
}

.verify-value {
    color: #93c5fd !important;
    font-weight: 600 !important;
    padding: 6px 10px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 6px;
    border: 1px solid rgba(96, 165, 250, 0.2);
    font-size: 12.5px !important;
    display: inline-block;
    max-width: 100%;
}

.verify-type {
    color: #fff !important;
    font-weight: 700 !important;
    padding: 5px 12px !important;
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.85), rgba(50, 100, 150, 0.85)) !important;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px !important;
}

.long-text {
    font-size: 11.5px !important;
    max-height: 48px;
    overflow-y: auto;
}

/* ============================================
   NOTICE MODAL STYLES (入站公告弹窗)
   ============================================ */

.notice-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 12, 25, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.notice-container {
    position: relative;
    width: 90%;
    max-width: 640px;
    max-height: 88vh;
    background: rgba(22, 26, 42, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 18px;
    border: 1px solid rgba(120, 140, 180, 0.2);
    
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25),
        0 10px 25px rgba(0, 0, 0, 0.12),
        inset 1px -1px 2px rgba(255, 255, 255, 0.8);
    
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: noticeSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes noticeSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.notice-header {
    padding: 24px 28px 16px;
    text-align: center;
    border-bottom: 2px solid rgba(70, 130, 180, 0.2);
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.08), rgba(50, 100, 150, 0.04));
}

.notice-header h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #e0e8f8;
    letter-spacing: -0.5px;
    margin: 0;
}

.notice-body {
    padding: 22px 28px;
    overflow-y: auto;
    flex: 1;
}

.notice-section {
    margin-bottom: 18px;
}

.notice-section h4 {
    font-size: 14.5px;
    font-weight: 750;
    color: #b0c4e0;
    margin-bottom: 8px;
    padding-left: 10px;
    border-left: 3px solid rgba(96, 165, 250, 0.5);
}

.notice-section p {
    font-size: 13.5px;
    line-height: 1.75;
    color: #c0c8d8;
    margin: 0;
}

.notice-section ol {
    padding-left: 22px;
    margin: 8px 0 0;
}

.notice-section li {
    font-size: 13px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 6px;
}

.notice-section-danger {
    background: rgba(248, 113, 113, 0.1);
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.notice-section-danger h4 {
    color: #f87171;
    border-left-color: rgba(248, 113, 113, 0.5);
}

.banned-words {
    font-size: 13px;
    line-height: 1.9;
    color: #fca5a5;
    font-weight: 600;
    word-wrap: break-word;
}

.notice-section-warning {
    background: rgba(251, 191, 36, 0.08);
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(251, 191, 36, 0.15);
}

.notice-section-warning h4 {
    color: #fbbf24;
    border-left-color: rgba(251, 191, 36, 0.5);
}

.notice-footer-info {
    text-align: right;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed rgba(150, 170, 200, 0.2);
}

.notice-footer-info p {
    font-size: 12.5px;
    color: #8898a8;
    margin: 2px 0;
}

.notice-actions {
    padding: 18px 28px 24px;
    text-align: center;
    border-top: 1px solid rgba(120, 140, 180, 0.15);
    background: rgba(18, 22, 38, 0.5);
}

#agree-btn {
    min-width: 200px;
    font-size: 15px !important;
    letter-spacing: 1px;
}
