:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #818cf8;
    --secondary: #1e293b;
    --text: #334155;
    --text-light: #64748b;
    --background: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --success: #22c55e;
    --warning: #eab308;
    --error: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 导航栏样式 */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
    color: var(--secondary);
}

.logo-highlight {
    color: var(--primary);
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 0.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.primary-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-dark));
    color: var(--white);
    text-decoration: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--text);
    border-radius: 2px;
}

/* Hero 区域样式 */
.hero {
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
}

.screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

/* 特性部分样式 */
.section {
    padding: 2.5rem 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.section-description {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.1rem;
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 产品展示区域样式 */
.product-showcase {
    background-color: var(--white);
    padding: 2.5rem 0;
}

.product-showcase-grid {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.product-showcase-grid.reverse {
    flex-direction: row-reverse;
}

.product-screenshot {
    flex: 1;
    min-width: 300px;
}

.product-description {
    flex: 1;
    min-width: 300px;
}

.product-description h2 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.product-features-list {
    list-style: none;
}

.product-features-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.product-features-list li i {
    color: var(--success);
    margin-right: 0.5rem;
}

/* 使用场景区域样式 */
.use-cases {
    background-color: var(--white);
    padding: 2.5rem 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.use-case-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    height: 100%;
}

.use-case-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.use-case-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.use-case-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.use-case-card p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.use-case-benefit {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.use-case-benefit i {
    color: var(--success);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.use-case-benefit span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.use-case-card:hover {
    border-color: var(--primary);
}

/* 兼容性/技术规格区域样式 */
.compatibility {
    background-color: var(--background);
    padding: 2.5rem 0;
}

.specs-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.specs-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    overflow: hidden;
}

.specs-card:hover {
    border-color: var(--primary);
}

.specs-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(to right, rgba(79, 70, 229, 0.08), rgba(79, 70, 229, 0.04));
    border-bottom: 1px solid var(--border);
}

.specs-header i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-right: 0.75rem;
}

.specs-header h3 {
    font-size: 1rem;
    color: var(--secondary);
    margin: 0;
}

.specs-list {
    list-style: none;
    padding: 1rem;
    margin: 0;
}

.specs-list li {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.4;
}

.specs-list li:last-child {
    margin-bottom: 0;
}

.specs-list strong {
    color: var(--secondary);
    font-weight: 600;
}

/* 下载区域样式 */
.download {
    position: relative;
    padding: 2.5rem 0;
    background-color: var(--background);
}

.download-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    border: 1px solid rgba(79, 70, 229, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.85));
    backdrop-filter: blur(8px);
}

.download-left {
    flex: 1;
    padding: 1.75rem;
    min-width: 300px;
}

.download-right {
    flex: 1;
    padding: 1.75rem;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: rgba(79, 70, 229, 0.03);
    border-left: 1px solid rgba(79, 70, 229, 0.1);
}

.download-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    border-radius: 1.5rem;
    font-weight: 500;
    font-size: 0.85rem;
}

.download-badge i {
    margin-right: 0.35rem;
}

.download-version {
    font-size: 0.85rem;
    color: var(--text-light);
}

.download-version i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.download h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-size: 1.3rem;
}

.download p {
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 0.9rem;
}

.download-features {
    list-style: none;
    margin-bottom: 1rem;
}

.download-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.download-features li i {
    color: var(--success);
    margin-right: 0.5rem;
}

.download-right .btn.primary-btn {
    width: 100%;
    margin-bottom: 1.25rem;
    text-align: center;
}

.download-info-box {
    margin: 0 0 1rem 0;
    border-radius: 0.4rem;
    overflow: hidden;
}

.download-info-item {
    margin-bottom: 1rem;
}

.download-info-item h4 {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
    color: var(--secondary);
}

.download-info-item h4 i {
    color: var(--primary);
    margin-right: 0.4rem;
    font-size: 0.9rem;
}

.download-info-item ul {
    list-style: none;
    margin: 0.4rem 0 0 1.2rem;
}

.download-info-item ul li {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    position: relative;
    color: var(--text);
}

.download-info-item ul li:before {
    content: "•";
    position: absolute;
    left: -0.8rem;
    color: var(--primary-light);
}

.download-info-item p {
    font-size: 0.8rem;
    margin: 0.4rem 0 0 0;
    line-height: 1.4;
}

.glass-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* 使用指南样式 */
.guide {
    background-color: var(--background);
    padding: 2.5rem 0;
}

.guides-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.75rem;
}

.guide-step {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    position: relative;
}

