/* 全局样式 */
:root {
    --primary-color: #E91E63;
    --primary-dark: #C2185B;
    --background-color: #000000;
    --text-color: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --input-background: rgba(255, 255, 255, 0.05);
    --error-color: #ff4444;
    --success-color: #00C851;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* 头部样式 */
.site-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    padding: 4rem 2rem;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    margin-bottom: 2rem;
    margin-top: 70px;
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.header-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

/* 容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 表单部分样式 */
.form-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.form-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 2rem;
}

/* 输入框样式 */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 1rem;
    background: var(--input-background);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.2);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.required {
    color: var(--primary-color);
}

/* 复选框样式 */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 0.5rem;
}

/* 材料上传部分标题样式 */
.upload-section h4,
.copyright-section h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* 其他材料部分样式 */
.upload-item {
    margin-bottom: 2.5rem;
}

.upload-item:last-child {
    margin-bottom: 0;
}

/* 移除重复的其他材料标题 */
.file-upload-area h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* 文件上传区域样式 */
.file-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 0.5rem;
    padding: 3rem;
    text-align: left;
    margin-bottom: 3.5rem;
    transition: all 0.3s ease;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
}

.upload-info {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 1rem 0;
    line-height: 1.8;
    color: var(--text-color);
}

.upload-requirements {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1rem 0;
}

.upload-requirements h5 {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.upload-requirements ul {
    list-style: none;
    padding-left: 1rem;
}

.upload-requirements li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.upload-requirements li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.file-format-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    padding: 0.8rem;
    border-left: 3px solid var(--primary-color);
    background: rgba(233, 30, 99, 0.1);
}

.important-note {
    color: var(--error-color);
    font-weight: 500;
}

/* 版权承诺部分样式 */
.copyright-section {
    margin-top: 3rem;
}

/* 团队成员部分样式 */
.team-member-template {
    position: relative;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.team-member-template:hover {
    border-color: var(--border-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* 团队成员表单元素样式 */
.team-member-template select,
.team-member-template input[type="text"],
.team-member-template textarea {
    margin-bottom: 1rem;
    width: 100%;
}

.team-member-template textarea {
    min-height: 100px;
    resize: vertical;
}

.team-member-template .file-upload {
    margin-top: 1rem;
}

.team-member-template .file-upload label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-members h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* 删除按钮样式 */
.delete-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.delete-member {
    width: 200px;
    padding: 0.8rem 0;
    background-color: #2C3E50;  /* 深蓝灰色，与整体UI风格搭配 */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.delete-member:hover {
    background-color: #34495E;  /* 悬停时颜色稍微变亮 */
}

/* 添加团队成员按钮样式 */
.add-team-member {
    width: 100%;
    padding: 1.2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px dashed var(--primary-color);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-team-member:before {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
}

.add-team-member:hover {
    background: rgba(233, 30, 99, 0.1);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.2);
}

.add-team-member:active {
    transform: scale(0.98);
}

/* 按钮样式 */
.form-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;  /* 添加按钮之间的间距 */
    margin-top: 3rem;
    margin-bottom: 6rem;
    padding: 0 1rem;
}

/* 保存草稿按钮样式 */
.btn-save {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1.2rem 4rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save:hover {
    background: rgba(233, 30, 99, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
}

.btn-save:active {
    transform: translateY(0);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.2rem 4rem;    /* 增加按钮的内边距 */
    border-radius: 0.5rem;
    font-size: 1.1rem;       /* 略微增大字号 */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .site-header {
        padding: 3rem 1rem;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .form-section {
        padding: 2rem;
    }

    .file-upload-area {
        padding: 2rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column-reverse;  /* 在移动端将提交按钮放在上面 */
        gap: 1rem;
    }

    .btn-save,
    .btn-submit {
        width: 100%;
    }
}

/* 导航栏样式 */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

.nav-logo img {
    height: 40px;
    margin-right: 1rem;
}

.nav-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo-text span:first-child {
    color: var(--primary-color);
}

.nav-logo-text span:last-child {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    background: var(--primary-color);
    color: white;
}

/* 添加提示框样式 */
.tooltip {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    z-index: 2000;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 2s ease-in-out forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -20px); }
    20% { opacity: 1; transform: translate(-50%, 0); }
    80% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -20px); }
}

/* 登录页面样式 */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 70px;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%,
        rgba(233, 30, 99, 0.3) 100%
    );
    position: relative;
    overflow: hidden;
}

