/* 重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #000;
    color: #f5f5f7;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 导航栏样式 - 苹果风格 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

/* Logo样式 */
.nav-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.nav-logo i {
    margin-right: 10px;
    color: #007AFF;
}

.logo-text {
    background: linear-gradient(45deg, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-highlight {
    color: #007AFF;
    -webkit-text-fill-color: #007AFF;
}

/* 导航菜单 */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #f5f5f7;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.nav-link:hover {
    opacity: 1;
    color: #fff;
}

.nav-item.active .nav-link {
    opacity: 1;
    color: #007AFF;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #007AFF;
    border-radius: 2px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* 按钮样式 */
.btn {
    padding: 10px 24px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056CC, #4846B6);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.2);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 25px;
    font-weight: 600;
}

/* 导航操作区 */
.nav-actions {
    display: flex;
    gap: 15px;
}

/* 主要内容区域 */
.main-content {
    margin-top: 60px;
    min-height: calc(100vh - 120px);
}

.content-section {
    display: none;
    padding: 100px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.content-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Hero区域 */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: #007AFF;
    -webkit-text-fill-color: #007AFF;
}

.hero-subtitle {
    font-size: 20px;
    color: #a1a1a6;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat i {
    font-size: 32px;
    color: #007AFF;
    background: rgba(0, 122, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
}

.stat h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat p {
    color: #a1a1a6;
    font-size: 14px;
}

.hero-image {
    animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Macbook模拟器 */
.macbook-mockup {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.macbook-screen {
    position: relative;
    background: #000;
    border-radius: 20px 20px 0 0;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 122, 255, 0.3);
    overflow: hidden;
}

.macbook-screen img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s ease;
}

.macbook-screen:hover img {
    transform: scale(1.02);
}

.macbook-top {
    position: relative;
    height: 20px;
    background: linear-gradient(90deg, #333, #666, #333);
    border-radius: 20px 20px 0 0;
    margin-bottom: -1px;
}

.macbook-bottom {
    height: 20px;
    background: linear-gradient(90deg, #333, #666, #333);
    border-radius: 0 0 20px 20px;
    margin-top: -1px;
    position: relative;
}

.macbook-bottom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 4px;
    background: #222;
    border-radius: 2px;
}

/* 区域标题 */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 18px;
    color: #a1a1a6;
    max-width: 600px;
    margin: 0 auto;
}

/* 特性网格 */
.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007AFF, #5856D6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.1);
}

.feature-icon {
    font-size: 48px;
    color: #007AFF;
    margin-bottom: 25px;
    background: rgba(0, 122, 255, 0.1);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.feature-card p {
    color: #a1a1a6;
    line-height: 1.6;
    font-size: 15px;
}

/* 服务器卡片 */
.servers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.server-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.server-card.featured {
    border-color: #007AFF;
    background: rgba(0, 122, 255, 0.05);
}

.server-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.server-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #FF3B30, #FF9500);
    color: white;
    padding: 6px 18px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.server-icon {
    font-size: 48px;
    color: #007AFF;
    margin-bottom: 20px;
    background: rgba(0, 122, 255, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.server-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.server-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    color: #a1a1a6;
    font-size: 14px;
}

.server-stats span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.server-stats i {
    color: #007AFF;
    width: 20px;
}

.server-card p {
    color: #a1a1a6;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 15px;
}

.server-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.connect-btn {
    align-self: flex-start;
    margin-top: auto;
}

.online-count {
    color: #34C759;
    font-weight: 700;
}

.server-status {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.server-status h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.status-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a1a1a6;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-item.online .status-dot {
    background: #34C759;
    box-shadow: 0 0 10px rgba(52, 199, 89, 0.5);
}

.status-item.offline .status-dot {
    background: #FF3B30;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.5);
}

.status-item.maintenance .status-dot {
    background: #FF9500;
    box-shadow: 0 0 10px rgba(255, 149, 0, 0.5);
}

/* 图库 */
.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.2);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* 社区统计 */
.community-stats {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-item i {
    font-size: 48px;
    color: #007AFF;
    margin-bottom: 20px;
    background: rgba(0, 122, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.stat-item p {
    color: #a1a1a6;
    font-size: 18px;
}

.community-platforms {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.platform-card i {
    font-size: 48px;
    margin-bottom: 20px;
}

.platform-card:nth-child(1) i { color: #5865F2; }
.platform-card:nth-child(2) i { color: #FF0000; }
.platform-card:nth-child(3) i { color: #1DA1F2; }

.platform-card h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.platform-card p {
    color: #a1a1a6;
    margin-bottom: 25px;
    font-size: 15px;
}

/* 下载区域 */
.download-container {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.1);
}

.download-icon {
    font-size: 64px;
    color: #007AFF;
    margin-bottom: 30px;
    background: rgba(0, 122, 255, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.download-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.download-card p {
    color: #a1a1a6;
    margin-bottom: 30px;
    font-size: 18px;
}

.download-info {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: #a1a1a6;
    font-size: 14px;
}

.guide-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
}

.guide-list li {
    color: #a1a1a6;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-list i {
    color: #34C759;
}

.system-requirements {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.system-requirements h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.req-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
}

.req-item h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.req-item ul {
    list-style: none;
}

.req-item li {
    color: #a1a1a6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.req-item li::before {
    content: '•';
    color: #007AFF;
    position: absolute;
    left: 0;
}

/* 底部 */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 20px 40px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.footer-section p {
    color: #a1a1a6;
    line-height: 1.6;
    font-size: 14px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #a1a1a6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007AFF;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #a1a1a6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #007AFF;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    color: #6e6e73;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-note {
    color: #6e6e73;
    font-size: 12px;
    font-style: italic;
}

/* 模态框 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: #a1a1a6;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #fff;
}

.modal-body {
    color: #a1a1a6;
    line-height: 1.6;
}

.server-ip-display {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.server-ip-display code {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: #34C759;
    font-weight: bold;
}

.btn-copy {
    background: rgba(52, 199, 89, 0.2);
    color: #34C759;
    border: 1px solid rgba(52, 199, 89, 0.3);
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: rgba(52, 199, 89, 0.3);
    transform: translateY(-2px);
}

.modal-note {
    font-size: 14px;
    color: #888;
    margin-top: 20px;
    font-style: italic;
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    background: none;
    border: none;
    padding: 10px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: saturate(180%) blur(20px);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .content-section {
        padding: 80px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        text-align: left;
        gap: 20px;
    }
    
    .stat {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .servers-container,
    .features-grid,
    .download-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 选中文本样式 */
::selection {
    background: rgba(0, 122, 255, 0.3);
    color: #fff;
}