/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 全新配色方案 - 去除紫色 */
    --primary-gradient: linear-gradient(135deg, #00c6ff 0%, #0072ff 50%, #00d4ff 100%);
    --secondary-gradient: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff9a9e 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    --light-gradient: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    
    /* 背景颜色 */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-glass: rgba(255, 255, 255, 0.1);
    
    /* 文字颜色 */
    --text-primary: #ffffff;
    --text-secondary: #b8c5d1;
    --text-accent: #00c6ff;
    --text-muted: #6c757d;
    
    /* 边框和阴影 */
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 30px 80px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 198, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 114, 255, 0.2) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - 全新设计 */
header {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    color: var(--text-accent);
    transform: translateY(-2px);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
}

/* Button Styles - 全新设计 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--secondary-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--text-accent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-medium);
}

.btn-login {
    background: var(--accent-gradient);
    color: var(--text-primary);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-login:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-light);
}

.btn-register {
    background: var(--secondary-gradient);
    color: var(--text-primary);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-register:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-light);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* 按钮动画效果 */
.btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Breadcrumb Styles */
.breadcrumb {
    background: #e9ecef;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb li {
    color: #6c757d;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Hero Section - 全新设计 */
.hero {
    background: var(--primary-gradient);
    color: var(--text-primary);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="300" r="200" fill="url(%23a)"/><circle cx="400" cy="700" r="250" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Gallery - 四张小照片布局 */
.hero-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* 错落有致的动画效果 */
.gallery-item-1 {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.gallery-item-2 {
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.gallery-item-3 {
    animation: slideInRight 0.8s ease-out 0.6s both;
}

.gallery-item-4 {
    animation: slideInRight 0.8s ease-out 0.8s both;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

/* 第一张图片 - 左上角 */
.gallery-item-1 {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    box-shadow: 0 15px 40px rgba(0, 198, 255, 0.3);
}

.gallery-item-1:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 198, 255, 0.4);
}

/* 第二张图片 - 右上角 */
.gallery-item-2 {
    transform: perspective(1000px) rotateY(5deg) rotateX(-5deg);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}

.gallery-item-2:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 107, 107, 0.4);
}

/* 第三张图片 - 左下角 */
.gallery-item-3 {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
    box-shadow: 0 15px 40px rgba(0, 114, 255, 0.3);
}

.gallery-item-3:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 114, 255, 0.4);
}

/* 第四张图片 - 右下角 */
.gallery-item-4 {
    transform: perspective(1000px) rotateY(-5deg) rotateX(-5deg);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.3);
}

.gallery-item-4:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 25px 60px rgba(79, 172, 254, 0.4);
}

/* 悬停效果 */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* 添加装饰元素 */
.gallery-item::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* 添加图片标签效果 */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* 添加图片编号 */
.gallery-item-1::after {
    content: '1';
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #00c6ff;
    font-size: 12px;
}

.gallery-item-2::after {
    content: '2';
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ff6b6b;
    font-size: 12px;
}

.gallery-item-3::after {
    content: '3';
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0072ff;
    font-size: 12px;
}

.gallery-item-4::after {
    content: '4';
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #4facfe;
    font-size: 12px;
}

/* 动画效果 */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

/* 移动端Hero区域 */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 4rem;
        min-height: 80vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .hero-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        max-width: 400px;
    }
    
    .gallery-item {
        transform: none !important;
    }
    
    .gallery-item:hover {
        transform: scale(1.02) !important;
    }
}

/* Section Styles - 全新设计 */
section {
    padding: 6rem 0;
    position: relative;
}

section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
    position: relative;
    font-weight: 700;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* 添加页面间距 */
body {
    padding-top: 80px; /* 为固定导航栏留出空间 */
}

/* Brand Introduction */
.brand-intro {
    background: var(--bg-secondary);
    position: relative;
}

.brand-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="hexagons" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,5 45,15 45,35 25,45 5,35 5,15" fill="none" stroke="%234facfe" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagons)"/></svg>');
    opacity: 0.3;
}