/* 添加背景装饰效果 */
.login-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%,
        rgba(233, 30, 99, 0.1) 100%
    );
    z-index: 0;
}

.login-box {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 1rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.login-box h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--text-color);
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 1rem;
    background: var(--input-background);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.2);
}

.agreement-section {
    margin: 1.5rem 0;
}

.agreement-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.agreement-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.agreement-link:hover {
    text-decoration: underline;
}

.login-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.login-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.login-button:active {
    transform: translateY(0);
}

.register-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.register-link a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.register-link a:hover {
    text-decoration: underline;
}

/* 报名记录页面样式 */
.records-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 100px;
}

.records-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.records-header h2 {
    font-size: 2rem;
    color: var(--text-color);
}

.new-entry-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.new-entry-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.records-list {
    display: grid;
    gap: 1.5rem;
}

.record-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.record-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.record-info {
    flex: 1;
}

.film-title {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.film-meta {
    display: flex;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.film-status {
    margin-top: 0.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-badge.pending {
    background: rgba(0, 200, 81, 0.2);
    color: var(--success-color);
}

.status-badge.approved {
    background: rgba(0, 200, 81, 0.2);
    color: var(--success-color);
}

.status-badge.rejected {
    background: rgba(255, 68, 68, 0.2);
    color: var(--error-color);
}

.record-actions {
    margin-left: 2rem;
}

.view-details-btn {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.view-details-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .records-container {
        padding: 1rem;
        padding-top: 80px;
    }

    .records-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .record-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .record-actions {
        margin-left: 0;
    }

    .film-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

/* 首页样式 */
.home-container {
    padding-top: 70px; /* 为顶部导航留出空间 */
}

.banner-section {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.welcome-text {
    text-align: center;
    padding: 2rem;
    font-size: 1.5rem;
    color: var(--text-color);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .welcome-text {
        font-size: 1.2rem;
        padding: 1.5rem;
    }
}

/* 表单切换相关样式 */
.hidden {
    display: none;
}

.login-form,
.register-form {
    transition: all 0.3s ease;
}

/* 注册表单样式优化 */
.register-form {
    transition: all 0.3s ease;
}

.register-form .form-group {
    margin-bottom: 2rem;
}

.register-form input[type="text"],
.register-form input[type="password"] {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.register-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.2);
}

.register-form .agreement-section {
    margin: 2rem 0;
}

.register-form .agreement-label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
}

.register-form .agreement-label input[type="checkbox"] {
    margin-right: 0.5rem;
}

.register-form .agreement-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.register-form .agreement-link:hover {
    text-decoration: underline;
}

.register-form .login-button {
    margin-top: 2rem;
}

.register-form .register-link {
    margin-top: 2rem;
}

/* 表单提示样式 */
.form-tip {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* 用户部分样式 */
.user-section {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    height: 100%;
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--error-color) !important;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--error-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    height: fit-content;
}

.logout-btn:hover {
    background: var(--error-color);
    color: white !important;
}

.char-counter {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
    margin-top: 0.5rem;
}

.label-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.5rem;
}

textarea[maxlength] {
    resize: vertical;
}

.language-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.language-options .checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.language-options input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.screening-permission {
    margin-top: 2rem;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.radio-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-container input[type="radio"] {
    width: auto;
    margin: 0;
}

.duration-input {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.time-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.time-input input {
    width: 100%;
    padding: 1rem;
    background: var(--input-background);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.time-input input::-webkit-inner-spin-button,
.time-input input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.time-input input[type=number] {
    -moz-appearance: textfield;
}

.time-label {
    color: var(--text-color);
    font-size: 1rem;
    white-space: nowrap;
}

#poster-upload, #stills-upload {
    margin-bottom: 2rem;
}

#poster-upload label, #stills-upload label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.upload-requirements h5 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.upload-requirements ul {
    margin-top: 0.5rem;
}

/* 大赛主题及宗旨页面样式 */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 120px;
    min-height: 100vh;
}

.about-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.about-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
    font-size: 1.2rem;
    color: var(--text-color);
    text-align: justify;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .about-container {
        padding: 1rem;
        padding-top: 100px;
    }

    .about-content {
        padding: 2rem;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1.1rem;
    }
}

/* 报名单元及奖项页面样式 */
.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 120px;
    min-height: 100vh;
}

