/* 基础样式设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* 头部样式 */
header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 语言选择器样式 */
.language-selector {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.language-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
}

.language-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.language-btn i {
    font-size: 1rem;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-top: 0;
    padding-top: 0.5rem;
    min-width: 150px;
    display: none;
    z-index: 1000;
}

.language-dropdown.show {
    display: block;
}

.language-option {
    padding: 0.75rem 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.language-option:hover {
    background-color: #f0f3f8;
}

.language-option.active {
    background-color: #eef4ff;
    font-weight: bold;
}

.language-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
}

/* 主要内容区域 */
main {
    flex: 1;
    padding: 2rem;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

/* 上传区域样式 */
.upload-area {
    border: 2px dashed #2575fc;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover, .upload-area.dragover {
    background-color: rgba(37, 117, 252, 0.05);
    border-color: #6a11cb;
}

.upload-icon {
    font-size: 3rem;
    color: #2575fc;
    margin-bottom: 1rem;
}

.upload-area h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.file-input-label {
    display: inline-block;
    background-color: #2575fc;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin: 1rem 0;
    transition: background-color 0.3s ease;
}

.file-input-label:hover {
    background-color: #1b5fd7;
}

.file-info {
    margin-top: 1rem;
    color: #666;
}

/* 按钮样式 */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.primary-btn {
    background-color: #2575fc;
    color: white;
}

.primary-btn:hover:not(:disabled) {
    background-color: #1b5fd7;
}

.secondary-btn {
    background-color: #6a11cb;
    color: white;
}

.secondary-btn:hover:not(:disabled) {
    background-color: #5a0daf;
}

/* 转换状态区域 */
.conversion-status {
    margin-top: 2rem;
}

#status-message {
    text-align: center;
    margin-bottom: 1rem;
    min-height: 24px;
    color: #666;
}

.progress-bar-container {
    height: 10px;
    background-color: #e6e6e6;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    transition: width 0.3s ease;
}

/* 批量处理区域样式 */
.batch-status {
    margin-top: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: none; /* 默认隐藏，有文件时显示 */
}

.batch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f5f7fa;
    border-bottom: 1px solid #e0e0e0;
}

.batch-header h3 {
    margin: 0;
    color: #333;
}

#batch-progress {
    font-weight: bold;
    color: #2575fc;
}

.file-list {
    max-height: 300px;
    overflow-y: auto;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.file-item:last-child {
    border-bottom: none;
}

.file-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 1rem;
}

.file-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-pending {
    color: #999;
}

.status-processing {
    color: #2575fc;
}

.status-success {
    color: #27ae60;
}

.status-error {
    color: #e74c3c;
}

.file-item .download-btn {
    opacity: 0.5;
    cursor: not-allowed;
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
}

.file-item .download-btn.enabled {
    opacity: 1;
    cursor: pointer;
}

.file-item .download-btn.enabled:hover {
    background-color: #1b5fd7;
}

.retry-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.3rem 0.6rem;
    margin-left: 0.5rem;
    cursor: pointer;
    font-size: 0.8rem;
}

.retry-btn:hover {
    background-color: #c0392b;
}

/* 旧的footer样式 */
footer {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem 0;
    background-color: #f0f3f8;
    border-top: 1px solid #e0e0e0;
}

footer a {
    color: #2575fc;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* 新的footer样式 */
.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr; /* 设置4个分栏的比例 */
    gap: 40px; /* 统一的分栏间距 */
    padding: 2rem 2rem 2rem 10rem; /* 增加左内边距到4rem */;
    background-color: #333;
    color: white;
}

.footer-section {
    text-align: left;
    min-width: initial; /* 移除最小宽度限制 */
    margin: 0; /* 移除margin，因为gap已经处理了间距 */
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: white;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #75a9ff;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #2575fc;
    text-decoration: none;
}

.footer-section select {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #444;
    background-color: #444;
    color: white;
    width: 150px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 2rem;
    background-color: #222;
    color: #ccc;
    padding-left: 4rem;
    padding-right: 4rem;
    text-align: center;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #3b82f6;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
}

.social-icons a {
    margin: 0 8px;
    color: #75a9ff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #2575fc;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .footer-container {
        display: grid;
        grid-template-columns: 1fr; /* 在移动端改为单列布局 */
        gap: 20px; /* 减小间距 */
        padding: 2rem; /* 移除过大的左内边距 */
    }
    
    .footer-section {
        width: 100%;
        margin-bottom: 20px;
        text-align: center; /* 在移动端居中显示 */
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 15px 1rem; /* 减小内边距 */
    }
    
    .social-icons {
        margin-top: 15px;
        justify-content: center;
    }
    
    .social-links {
        align-items: center;
    }
    
    .social-link {
        justify-content: center;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    .container {
        padding: 1.5rem;
    }
    
    .upload-area {
        padding: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn {
        width: 100%;
    }
}

/* 添加文件限制提示样式 */
.file-limit-info {
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.file-limit-info i {
    color: #2575fc;
    font-size: 0.9rem;
}

/* 特性部分样式 - Why Choose MidiEasy */
.features-section {
    background-color: #f0f4ff;
    padding: 3rem 0;
    margin-top: 2rem;
    margin-bottom: 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.features-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: transparent;
    box-shadow: none;
}

.features-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    position: relative;
}

.features-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    color: #2575fc;
    margin-bottom: 1.5rem;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: rgba(37, 117, 252, 0.1);
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 响应式设计 - 为特性部分添加 */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-section {
        padding: 2rem 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .features-title {
        font-size: 1.8rem;
    }
}

/* How It Works 部分样式 */
.how-it-works-section {
    background-color: white;
    padding: 4rem 0;
    margin-bottom: 0;
}

.how-it-works-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: transparent;
    box-shadow: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.step-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.step-number {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(106, 17, 203, 0.3);
    margin-top: 0.5rem;
}

.step-content {
    text-align: left;
    flex: 1;
}

.step-title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: bold;
}