.brand-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

/* Features Section - 全新设计 */
.features {
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23e9ecef" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    background: var(--bg-glass);
}

.feature-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.feature-card:hover img {
    transform: scale(1.05);
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Registration Process */
.registration-process {
    background: var(--bg-secondary);
    position: relative;
}

.registration-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="circles" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23ff6b6b" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23circles)"/></svg>');
    opacity: 0.3;
}

.registration-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.registration-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Advantages Section */
.advantages {
    background: var(--bg-tertiary);
    position: relative;
}

.advantages-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: var(--bg-glass);
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.advantage-item h3 {
    color: var(--text-accent);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.advantage-item p {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin: 0;
}

/* 图标动画效果 */
.advantage-icon:nth-child(1) {
    animation: bounce 2s infinite;
}

.advantage-icon:nth-child(2) {
    animation: pulse 2s infinite;
}

.advantage-icon:nth-child(3) {
    animation: shake 2s infinite;
}

.advantage-icon:nth-child(4) {
    animation: float 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    75% {
        transform: translateX(2px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* FAQ Section - 全新设计 */
.faq {
    background: var(--primary-gradient);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="200" fill="url(%23b)"/><circle cx="900" cy="200" r="150" fill="url(%23b)"/><circle cx="500" cy="800" r="180" fill="url(%23b)"/></svg>');
    opacity: 0.2;
}

.faq h2 {
    color: white;
}

.faq h2::after {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.faq-item h3 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item h3:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.faq-item p {
    padding: 0 2rem 2rem;
    margin: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active p {
    max-height: 200px;
    padding: 1rem 2rem 2rem;
}

/* CTA Section */
.cta {
    background: var(--secondary-gradient);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="c" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23c)"/><circle cx="800" cy="300" r="200" fill="url(%23c)"/><circle cx="500" cy="700" r="250" fill="url(%23c)"/></svg>');
    opacity: 0.2;
}

.cta h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Footer - 全新设计 */
footer {
    background: var(--dark-gradient);
    color: var(--text-primary);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
    background: var(--bg-glass);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-section a:hover {
    color: var(--text-accent);
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--text-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Content wrapper for legal pages */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-wrapper h2 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-wrapper h3 {
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.content-wrapper p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.content-wrapper ul {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

/* About Us specific styles */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: var(--bg-glass);
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.value-card h3 {
    color: var(--text-accent);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.value-card p {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.features-list {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: var(--bg-glass);
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.feature-icon {
    font-size: 3rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-content h3 {
    color: var(--text-accent);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.feature-content h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.2px;
}

.feature-content p {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin: 0;
}

/* 图标动画效果 - About Us页面 */
.value-icon:nth-child(1) {
    animation: bounce 2s infinite;
}

.value-icon:nth-child(2) {
    animation: pulse 2s infinite;
}

.value-icon:nth-child(3) {
    animation: shake 2s infinite;
}

.value-icon:nth-child(4) {
    animation: float 3s ease-in-out infinite;
}

.feature-icon:nth-child(1) {
    animation: bounce 2.5s infinite;
}

.feature-icon:nth-child(2) {
    animation: pulse 2.5s infinite;
}

.feature-icon:nth-child(3) {
    animation: float 3.5s ease-in-out infinite;
}

/* Support page styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-card img {
    margin-bottom: 1rem;
}

.help-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.help-topic {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.help-topic h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.help-topic ul {
    list-style: none;
    padding: 0;
}

.help-topic li {
    margin: 0.5rem 0;
}

.help-topic a {
    color: #007bff;
    text-decoration: none;
    padding: 0.5rem;
    display: block;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.help-topic a:hover {
    background: #f8f9fa;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-detail {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-detail h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.resource-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.resource-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* Important notice styling */
.important-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.important-notice h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.important-notice p {
    color: #856404;
    margin: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }
    
    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

/* Mobile responsiveness for new pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-grid,
    .help-topics,
    .contact-details,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.5rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-content {
    background: var(--bg-secondary);
    position: relative;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="privacy-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="3" fill="%2300c6ff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23privacy-pattern)"/></svg>');
    opacity: 0.3;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* Privacy Policy Headings */
.privacy-content h2 {
    color: var(--text-accent);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-gradient);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
}

.privacy-content h2::before {
    content: '🔒';
    position: absolute;
    left: -3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.7;
}

.privacy-content h3 {
    color: var(--text-primary);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-gradient);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
    position: relative;
}

.privacy-content h3::before {
    content: '▶';
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--text-accent);
    opacity: 0.8;
}

.privacy-content p {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.privacy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-content li {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.privacy-content li::marker {
    color: var(--text-accent);
    font-weight: bold;
}

.privacy-content strong {
    color: var(--text-accent);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Special styling for Introduction section */
.privacy-content h2#privacy-intro {
    color: transparent !important;
    font-size: 2.5rem;
    margin-top: 0;
    background: linear-gradient(135deg, #00c6ff, #0072ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.privacy-content h2#privacy-intro::before {
    content: '📋';
    font-size: 2rem;
    left: -4rem;
    opacity: 1;
}

/* Special styling for Information We Collect */
.privacy-content h2:nth-of-type(2) {
    color: transparent !important;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24, #ff9ff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.privacy-content h2:nth-of-type(2)::before {
    content: '📊';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for Personal Information */
.privacy-content h3:first-of-type {
    color: transparent !important;
    background: linear-gradient(135deg, #00c6ff, #0072ff, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.privacy-content h3:first-of-type::before {
    content: '👤';
    font-size: 1.2rem;
    left: -0.8rem;
    opacity: 1;
}

/* Mobile responsiveness for privacy page */
@media (max-width: 768px) {
    .privacy-content h2::before,
    .privacy-content h2#privacy-intro::before,
    .privacy-content h2:nth-of-type(2)::before {
        display: none;
    }
    
    .privacy-content h2 {
        font-size: 1.8rem;
        margin-left: 0;
    }
    
    .privacy-content h3 {
        font-size: 1.4rem;
        padding-left: 0.5rem;
    }
    
    .privacy-content h3::before {
        display: none;
    }
}

/* Terms & Conditions Page Styles */
.terms-content {
    background: var(--bg-secondary);
    position: relative;
}

.terms-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="terms-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><rect x="25" y="25" width="2" height="2" fill="%23ff6b6b" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23terms-pattern)"/></svg>');
    opacity: 0.3;
}

/* Terms & Conditions Headings */
.terms-content h2 {
    color: var(--text-accent);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-gradient);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
}

.terms-content h2::before {
    content: '📋';
    position: absolute;
    left: -3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.7;
}

.terms-content h3 {
    color: var(--text-primary);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-gradient);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
    position: relative;
}

.terms-content h3::before {
    content: '▶';
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--text-accent);
    opacity: 0.8;
}

.terms-content p {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.terms-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-content li {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.terms-content li::marker {
    color: var(--text-accent);
    font-weight: bold;
}

.terms-content strong {
    color: var(--text-accent);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Special styling for Agreement to Terms section */
.terms-content h2#terms-intro {
    color: transparent !important;
    font-size: 2.5rem;
    margin-top: 0;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24, #ff9ff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.terms-content h2#terms-intro::before {
    content: '📜';
    font-size: 2rem;
    left: -4rem;
    opacity: 1;
}

/* Special styling for Eligibility Requirements */
.terms-content h2:nth-of-type(2) {
    color: transparent !important;
    background: linear-gradient(135deg, #00c6ff, #0072ff, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.terms-content h2:nth-of-type(2)::before {
    content: '✅';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for Account Registration */
.terms-content h2:nth-of-type(3) {
    color: transparent !important;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe, #fd79a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.terms-content h2:nth-of-type(3)::before {
    content: '👤';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for Gaming Rules */
.terms-content h2:nth-of-type(4) {
    color: transparent !important;
    background: linear-gradient(135deg, #00b894, #00cec9, #55a3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.terms-content h2:nth-of-type(4)::before {
    content: '🎮';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for Financial Terms */
.terms-content h2:nth-of-type(5) {
    color: transparent !important;
    background: linear-gradient(135deg, #fdcb6e, #e17055, #d63031);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.terms-content h2:nth-of-type(5)::before {
    content: '💰';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for first h3 (Age Restrictions) */
.terms-content h3:first-of-type {
    color: transparent !important;
    background: linear-gradient(135deg, #00c6ff, #0072ff, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.terms-content h3:first-of-type::before {
    content: '🔞';
    font-size: 1.2rem;
    left: -0.8rem;
    opacity: 1;
}

/* Mobile responsiveness for terms page */
@media (max-width: 768px) {
    .terms-content h2::before,
    .terms-content h2#terms-intro::before,
    .terms-content h2:nth-of-type(2)::before,
    .terms-content h2:nth-of-type(3)::before,
    .terms-content h2:nth-of-type(4)::before,
    .terms-content h2:nth-of-type(5)::before {
        display: none;
    }
    
    .terms-content h2 {
        font-size: 1.8rem;
        margin-left: 0;
    }
    
    .terms-content h3 {
        font-size: 1.4rem;
        padding-left: 0.5rem;
    }
    
    .terms-content h3::before {
        display: none;
    }
}

/* Disclaimer Page Styles */
.disclaimer-content {
    background: var(--bg-secondary);
    position: relative;
}

.disclaimer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="disclaimer-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><polygon points="20,5 35,15 35,25 20,35 5,25 5,15" fill="%23ff6b6b" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23disclaimer-pattern)"/></svg>');
    opacity: 0.3;
}

/* Disclaimer Headings */
.disclaimer-content h2 {
    color: var(--text-accent);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-gradient);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
}

.disclaimer-content h2::before {
    content: '⚠️';
    position: absolute;
    left: -3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.7;
}

.disclaimer-content h3 {
    color: var(--text-primary);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-gradient);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
    position: relative;
}

.disclaimer-content h3::before {
    content: '▶';
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--text-accent);
    opacity: 0.8;
}

.disclaimer-content p {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.disclaimer-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.disclaimer-content li {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.disclaimer-content li::marker {
    color: var(--text-accent);
    font-weight: bold;
}

.disclaimer-content strong {
    color: var(--text-accent);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Special styling for General Disclaimer section */
.disclaimer-content h2#disclaimer-intro {
    color: transparent !important;
    font-size: 2.5rem;
    margin-top: 0;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24, #ff9ff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.disclaimer-content h2#disclaimer-intro::before {
    content: '⚠️';
    font-size: 2rem;
    left: -4rem;
    opacity: 1;
}

/* Special styling for Gaming and Financial Risk Disclaimer */
.disclaimer-content h2:nth-of-type(2) {
    color: transparent !important;
    background: linear-gradient(135deg, #d63031, #e17055, #fdcb6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.disclaimer-content h2:nth-of-type(2)::before {
    content: '💸';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for Platform Availability */
.disclaimer-content h2:nth-of-type(3) {
    color: transparent !important;
    background: linear-gradient(135deg, #00b894, #00cec9, #55a3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.disclaimer-content h2:nth-of-type(3)::before {
    content: '🔧';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for Legal and Regulatory Compliance */
.disclaimer-content h2:nth-of-type(4) {
    color: transparent !important;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe, #fd79a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.disclaimer-content h2:nth-of-type(4)::before {
    content: '⚖️';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for Financial and Tax Implications */
.disclaimer-content h2:nth-of-type(5) {
    color: transparent !important;
    background: linear-gradient(135deg, #fdcb6e, #e17055, #d63031);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.disclaimer-content h2:nth-of-type(5)::before {
    content: '📊';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for Intellectual Property */
.disclaimer-content h2:nth-of-type(6) {
    color: transparent !important;
    background: linear-gradient(135deg, #00c6ff, #0072ff, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.disclaimer-content h2:nth-of-type(6)::before {
    content: '©️';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for Limitation of Liability */
.disclaimer-content h2:nth-of-type(7) {
    color: transparent !important;
    background: linear-gradient(135deg, #ff7675, #fd79a8, #fdcb6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.disclaimer-content h2:nth-of-type(7)::before {
    content: '🛡️';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for Privacy and Data Security */
.disclaimer-content h2:nth-of-type(8) {
    color: transparent !important;
    background: linear-gradient(135deg, #00b894, #00cec9, #55a3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.disclaimer-content h2:nth-of-type(8)::before {
    content: '🔒';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for Dispute Resolution */
.disclaimer-content h2:nth-of-type(9) {
    color: transparent !important;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe, #fd79a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.disclaimer-content h2:nth-of-type(9)::before {
    content: '⚖️';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for first h3 (Financial Risk Warning) */
.disclaimer-content h3:first-of-type {
    color: transparent !important;
    background: linear-gradient(135deg, #d63031, #e17055, #fdcb6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.disclaimer-content h3:first-of-type::before {
    content: '⚠️';
    font-size: 1.2rem;
    left: -0.8rem;
    opacity: 1;
}

/* Mobile responsiveness for disclaimer page */
@media (max-width: 768px) {
    .disclaimer-content h2::before,
    .disclaimer-content h2#disclaimer-intro::before,
    .disclaimer-content h2:nth-of-type(2)::before,
    .disclaimer-content h2:nth-of-type(3)::before,
    .disclaimer-content h2:nth-of-type(4)::before,
    .disclaimer-content h2:nth-of-type(5)::before,
    .disclaimer-content h2:nth-of-type(6)::before,
    .disclaimer-content h2:nth-of-type(7)::before,
    .disclaimer-content h2:nth-of-type(8)::before,
    .disclaimer-content h2:nth-of-type(9)::before {
        display: none;
    }
    
    .disclaimer-content h2 {
        font-size: 1.8rem;
        margin-left: 0;
    }
    
    .disclaimer-content h3 {
        font-size: 1.4rem;
        padding-left: 0.5rem;
    }
    
    .disclaimer-content h3::before {
        display: none;
    }
}

/* Support Page Styles */
.contact-methods,
.quick-help,
.contact-info,
.additional-resources {
    background: var(--bg-secondary);
    position: relative;
}

.contact-methods::before,
.quick-help::before,
.contact-info::before,
.additional-resources::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="support-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="4" fill="%2300c6ff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23support-pattern)"/></svg>');
    opacity: 0.3;
}

/* Support Page Headings */
.contact-methods h2,
.quick-help h2,
.contact-info h2,
.additional-resources h2 {
    color: var(--text-accent);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-gradient);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.contact-methods h2::before,
.quick-help h2::before,
.contact-info h2::before,
.additional-resources h2::before {
    content: '🎧';
    position: absolute;
    left: -3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.7;
}

.contact-methods h3,
.quick-help h3,
.contact-info h3,
.additional-resources h3 {
    color: var(--text-primary);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-gradient);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
}

.contact-methods h3::before,
.quick-help h3::before,
.contact-info h3::before,
.additional-resources h3::before {
    content: '▶';
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--text-accent);
    opacity: 0.8;
}

.contact-methods p,
.quick-help p,
.contact-info p,
.additional-resources p {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.contact-methods ul,
.quick-help ul,
.contact-info ul,
.additional-resources ul {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
    z-index: 2;
}

.contact-methods li,
.quick-help li,
.contact-info li,
.additional-resources li {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-methods li::marker,
.quick-help li::marker,
.contact-info li::marker,
.additional-resources li::marker {
    color: var(--text-accent);
    font-weight: bold;
}

.contact-methods strong,
.quick-help strong,
.contact-info strong,
.additional-resources strong {
    color: var(--text-accent);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Special styling for How Can We Help You section */
.contact-methods h2#contact-title {
    color: transparent !important;
    font-size: 2.5rem;
    margin-top: 0;
    background: linear-gradient(135deg, #00c6ff, #0072ff, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.contact-methods h2#contact-title::before {
    content: '🎧';
    font-size: 2rem;
    left: -4rem;
    opacity: 1;
}

/* Special styling for Quick Help Topics */
.quick-help h2#quick-help-title {
    color: transparent !important;
    background: linear-gradient(135deg, #00b894, #00cec9, #55a3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.quick-help h2#quick-help-title::before {
    content: '❓';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for Contact Information */
.contact-info h2#contact-info-title {
    color: transparent !important;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe, #fd79a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.contact-info h2#contact-info-title::before {
    content: '📞';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for Additional Resources */
.additional-resources h2#resources-title {
    color: transparent !important;
    background: linear-gradient(135deg, #fdcb6e, #e17055, #d63031);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.additional-resources h2#resources-title::before {
    content: '📚';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for FAQ section in support page */
.faq h2#faq-title {
    color: transparent !important;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24, #ff9ff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.faq h2#faq-title::before {
    content: '❓';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Special styling for CTA section in support page */
.cta h2#cta-title {
    color: transparent !important;
    background: linear-gradient(135deg, #00c6ff, #0072ff, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.cta h2#cta-title::before {
    content: '🚀';
    font-size: 1.8rem;
    left: -3.5rem;
    opacity: 1;
}

/* Contact Cards Styling */
.contact-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: var(--bg-glass);
}

.contact-card:hover .contact-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 图标动画效果 */
.contact-card:nth-child(1) .contact-icon {
    animation: bounce 2s infinite;
}

.contact-card:nth-child(2) .contact-icon {
    animation: pulse 2.5s infinite;
}

.contact-card:nth-child(3) .contact-icon {
    animation: shake 2.2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    75% {
        transform: translateX(2px);
    }
}

.contact-card h3 {
    color: var(--text-accent);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.3;
    border: none;
    padding: 0;
}

.contact-card h3::before {
    display: none;
}

.contact-card p {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin: 0 0 1.5rem 0;
}

/* Help Topics Styling */
.help-topic {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.help-topic:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: var(--bg-glass);
}

.help-topic h3 {
    color: var(--text-accent);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.3;
    border: none;
    padding: 0;
}

.help-topic h3::before {
    display: none;
}

.help-topic ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-topic li {
    margin: 0.8rem 0;
    padding: 0;
}

.help-topic a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.8rem 1rem;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.help-topic a:hover {
    background: var(--bg-glass);
    color: var(--text-accent);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Details Styling */
.contact-detail {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.contact-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: var(--bg-glass);
}

.contact-detail h3 {
    color: var(--text-accent);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.3;
    border: none;
    padding: 0;
}

.contact-detail h3::before {
    display: none;
}

.contact-detail p {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin: 0 0 1rem 0;
}

/* Resource Items Styling */
.resource-item {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.resource-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: var(--bg-glass);
}

.resource-item h3 {
    color: var(--text-accent);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.3;
    border: none;
    padding: 0;
}

.resource-item h3::before {
    display: none;
}

.resource-item p {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin: 0 0 1.5rem 0;
}

/* Mobile responsiveness for support page */
@media (max-width: 768px) {
    .contact-methods h2::before,
    .quick-help h2::before,
    .contact-info h2::before,
    .additional-resources h2::before,
    .contact-methods h2#contact-title::before,
    .quick-help h2#quick-help-title::before,
    .contact-info h2#contact-info-title::before,
    .additional-resources h2#resources-title::before,
    .faq h2#faq-title::before,
    .cta h2#cta-title::before {
        display: none;
    }
    
    .contact-methods h2,
    .quick-help h2,
    .contact-info h2,
    .additional-resources h2 {
        font-size: 1.8rem;
        margin-left: 0;
    }
    
    .contact-methods h3,
    .quick-help h3,
    .contact-info h3,
    .additional-resources h3 {
        font-size: 1.4rem;
        padding-left: 0.5rem;
    }
    
    .contact-methods h3::before,
    .quick-help h3::before,
    .contact-info h3::before,
    .additional-resources h3::before {
        display: none;
    }
}