.awards-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.awards-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.awards-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
    font-size: 1.2rem;
    color: var(--text-color);
    text-align: justify;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .awards-container {
        padding: 1rem;
        padding-top: 100px;
    }

    .awards-content {
        padding: 2rem;
    }

    .awards-content h1 {
        font-size: 2rem;
    }

    .awards-text {
        font-size: 1.1rem;
    }
}

/* 添加移动端导航栏样式 */
@media (max-width: 768px) {
    .nav-bar {
        flex-direction: column;
        padding: 0;
        height: auto;
    }

    .nav-top {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-logo {
        margin: 0;
    }

    .nav-logo-text {
        font-size: 1.5rem;
    }

    .nav-logo-text span:last-child {
        font-size: 1rem;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        padding: 0.5rem;
        cursor: pointer;
        width: 40px;
        height: 40px;
        position: relative;
    }

    .hamburger,
    .hamburger::before,
    .hamburger::after {
        content: '';
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-color);
        position: absolute;
        left: 8px;
        transition: all 0.3s ease;
    }

    .hamburger {
        top: 19px;
    }

    .hamburger::before {
        top: -8px;
    }

    .hamburger::after {
        top: 8px;
    }

    .menu-toggle.active .hamburger {
        background: transparent;
    }

    .menu-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .menu-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 0;
        background: rgba(0, 0, 0, 0.95);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link:hover {
        background: rgba(233, 30, 99, 0.1);
    }

    .nav-link.active {
        border-radius: 0;
    }

    .user-section {
        width: 100%;
        margin: 0;
        order: 1;
    }

    .logout-btn {
        width: 100%;
        margin: 0;
        padding: 1rem;
        border: none;
        border-radius: 0;
        border-top: 1px solid var(--border-color);
        justify-content: center;
    }

    /* 调整页面内容的顶部边距 */
    .home-container,
    .about-container,
    .awards-container,
    .records-container,
    .login-container,
    .container {
        padding-top: 60px;
    }
}

/* 底部区块样式 */
.footer {
    background: linear-gradient(to right, rgba(26, 41, 42, 0.9), rgba(46, 11, 22, 0.9));
    color: var(--text-color);
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
}

.footer-content-left {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-content-right {
    flex: 2;
    text-align: right;
    min-width: 300px;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-section:last-child {
    margin-bottom: 0;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-content {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-content p {
    margin-bottom: 0.25rem;
}

.footer-logo {
    display: block;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
    margin-bottom: 2rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-content-left {
        margin-bottom: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .footer-content-right {
        text-align: center;
    }
    
    .footer-description {
        margin: 0 auto 2rem;
    }
}

/* 首页内容区块优化样式 */
.home-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.home-content-section {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.home-content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.3);
}

.section-header {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8), rgba(194, 24, 91, 0.8));
    padding: 1.5rem;
    text-align: center;
}

.section-header h2 {
    color: white;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.section-content {
    padding: 2rem;
}

.section-content p {
    margin: 0;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: justify;
}

/* 添加阅读更多按钮 */
.read-more {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 2rem;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: var(--primary-color);
    color: white;
}

/* 为首页Banner添加渐变叠加效果 */
.banner-section {
    position: relative;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    z-index: 5;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .home-content-wrapper {
        flex-direction: column;
        padding: 1rem;
        margin-top: -1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-content {
        padding: 1.5rem;
    }
    
    .section-content p {
        font-size: 1rem;
    }
} 