.guide-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 20px;
    height: calc(100% + 0.75rem);
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-light), rgba(129, 140, 248, 0.1));
}

.guide-step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-right: 1rem;
    margin-top: 0.3rem;
    z-index: 1;
}

.guide-step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

.guide-step-content:hover {
    border-color: var(--primary);
}

.guide-step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.guide-more {
    margin-top: 1.5rem;
}

/* 用户评价样式 */
.testimonials {
    background-color: var(--white);
    padding: 2.5rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.testimonial-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    color: var(--warning);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.testimonial-text {
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.9rem;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.testimonial-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 0.1rem;
    font-size: 0.9rem;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* FAQ 样式 */
.faq {
    background-color: var(--background);
    padding: 2.5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    margin: 0 auto;
}

.faq-card {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    height: 100%;
}

.faq-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border);
}

.faq-card p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.4;
    flex-grow: 1;
}

.faq-card:hover {
    border-color: var(--primary);
}

/* 用户统计数据区域样式 */
.stats-section {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.06), rgba(129, 140, 248, 0.1));
    padding: 3rem 0 2.5rem;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 0.5rem;
    border: 1px solid rgba(79, 70, 229, 0.12);
}

.stat-item:hover {
    border-color: var(--primary);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.4rem;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.3;
}

.stats-partners {
    margin-top: 2.5rem;
}

.stats-partners h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 1.25rem;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
}

.partner-logo:hover {
    opacity: 1;
    color: var(--primary);
}

/* 页脚样式 */
.footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 2.5rem 0 1.25rem;
    margin-top: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    flex: 1;
    min-width: 220px;
}

.footer-logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    letter-spacing: -0.5px;
    color: var(--white);
}

.footer-logo-highlight {
    color: var(--primary-light);
    font-weight: 800;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-links-column {
    flex: 1;
    min-width: 130px;
}

.footer-links-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column ul li {
    margin-bottom: 0.5rem;
}

.footer-links-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.85rem;
}

.footer-links-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: background-color 0.2s;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary);
    text-decoration: none;
}

/* 通用卡片样式 */
.card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}

.card:hover {
    border-color: var(--primary);
}

/* 渐变背景 */
.gradient-bg {
    background: linear-gradient(135deg, #a5b4fc, #818cf8, #4f46e5);
    color: var(--white);
}

/* 按钮样式 */
.btn {
    padding: 0.45rem 1.1rem;
    border-radius: 0.35rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    display: inline-block;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
    text-decoration: none;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--white);
    font-weight: 500;
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    text-decoration: none;
}

/* 通用间距 */
.mb-4 {
    margin-bottom: 0.75rem;
}

.mb-8 {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

/* 文本样式 */
h1, h2, h3, h4, h5, h6 {
    color: var(--secondary);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

/* 按钮图标 */
.btn-icon {
    margin-right: 0.4rem;
    font-size: 0.9em;
}

/* 按钮发光效果简化 */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-accent {
    border-color: var(--primary);
    color: var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-accent:hover {
    color: var(--primary);
    background-color: rgba(79, 70, 229, 0.08);
    text-decoration: none;
}

/* 导航栏下载按钮 */
.navbar .primary-btn {
    width: auto;
    margin-bottom: 0;
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .specs-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 0.75rem;
        border-bottom: 1px solid var(--border);
        gap: 0.75rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .download-btn {
        display: none;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        justify-content: center;
        margin-top: 1.25rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .product-showcase-grid {
        flex-direction: column;
    }
    
    .product-showcase-grid.reverse {
        flex-direction: column;
    }
    
    .guide-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .guide-step-number {
        margin-right: 0;
        margin-bottom: 0.6rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specs-container {
        grid-template-columns: 1fr;
    }
    
    .partner-logos {
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 1.25rem 0.75rem;
    }
    
    .download-container {
        flex-direction: column;
    }
    
    .download-right {
        border-left: none;
        border-top: 1px solid rgba(79, 70, 229, 0.1);
    }
}

/* 工具提示样式 */
.tooltip {
    position: absolute;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.9;
}

/* 页面加载状态 */
body {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

body.loaded {
    opacity: 1;
}

/* 移除动画和特效，保持简洁 */
* {
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    animation: none !important;
}

/* 专注模式 - 减少视觉干扰 */
.focus-mode {
    filter: none;
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
    :root {
        --border: #000000;
        --text-light: #000000;
    }
}

/* 减少动画模式支持 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 打印样式 */
@media print {
    .header,
    .footer,
    .stats-section {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
} 