:root {
    --primary-dark: #0a0a14;
    --primary-light: #1a1a2e;
    --accent: #e63946;
    --accent-light: #ff6b6b;
    --accent-dark: #c1121f;
    --text-light: #f8f9fa;
    --text-gray: #adb5bd;
    --white: #ffffff;
    --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* 导航栏容器样式 */
#navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* 页面内容区域上边距，避免被导航栏遮挡 */
body {
    padding-top: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0a14 0%, #1a1a2e 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 26px 0;
    position: relative;
}

.content-section {
    background: rgba(26, 26, 46, 0.7);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.content-section h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--white);
    text-align: center;
}

.content-section h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--accent);
    position: relative;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-gray);
}

.content-section ol, .content-section ul {
    margin-bottom: 20px;
    margin-left: 30px;
    color: var(--text-gray);
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.content-section strong {
    color: var(--text-light);
    font-weight: 600;
}

/* 页脚容器样式 */
#footer-container {
    width: 100%;
    margin-top: auto;
}

/* 定制样式 - 停产公告专用 */
.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px auto;
    text-align: center;
    color: var(--text-gray);
}

.disclaimer {
    background: rgba(230, 57, 70, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid var(--accent);
    border-top: 1px solid rgba(230, 57, 70, 0.2);
}

.disclaimer strong {
    color: var(--accent-light);
}

.table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 46, 0.9);
}

th {
    background: rgba(230, 57, 70, 0.2);
    color: var(--text-light);
    text-align: left;
    padding: 16px 20px;
    font-weight: 600;
    border-bottom: 2px solid rgba(230, 57, 70, 0.3);
}

td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status.discontinued {
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-light);
    border: 1px solid rgba(230, 57, 70, 0.3);
}

.consequences {
    background: rgba(26, 26, 46, 0.9);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid var(--accent);
}

.consequences h3 {
    color: var(--accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.consequences p {
    color: var(--text-gray);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.action-card {
    flex: 1;
    min-width: 280px;
    background: rgba(26, 26, 46, 0.9);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-top: 3px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.action-card h3 {
    color: var(--accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.action-card i {
    font-size: 1.8rem;
    color: var(--accent-light);
}

.action-card p {
    color: var(--text-gray);
}

.timestamp {
    background: rgba(26, 26, 46, 0.7);
    padding: 15px;
    text-align: center;
    font-style: italic;
    color: var(--text-gray);
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.print-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 25px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.print-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .content-section {
        padding: 25px;
    }
    
    .content-section h1 {
        font-size: 28px;
    }
    
    .content-section h2 {
        font-size: 20px;
    }
    
    .actions {
        flex-direction: column;
    }
}