html {
    font-size: 18px; /* Increased base font size */
}

body {
    line-height: 1.6; /* Improved readability with increased line height */
    margin: 0;
    padding: 80px 0 0 0; /* 匹配导航栏高度 */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(135deg, #b994fd 0%, #d6bef8 50%, #e8d3fc 100%);
    background-attachment: fixed;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #6b46c1; /* Deep purple matching the theme */
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    overflow: hidden;
}

a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b994fd, transparent);
    transition: left 0.5s;
}

a:hover::after {
    left: 100%;
}

a:hover {
    color: #8b5cf6; /* Lighter purple on hover */
}

main {
    margin: 0 10px;
}

@media (min-width: 1200px) {
    main {
        margin: 0 auto;
        width: 1200px;
    }
}

.content {
    overflow: hidden;
}

.content a {
    color: #6b46c1; /* Deep purple matching the theme */
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
    position: relative;
    padding-left: 1.2em; /* 为图标留出空间 */
}

.content a:hover {
    color: #8b5cf6; /* Lighter purple on hover */
    border-bottom-color: #8b5cf6;
}

.content a::before {
    content: "\f0c1"; /* Font Awesome 链接图标的 Unicode */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.86em;
    position: absolute;
    left: 0;
    transform: translateY(20%);
    font-size: 0.8em;
}

.content img {
    max-width: 100%;
}

.richtext-image.right {
    float: right;
    margin-left: 15px;
    margin-bottom: 10px;
}

.richtext-image.left {
    float: left;
    margin-right: 15px;
    margin-bottom: 10px;
}

.richtext-image.full-width {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* 现代化导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(185, 148, 253, 0.1);
    border-bottom: 1px solid rgba(185, 148, 253, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* 品牌区域 */
.navbar-brand {
    z-index: 1001;
}

.brand-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 40px;
    width: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(185, 148, 253, 0.4));
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(185, 148, 253, 0.6));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 24px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.9);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* 桌面端导航 */
.nav-desktop {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
    font-size: 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: rgba(0, 0, 0, 1);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 148, 253, 0.3);
}

.nav-icon {
    font-size: 16px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.nav-text {
    font-weight: 500;
}

/* Language Switch */
.language-switch {
    margin-left: 8px;
    position: relative;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
    font-size: 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: none;
    border: none;
    cursor: pointer;
}

.language-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(185, 148, 253, 0.1) 0%, rgba(185, 148, 253, 0.05) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.language-btn:hover::before {
    opacity: 1;
}

.language-btn:hover {
    color: rgba(0, 0, 0, 1);
    background: rgba(185, 148, 253, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 148, 253, 0.4);
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(185, 148, 253, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.3);
    min-width: 160px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.language-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 4px;
}

.language-option:hover {
    background: rgba(185, 148, 253, 0.1);
    color: rgba(0, 0, 0, 1);
}

.language-option.active {
    background: rgba(185, 148, 253, 0.2);
    color: rgba(0, 0, 0, 1);
}

.option-check {
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.language-option.active .option-check {
    opacity: 1;
}

/* Mobile Language Switch */
.language-switch-mobile {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 16px;
    padding-top: 16px;
}

.mobile-language-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-language-item {
    margin-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-language-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 0 10px 10px 0;
    margin: 2px 0;
}

.mobile-language-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: rgba(185, 148, 253, 0.6);
}

.mobile-language-link.active {
    background: rgba(185, 148, 253, 0.3);
    color: white;
    border-left-color: rgba(185, 148, 253, 1);
}

.mobile-language-link .option-check {
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-language-link.active .option-check {
    opacity: 1;
}

.language-btn-mobile {
    width: 100%;
    justify-content: flex-start;
    background: none;
    border: none;
    cursor: pointer;
}

/* 移动端菜单按钮 */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-line {
  opacity: 0;
}

/* 移动端导航 */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(185, 148, 253, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: all 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
}

.mobile-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1); /* 将logo变成白色 */
}

.mobile-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 20px;
}

.mobile-nav-item {
    margin-bottom: 8px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 16px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.mobile-nav-link:hover::before {
    opacity: 1;
}

.mobile-nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

/* 移动端遮罩 */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 4px;
    }

    .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        height: 70px;
        padding: 0 16px;
    }

    .brand-name {
        font-size: 20px;
    }

    .brand-year {
        font-size: 12px;
    }

    .nav-desktop {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-mobile {
        width: 280px;
    }

    .logo-image {
        height: 32px;
    }

    body {
        padding-top: 70px; /* 移动端导航栏高度 */
    }
}

