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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(24,20,26, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #eeeeee;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b35;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.nav-item:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #ff6b35;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-download, .btn-connect {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-download {
    background: #ff6b35;
    color: white;
}

.btn-download:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-connect {
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
}

.btn-connect:hover {
    background: #f8f9fa;
    border-color: #ff6b35;
    color: #ff6b35;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 5px;
    position: relative;
    overflow: hidden;
}

.hamburger:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.hamburger:active {
    transform: scale(0.95);
}

.hamburger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hamburger:hover::before {
    left: 100%;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: #eeeeee;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 英雄区域样式 */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    color: white;
    overflow: hidden;
    position: relative;
	height: 70vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10% 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* 特色区域样式 */
.features {
    padding: 80px 0;
    background: #0f0f10;
}

/* —— 特色区域：卡片轮播 —— */
.features-carousel .section-title { color: #e7e7ea; }
.features-carousel .container { max-width: 1560px; }
.features-carousel .cards-viewport { position: relative; overflow: hidden; perspective: 1200px; margin-top: 10px; }
.features-carousel .cards-track { display: flex; gap: 64px; align-items: stretch; transform-style: preserve-3d; transition: transform 600ms cubic-bezier(0.22,1,0.36,1); padding: 30px 20px 60px; will-change: transform; }
.features-carousel .story-card { width: clamp(340px, 44vw, 820px); background: #19191b; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4); transform-origin: center center; transform: translateZ(0) scale(0.88) rotateY(0deg); transition: transform 500ms cubic-bezier(0.22,1,0.36,1), box-shadow 400ms ease, opacity 400ms ease; opacity: 0.75; border: 1px solid rgba(255,255,255,0.06); }
.features-carousel .story-card .media { position: relative;  overflow: hidden; }
.features-carousel .story-card .media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.features-carousel .story-card .content { padding: 32px 50px 50px; color: #e7e7ea; }
.features-carousel .story-card .content h3 { font-size: clamp(24px, 3vw, 34px); line-height: 1.2; margin-bottom: 14px; }
.features-carousel .story-card .content p { color: #a8a8b3; margin-bottom: 18px; font-size: clamp(14px, 1.5vw, 18px); line-height: 1.6; }
.features-carousel .card-cta { width: 100%; text-align: center; border: 1px solid rgba(255,255,255,0.35); background: transparent; padding: 14px 18px; border-radius: 10px; letter-spacing: 0.04em; text-transform: uppercase; }
.features-carousel .card-cta:hover { background: rgba(255,255,255,0.06); }
.features-carousel .story-card.is-center {  box-shadow: 0 30px 90px rgba(0,0,0,0.6); opacity: 1;width: 32.5rem; }
.features-carousel .story-card.is-left { transform: translateX(-18%) rotateY(24deg) scale(0.7); opacity: 0.9; }
.features-carousel .story-card.is-right { transform: translateX(18%) rotateY(-24deg) scale(0.7); opacity: 0.9; }
.features-carousel .carousel-arrow { position: absolute; top: 43%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 999px; border: none; background: #ffffff; color: #111113; display: grid; place-items: center; cursor: pointer; z-index: 5; box-shadow: 0 10px 24px rgba(0,0,0,0.35); transition: transform 200ms ease, box-shadow 200ms ease; }
.features-carousel .carousel-arrow:hover { transform: translateY(-50%) scale(1.06); box-shadow: 0 12px 28px rgba(0,0,0,0.4); }
.features-carousel .carousel-arrow:active { transform: translateY(-50%) scale(0.98); }
.features-carousel .carousel-arrow.prev { left: 5px; }
.features-carousel .carousel-arrow.next { right: 5px; }
@media (max-width: 768px) { .features-carousel .cards-track { gap: 16px; padding: 20px 10px 40px; } .features-carousel .story-card { width: 90vw; } }
.features-carousel .story-card.is-center .content h3 { font-size: clamp(28px, 4vw, 44px); }
.features-carousel .story-card.is-center .content p { font-size: clamp(16px, 1.8vw, 20px); }


/* —— 覆盖：轮播轨道中的图片自适应缩放并居中 —— */
.features-carousel .cards-track .media {
    display: flex;
    align-items: center;
    justify-content: center;
}
.features-carousel .cards-track .media img {
    width: 85%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast; /* Chrome 提升缩放清晰度 */
    image-rendering: crisp-edges; /* 其他浏览器尽量减少模糊 */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8a65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.feature-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 12px;
}



/* 创建区域样式 */
/* 社区拼贴区域样式（替换创建区域） */
.community-section {
    padding: 90px 0;
    background: #121214;
}

.section-title.light { color: #e7e7ea; }

.community-grid {
    column-count: 4;
    column-gap: 20px;
}

.community-card {
    border-radius: 14px;
    overflow: hidden;
    background: #1a1a1c;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    display: inline-block;
    width: 100%;
    margin: 0 0 20px;
}

.community-card.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.community-card.quote-card {
    padding: 22px 22px 18px;
    color: #e9e9ee;
    background: linear-gradient(180deg, rgba(34,34,38,0.9), rgba(22,22,24,0.9));
}
.community-card.quote-card p { color: #d6d6de; font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.quote-meta { display: flex; align-items: center; gap: 10px; color: #bfbfd4; font-size: 13px; }
.quote-meta .avatar { width: 26px; height: 26px; border-radius: 50%; background: #6b6bf3; color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 12px; }

.community-card.stat-card { 
    display: grid; place-items: center; text-align: center; padding: 28px 10px; 
    background: radial-gradient(120% 120% at 0% 0%, rgba(255,107,53,0.18) 0%, rgba(255,107,53,0.02) 60%), #17171a;
}
.community-card.stat-card .stat { font-size: 34px; font-weight: 800; letter-spacing: 0.5px; color: #ffffff; }
.community-card.stat-card .label { margin-top: 8px; color: #bdbdcc; font-size: 12px; letter-spacing: 0.08em; }

/* 网格占位（近似截图布局） */
/* 高度分级，便于复刻截图纵向节奏 */
.community-card.h-sm { height: 140px; }
.community-card.h-md { height: 240px; }
.community-card.h-lg { height: 320px; }
/* .community-card.h-xl { height: 520px; } */

@media (max-width: 1200px) {
    .community-grid { column-count: 3; }
}

@media (max-width: 768px) {
    .community-section { padding: 64px 0; }
    .community-grid { column-count: 1; column-gap: 14px; }
    .community-card { width: 100%; }
}

/* 活动区域样式 */
.events-section {
    padding: 80px 0;
    background: #000;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.event-image {
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 25px;
}

.event-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.event-date {
    color: #ff6b35;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.event-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-event {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-event:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* 页脚样式 */
.footer {
    background: linear-gradient(180deg, #0f0f10 0%, #111113 100%);
    color: #e7e7ea;
    padding: 60px 0 20px;
    border-top: 1px solid #1f1f22;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ecf0f1;
}

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

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

.footer-section ul li a {
    color: #c7c9d1;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.footer-section ul li a:hover {
    color: #ff6b35;
    transform: translateX(4px);
}

/* 页脚图标样式 */
.footer-section ul li a i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
    color: #9aa0a6;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover i {
    color: #ff6b35;
}

.footer-section ul li a:focus-visible {
    outline: 2px solid rgba(255, 107, 53, 0.6);
    outline-offset: 2px;
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid #1f1f22;
    padding-top: 20px;
    display: flex;
	justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #bdbdcc;
    font-size: 0.9rem;
}

.language-selector select {
    background: #34495e;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, rgba(24, 20, 26, 0.95) 0%, rgba(30, 25, 35, 0.95) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
        overflow-y: auto;
        border-right: 1px solid rgba(255, 107, 53, 0.2);
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .nav-menu.active {
        left: 0;
        animation: menuSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes menuSlideIn {
        from {
            left: -100%;
            opacity: 0;
        }
        to {
            left: 0;
            opacity: 1;
        }
    }
    
    /* 添加脉冲动画给活跃的汉堡菜单按钮 */
    .hamburger.active::after {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border: 2px solid rgba(255, 107, 53, 0.6);
        border-radius: 12px;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(1.1);
            opacity: 0.7;
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }
    
    .nav-item {
        width: 90%;
        margin: 12px 0;
        text-align: center;
        position: relative;
        z-index: 1;
    }
    
    .nav-link {
        font-size: 18px;
        font-weight: 500;
        padding: 18px 24px;
        color: #e9e9ee;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        width: 100%;
        display: block;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-link:hover {
        color: #ffffff;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 140, 101, 0.15) 100%);
        border-color: rgba(255, 107, 53, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    }
    
    .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-link:active {
        transform: translateY(0);
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 107, 53, 0.2);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 107, 53, 0.05) 100%);
        margin-top: 12px;
        border-radius: 10px;
        padding: 8px 0;
        display: none;
        backdrop-filter: blur(15px);
    }
    
    .nav-item:hover .dropdown-content,
    .nav-item.active .dropdown-content {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .dropdown-content a {
        color: #d6d6de;
        padding: 14px 24px;
        font-size: 15px;
        font-weight: 400;
        border-radius: 6px;
        margin: 2px 8px;
        transition: all 0.2s ease;
        position: relative;
        overflow: hidden;
    }
    
    .dropdown-content a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
        transition: left 0.3s ease;
    }
    
    .dropdown-content a:hover {
        background: rgba(255, 107, 53, 0.15);
        color: #ff6b35;
        transform: translateX(4px);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    }
    
    .dropdown-content a:hover::before {
        left: 100%;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger span {
        background: #eeeeee;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hamburger.active {
        background: rgba(255, 107, 53, 0.3);
        border-color: rgba(255, 107, 53, 0.6);
        transform: rotate(180deg);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    }
    
    .hamburger.active span {
        background: #ff6b35;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(3px, 3px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(3px, -3px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .create-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .create-text h2 {
        font-size: 2rem;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .feature-card, .event-card {
    animation: fadeInUp 0.6s ease-out;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

.herobg1{
	position: absolute;
	padding-left: 160px;
	padding-right: 60vw;
	padding-top: 30vh;
	top: 0px;
	z-index: 2;
	opacity: 1;
	height: 100%;
	background: radial-gradient(50% 61.46% at 0% 49.93%, rgba(211, 78, 222, 0.3) 0%, rgba(211, 78, 222, 0) 75%);
	transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1), background 225ms cubic-bezier(0.4, 0, 0.2, 1);
}
.herobg2{
	position: absolute;
	padding-left: 160px;
	padding-right: 60vw;
	padding-top: 30vh;
	top: 0px;
	z-index: 2;
	opacity: 1;
	height: 100%;
	background: radial-gradient(50% 61.46% at 0% 49.93%, rgba(0, 247, 0, 0.2) 0%, rgba(0, 247, 0, 0) 75%);
    transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1), background 225ms cubic-bezier(0.4, 0, 0.2, 1);
}
.herobg3{
	position: absolute;
	padding-left: 160px;
	padding-right: 60vw;
	padding-top: 30vh;
	top: 0px;
	z-index: 2;
	opacity: 1;
	height: 100%;
    background: radial-gradient(50% 61.46% at 0% 49.93%, rgba(255, 209, 70, 0.26) 0%, rgba(255, 209, 70, 0) 75%);
    transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1), background 225ms cubic-bezier(0.4, 0, 0.2, 1);
}
.colorTxt{
	-webkit-text-fill-color: transparent;
	background: linear-gradient(244deg, #ff2d55 -11.67%, #ffbc5b 88.23%);
	background-clip: text;
	-webkit-background-clip: text;
}
