/* ================================
   单栏居中布局样式
   ================================ */

/* 主容器 */
.main-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

/* 主内容区样式 */
.column {
    /* 移除背景半透明框和毛玻璃效果 */
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: none;
    border: none;
    box-shadow: none;
    transition: all var(--transition-normal);
    animation: fadeIn 0.8s ease forwards;
    width: 100%;
    max-width: 85%;
}

.column:hover {
    /* 移除悬停效果 */
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

/* 主内容区 - 居中显示 */
.column-center {
    padding: var(--spacing-2xl);
    animation-delay: 0.2s;
}

/* ================================
   顶部 GIF 横幅
   ================================ */

.top-banner {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.banner-gif {
    display: inline-block;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(220, 56, 57, 0.3), 0 0 40px rgba(220, 56, 57, 0.1);
}

/* ================================
   主内容区样式
   ================================ */

/* 主标题区域 */
.main-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(220, 56, 57, 0.2);
}

.site-title {
    color: var(--text-light);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #f5f3f3 0%, #dc3839 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(220, 56, 57, 0.3);
}

.site-subtitle {
    color: rgba(198, 182, 182, 0.8);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
}