/* 现代化Footer样式 */
.modern-footer {
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #7c3aed 0%, #b994fd 50%, #d6bef8 100%);
    opacity: 0.95;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* 品牌区域 */
.footer-brand {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand-text {
    flex: 1;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-subtitle {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    font-weight: 500;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 300px;
}

/* 社交媒体链接 */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 18px;
}

/* Footer sections */
.footer-section {
    color: white;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 8px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
}

/* 往届大会网格 */
.conferences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.conference-link {
    display: block;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.conference-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 快速链接 */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.quick-link:hover {
    opacity: 1;
    transform: translateX(4px);
}

.quick-link i {
    font-size: 16px;
    width: 20px;
    opacity: 0.8;
}

/* 联系信息 */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    opacity: 0.9;
}

.contact-item i {
    font-size: 16px;
    width: 20px;
    opacity: 0.8;
}

/* 底部版权区域 */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px 0;
    margin-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.copyright {
    opacity: 0.8;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-tech {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
}

.tech-icons {
    display: flex;
    gap: 8px;
}

.tech-icons i {
    font-size: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.tech-icons i:hover {
    opacity: 1;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 40px 16px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .conferences-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 30px 12px 0;
    }

    .conferences-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* 响应式页面标题和容器 */
    .page-container {
        padding: 10px;
    }

    .page-title {
        font-size: 2rem;
        padding: 20px;
    }

    .page-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
        padding: 15px;
    }

    .page-container {
        padding: 5px;
    }
}

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(185, 148, 253, 0.2), 0 4px 16px rgba(185, 148, 253, 0.1);
    position: relative;
    padding: 1rem;
    z-index: 1;
    margin-bottom: 20px;
    border: 1px solid rgba(214, 190, 248, 0.3);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(185, 148, 253, 0.3), 0 6px 20px rgba(185, 148, 253, 0.15);
}

.card-header {
    font-weight: bold;
    margin: 0 0 10px 0;
    padding: 10px 0;
    border-bottom: 2px solid #d6bef8;
    color: #6b46c1;
    font-size: 1.3rem;
}

.card-body {
    overflow-x: auto;
}

@media (min-width: 992px) {
    .card {
        padding: 1rem 2rem;
    }
}

.title {
    border: 2px solid #b994fd;
    background: linear-gradient(135deg, #b994fd 0%, #d6bef8 100%);
    color: white;
    text-shadow: 2px 2px 4px rgba(107, 70, 193, 0.5);
    padding: 20px;
    margin-bottom: 20px;
    display: inline-block;
    font-weight: bold;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(185, 148, 253, 0.3);
    font-family: "JF-Dot", sans-serif;
    transition: all 0.3s ease;
}

.title:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(185, 148, 253, 0.4);
}

.talk-badge {
    display: inline-block;
    padding: 0.25em 0.5em;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #fff;
    margin-left: 0.5rem;
}

.talk-badge.keynote {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #000;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.talk-badge.lightning {
    background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 4px;
    }

    .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        height: 70px;
        padding: 0 16px;
    }

    .brand-name {
        font-size: 20px;
    }

    .brand-year {
        font-size: 12px;
    }

    .nav-desktop {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-mobile {
        width: 280px;
    }

    .logo-image {
        height: 32px;
    }

    body {
        padding-top: 70px; /* 移动端导航栏高度 */
    }
}

/* 通用动画效果 */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(185, 148, 253, 0.3); }
    50% { box-shadow: 0 0 30px rgba(185, 148, 253, 0.6); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* 装饰性元素 */
.floating-element {
    animation: float 3s ease-in-out infinite;
}

.glow-element {
    animation: glow 2s ease-in-out infinite;
}

.pulse-element {
    animation: pulse 2s ease-in-out infinite;
}

/* 增强的滚动效果 */
* {
    scroll-behavior: smooth;
}

/* 通用页面按钮样式 */
.page-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #7c3aed 0%, #b994fd 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.page-button:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #d6bef8 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.page-button i {
    margin-right: 8px;
}

/* 通用页面标题样式 */
.page-title {
    background: linear-gradient(135deg, #b994fd 0%, #d6bef8 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(107, 70, 193, 0.5);
    box-shadow: 0 8px 32px rgba(185, 148, 253, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.page-title:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(185, 148, 253, 0.4);
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