.step-description {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

.no-registration-note {
    text-align: center;
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 1rem 2rem;
    background-color: #f0f4ff;
    border-radius: 8px;
}

/* 响应式设计 - 为How It Works部分添加 */
@media (max-width: 768px) {
    .step-row {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .step-content {
        text-align: center;
    }
    
    .how-it-works-section {
        padding: 3rem 1rem;
    }
    
    .no-registration-note {
        font-size: 1rem;
        padding: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .step-title {
        font-size: 1.4rem;
    }

    .step-description {
        font-size: 1rem;
    }
}

/* Perfect For 部分样式 */
.perfect-for-section {
    background-color: #f7f9ff;
    padding: 4rem 0;
    margin-bottom: 0;
}

.perfect-for-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: transparent;
    box-shadow: none;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.audience-icon {
    font-size: 2rem;
    color: #2575fc;
    margin-bottom: 1.5rem;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: rgba(37, 117, 252, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: bold;
}

.audience-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

/* 响应式设计 - 为Perfect For部分添加 */
@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .perfect-for-section {
        padding: 3rem 1rem;
    }
    
    .audience-card {
        padding: 1.5rem;
    }
}

/* FAQ 部分样式 */
.faq-section {
    background-color: white;
    padding: 4rem 0;
    margin-bottom: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: transparent;
    box-shadow: none;
}

.accordion {
    margin-top: 3rem;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: white;
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    padding: 1.5rem 2rem;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f9faff;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    flex: 1;
    padding-right: 2rem;
}

.accordion-icon {
    color: #2575fc;
    transition: transform 0.3s ease;
}

.accordion-content {
    background-color: #f9faff;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding: 1.5rem 2rem;
}

.accordion-item.active .accordion-header {
    border-bottom-color: #eee;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

/* 响应式设计 - 为FAQ部分添加 */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }
    
    .accordion-header {
        padding: 1.2rem 1.5rem;
    }
    
    .accordion-header h3 {
        font-size: 1.1rem;
    }
    
    .accordion-content p {
        padding: 1.2rem 1.5rem;
    }
}

/* footer语言选择器样式 */
.footer-language-selector {
    position: relative;
    margin: 0;
    width: fit-content;
}

.footer-language-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
}

.footer-language-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-section .language-dropdown {
    bottom: 100%;
    top: auto;
    left: 0;
    transform: none;
    margin-bottom: 5px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .footer-language-selector {
        margin-top: 10px;
    }
    
    .footer-section .language-dropdown {
        left: 0;
        right: auto;
        transform: none;
    }
}

/* 社交链接样式 */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px; /* 增加间距 */
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px; /* 增加图标和文本间距 */
    color: #75a9ff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500; /* 添加一些字重 */
}

.social-link:hover {
    color: #2575fc;
    text-decoration: none;
    transform: translateX(2px); /* 添加悬停效果 */
}

.social-link i {
    font-size: 1.2rem;
    width: 24px; /* 增加宽度保证对齐 */
    text-align: center;
}

/* X图标特殊样式 */
.fa-x-twitter {
    font-weight: 700; /* 使X图标更加粗体 */
}

/* 响应式调整 */
@media (max-width: 768px) {
    .social-links {
        align-items: center;
        flex-direction: row; /* 在移动端横向排列 */
        justify-content: center;
        gap: 30px; /* 横向间距更大 */
    }
}

/* Recent Blogs Section 样式 */
.recent-blogs-section {
    background-color: #f7f9ff;
    padding: 4rem 0;
    margin-bottom: 0;
}

.recent-blogs-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: transparent;
    box-shadow: none;
}

.recent-blogs-row {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: space-between;
}

.blog-post-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: calc(33.333% - 1.5rem);
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-post-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog-post-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog-post-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.4;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.blog-post-date {
    color: #666;
    font-size: 0.9rem;
}

.blog-post-link {
    text-decoration: none;
    color: #2575fc;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.blog-post-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.blog-post-link:hover {
    color: #6a11cb;
}

.blog-post-link:hover i {
    transform: translateX(3px);
}

.view-all-blogs {
    text-align: center;
    margin-top: 3rem;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #2575fc;
    font-weight: bold;
    padding: 0.8rem 1.5rem;
    border: 2px solid #2575fc;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    background-color: #2575fc;
    color: white;
}

.view-all-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(3px);
}

/* 响应式设计 - 为Recent Blogs部分添加 */
@media (max-width: 992px) {
    .recent-blogs-row {
        flex-wrap: wrap;
    }
    
    .blog-post-card {
        max-width: calc(50% - 1rem);
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .recent-blogs-section {
        padding: 3rem 1rem;
    }
    
    .recent-blogs-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .blog-post-card {
        max-width: 100%;
        flex: 0 0 100%;
    }
} /* 网站
标题样式（非H1） */
.site-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: bold;
}

@media (max-width: 768px) {
    .site-title {
        font-size: 2rem;
    }
}