/* ===== MODERN BRAZILIAN CASINO WEBSITE CSS ===== */
/* 全新设计的巴西赌场网站样式 - 2025 */

/* === CSS变量系统 - 巴西国旗配色方案 === */
:root {
    /* 巴西国旗主色系 */
    --brazil-green: #009B3A;
    --brazil-yellow: #FEDF00;
    --brazil-blue: #002776;
    --brazil-white: #FFFFFF;
    
    /* 扩展色彩系统 */
    --green-light: #00C851;
    --green-dark: #007B2F;
    --yellow-light: #FFF59D;
    --yellow-dark: #F57F17;
    --blue-light: #1976D2;
    --blue-dark: #001A5C;
    
    /* 背景色系统 */
    --bg-primary: #0F1419;
    --bg-secondary: #1E2328;
    --bg-card: #252A2F;
    --bg-overlay: rgba(0, 39, 118, 0.9);
    
    /* 文字色系统 */
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --text-light: #D0D0D0;
    --text-white: #FFFFFF;
    --text-muted: #B0BEC5;
    --text-accent: #FEDF00;
    
    /* 渐变色系统 */
    --gradient-brazil: linear-gradient(135deg, #009B3A 0%, #FEDF00 50%, #002776 100%);
    --gradient-green: linear-gradient(135deg, #00C851 0%, #009B3A 100%);
    --gradient-yellow: linear-gradient(135deg, #FEDF00 0%, #F57F17 100%);
    --gradient-blue: linear-gradient(135deg, #1976D2 0%, #002776 100%);
    --gradient-dark: linear-gradient(135deg, #0F1419 0%, #1E2328 100%);
    
    /* 字体系统 */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Roboto Slab', serif;
    
    /* 间距系统 */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* 阴影系统 */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-green: 0 8px 32px rgba(0, 155, 58, 0.3);
    --shadow-yellow: 0 8px 32px rgba(254, 223, 0, 0.3);
    --shadow-blue: 0 8px 32px rgba(0, 39, 118, 0.3);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.6);
    
    /* 边框圆角 */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* 过渡动画 */
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
    
    /* 断点 */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

/* === 导航栏样式 === */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-dark);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--brazil-green);
    z-index: 99999999;
    transition: all var(--transition-normal);
}

.main-navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.2rem;
}

.brand-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(254, 223, 0, 0.3));
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-brazil);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-name {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    margin: 0;
}

.navbar-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-menu a:hover {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-menu a:hover::after {
    width: 80%;
}

/* === Mega Menu Dropdown Styles === */
.nav-dropdown {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform var(--transition-fast);
    opacity: 0.7;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(20px);
    min-width: 600px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all var(--transition-normal);
    margin-top: var(--space-sm);
}

.nav-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    /*transform: translateX(-50%) translateY(0);*/
}

.dropdown-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    padding: var(--space-xl);
}

.dropdown-column h4 {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: var(--space-xs);
}

.dropdown-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
    position: relative;
}

.dropdown-column a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    transform: translateX(4px);
}

.dropdown-column a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all var(--transition-fast);
    color: var(--primary-gold);
}

.dropdown-column a:hover::before {
    opacity: 1;
    left: -15px;
}

/* === Large Mega Menu for Games === */
.mega-dropdown-large {
    min-width: 1000px;
    max-width: 1200px;
}

.mega-dropdown-large .dropdown-content {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-xl) var(--space-lg);
}

/* === Featured Games Banner === */
.featured-games-banner {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 50%, var(--primary-gold) 100%);
    margin: var(--space-lg) var(--space-xl) var(--space-xl);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.banner-content h3 {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.banner-content p {
    color: #ffffff;
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
}

.featured-games-list {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.featured-game {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-game:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.navbar-actions {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.btn-secondary, .btn-primary {
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* === Hero Section === */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(220, 20, 60, 0.2) 0%, transparent 70%),
                radial-gradient(ellipse at 70% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    min-height: 80vh;
    position: relative;
    z-index: 0;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--text-white);
}

.brand-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-light);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.badge {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--primary-gold);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-start;
}

.cta-primary {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    min-width: 280px;
}

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

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 215, 0, 0.5);
}

.cta-text {
    font-size: 1.1rem;
    font-weight: 800;
}

.cta-subtext {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.cta-arrow {
    margin-left: var(--space-sm);
}

.cta-secondary {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: var(--space-sm) var(--space-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.cta-secondary:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(var(--shadow-xl));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-1deg); }
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

.live-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-top: var(--space-xs);
}

/* === Features Section === */
.features-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-2xl);
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-casino);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-image {
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-white);
}

.feature-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.feature-list {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.feature-list li {
    margin-bottom: var(--space-sm);
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    padding-left: var(--space-md);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.feature-list li strong {
    color: var(--primary-gold);
}

.feature-btn {
    background: var(--gradient-red);
    color: var(--text-white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    display: inline-block;
    box-shadow: var(--shadow-red);
}

.feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(220, 20, 60, 0.4);
}

/* === Payment Section === */
.payment-section {
    padding: var(--space-3xl) 0;
    background: var(--gradient-dark);
    position: relative;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.payment-method {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all var(--transition-normal);
}

.payment-method:hover {
    transform: translateY(-4px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--bg-primary);
}

.payment-method h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-white);
}

.payment-details p {
    margin-bottom: var(--space-xs);
    color: var(--text-light);
}

.payment-details strong {
    color: var(--primary-gold);
}

/* === Social Proof Section === */
.social-proof-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.testimonials {
    margin-bottom: var(--space-2xl);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.testimonial-card {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    color: var(--primary-gold);
    font-weight: 600;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-card);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.trust-icon {
    font-size: 1.5rem;
}

.trust-text strong {
    display: block;
    color: var(--text-white);
    font-weight: 600;
}

.trust-text small {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* === Final CTA Section === */
.final-cta-section {
    padding: var(--space-3xl) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(220, 20, 60, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)); }
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.timer-item {
    background: var(--bg-card);
    border: 2px solid var(--primary-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    min-width: 80px;
    box-shadow: var(--shadow-gold);
}

.timer-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timer-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-cta {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-normal);
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    margin-bottom: var(--space-lg);
}

.mega-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.6);
}

.mega-cta-text {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
}

.mega-cta-subtext {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: var(--space-xs);
}

.mega-cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.mega-cta:hover .mega-cta-glow {
    left: 100%;
}

.urgency-message {
    background: var(--gradient-red);
    color: var(--text-white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    font-weight: 600;
    animation: urgencyPulse 2s ease-in-out infinite;
}

.urgency-message a {
    color: var(--text-white) !important;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.urgency-message a:hover {
    color: var(--primary-gold) !important;
    transform: translateY(-2px);
}

.urgency-message p {
    margin: 0;
    color: var(--text-white) !important;
    cursor: pointer;
}

.urgency-message a:hover p {
    color: var(--primary-gold) !important;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.highlight {
    background: var(--primary-gold);
    color: var(--bg-primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

/* === Footer 美化版 === */
.main-footer {
    position: relative;
    background: linear-gradient(180deg, #0a0e14 0%, #111827 50%, #0f172a 100%);
    padding: 0;
    overflow: hidden;
    border-top: none;
}

.footer-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ff6b35, #ffd700, #00d4aa, #ffd700);
    background-size: 300% 100%;
    animation: footerGradient 8s ease infinite;
}

@keyframes footerGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(0, 212, 170, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 0;
}

/* 顶部区域 */
.footer-top {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* 品牌区域 */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.02);
}

.footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 社交媒体 */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-color: transparent;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* 链接区域 */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-column a:hover {
    color: #ffd700;
    transform: translateX(4px);
}

/* 联系方式特殊样式 */
.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-contact .contact-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
}

.contact-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.footer-contact a,
.footer-contact span:not(.contact-icon):not(.contact-label) {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #ffd700;
}

/* 中间区域 */
.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    font-size: 0.85rem;
    color: #ffd700;
    font-weight: 600;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.badge-icon {
    font-size: 1.1rem;
}

/* 支付方式 */
.footer-payments {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payments-label {
    color: #64748b;
    font-size: 0.85rem;
}

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

.payment-icon {
    width: 44px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* 底部版权 */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 0 32px;
}

.footer-copyright p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

.footer-copyright strong {
    color: #94a3b8;
}

.footer-warning {
    margin-top: 8px !important;
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 6px;
    color: #f87171 !important;
    font-size: 0.8rem !important;
    display: inline-block;
}

.footer-license {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.license-badge {
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 150, 136, 0.05));
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 6px;
    color: #00d4aa;
    font-size: 0.8rem;
    font-weight: 600;
}

/* === 响应式设计 === */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .live-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    /* 确保页面内容可见 */
    body {
        padding-top: 0;
        margin-top: 0;
    }
    
    /* 强制所有内容层级低于菜单 */
    .hero-section,
    .hero-container,
    .hero-content,
    .features-section,
    .content-section {
        z-index: 1 !important;
    }
    
    .hero-section * {
        z-index: 1 !important;
    }
    
    /* 优化导航栏高度 */
    .navbar-container {
        height: 60px;
        padding: 0 var(--space-sm);
    }
    
    .brand-logo {
        height: 32px;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    /* 优化移动端菜单 */
    .navbar-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-md);
        gap: var(--space-xs);
        overflow-y: auto;
        z-index: 99999999;
        border-top: 2px solid var(--primary-gold);
        box-sizing: border-box;
        /* 强制显示在最上层 */
        isolation: isolate;
        transform: translateZ(0);
        will-change: transform;
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .navbar-menu.active {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        /* iOS Safari 特殊处理 */
        -webkit-transform: translateZ(999px);
        transform: translateZ(999px);
        pointer-events: auto !important;
    }
    
    /* 确保菜单关闭时隐藏 */
    .navbar-menu:not(.active) {
        display: none !important;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 10000;
        position: relative;
    }
    
    /* 移动端下拉菜单样式优化 */
    .nav-dropdown {
        width: 100%;
        margin-bottom: var(--space-xs);
    }
    
    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: var(--space-md);
        border-radius: var(--radius-md);
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
        border: 1px solid rgba(255, 215, 0, 0.3);
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-white);
        transition: all var(--transition-fast);
    }
    
    .nav-link:hover {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(139, 0, 0, 0.2) 100%);
        border-color: var(--primary-gold);
        transform: translateY(-1px);
    }
    
    .dropdown-arrow {
        font-size: 16px;
        transition: transform var(--transition-fast);
    }
    
    /* 移动端大型下拉菜单 */
    .mega-dropdown,
    .mega-dropdown-large {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: var(--bg-secondary);
        min-width: auto;
        max-width: none;
        width: 100%;
        margin: var(--space-xs) 0 0 0;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 215, 0, 0.2);
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
        display: none;
        animation: slideDown 0.3s ease-out;
        overflow: hidden;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-dropdown.mobile-open .mega-dropdown,
    .nav-dropdown.mobile-open .mega-dropdown-large {
        display: block;
    }
    
    .nav-dropdown.mobile-open .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .nav-dropdown.mobile-open .nav-link {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(139, 0, 0, 0.25) 100%);
        border-color: var(--primary-gold);
    }
    
    /* 移动端下拉内容优化 */
    .mega-dropdown-large .dropdown-content {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        padding: var(--space-md);
        width: 100%;
        box-sizing: border-box;
    }
    
    .dropdown-column {
        background: rgba(255, 215, 0, 0.03);
        border-radius: var(--radius-md);
        padding: var(--space-md);
        margin-bottom: var(--space-sm);
        border: 1px solid rgba(255, 215, 0, 0.1);
        width: 100%;
        box-sizing: border-box;
    }
    
    .dropdown-column:last-child {
        margin-bottom: 0;
    }
    
    /* 确保移动端子菜单不会偏移 */
    .nav-dropdown {
        position: relative;
        width: 100%;
        margin-bottom: var(--space-xs);
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-dropdown .nav-link {
        width: 100%;
        box-sizing: border-box;
        text-align: left;
        flex-shrink: 0;
    }
    
    /* 修复子菜单内容对齐 */
    .mega-dropdown .dropdown-content,
    .mega-dropdown-large .dropdown-content {
        margin: 0;
        padding: var(--space-md);
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    /* 防止子菜单被推到远处 */
    .navbar-menu .nav-dropdown {
        margin-bottom: 0;
        padding-bottom: var(--space-xs);
    }
    
    .navbar-menu .mega-dropdown,
    .navbar-menu .mega-dropdown-large {
        margin-top: 0;
        margin-bottom: var(--space-md);
    }
    
    .dropdown-column h4 {
        font-size: 0.95rem;
        margin-bottom: var(--space-sm);
        padding-bottom: var(--space-xs);
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        color: var(--primary-gold);
    }
    
    .dropdown-column a {
        padding: var(--space-sm);
        margin-bottom: var(--space-xs);
        border-radius: var(--radius-sm);
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid transparent;
        transition: all var(--transition-fast);
    }
    
    .dropdown-column a:hover {
        background: rgba(255, 215, 0, 0.15);
        border-color: rgba(255, 215, 0, 0.3);
        transform: translateX(2px);
    }
    
    /* 特色游戏横幅移动端优化 */
    .featured-games-banner {
        margin: var(--space-sm);
        padding: var(--space-md);
        border-radius: var(--radius-md);
    }
    
    .banner-content h3 {
        font-size: 1rem;
        margin-bottom: var(--space-xs);
    }
    
    .banner-content p {
        font-size: 0.8rem;
        margin-bottom: var(--space-sm);
    }
    
    .featured-games-list {
        gap: var(--space-xs);
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .featured-game {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .navbar-actions {
        gap: var(--space-xs);
    }
    
    .btn-secondary {
        display: none;
    }
    
    .btn-primary {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.85rem;
    }
    
    /* 移动端Hero区域优化 */
    .hero-section {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
        padding: var(--space-lg) 0;
        position: relative;
        z-index: 0;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: var(--space-md);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: var(--space-lg);
        padding: 0 var(--space-sm);
    }
    
    .hero-badges {
        justify-content: center;
        gap: var(--space-xs);
        flex-wrap: wrap;
        margin-bottom: var(--space-lg);
    }
    
    .badge {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .hero-cta {
        align-items: center;
        gap: var(--space-md);
    }
    
    .cta-primary {
        min-width: 260px;
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-subtext {
        font-size: 0.85rem;
    }
    
    .cta-secondary {
        font-size: 0.9rem;
        padding: var(--space-sm) var(--space-md);
    }
    
    .main-image {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .live-stats {
        flex-direction: column;
        gap: var(--space-md);
        margin-top: var(--space-xl);
        padding: var(--space-md);
    }
    
    .stat-number {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* 移动端Features区域优化 */
    .features-section {
        padding: var(--space-xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-xl);
        padding: 0 var(--space-sm);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: var(--space-md);
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: 0 var(--space-sm);
    }
    
    .feature-card {
        padding: var(--space-lg);
    }
    
    .feature-image {
        margin-bottom: var(--space-md);
    }
    
    .feature-img {
        height: 150px;
    }
    
    .feature-title {
        font-size: 1.2rem;
        margin-bottom: var(--space-sm);
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
        margin-bottom: var(--space-sm);
        line-height: 1.5;
    }
    
    /* 移动端支付区域优化 */
    .payment-section {
        padding: var(--space-xl) 0;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: 0 var(--space-sm);
    }
    
    .payment-method {
        padding: var(--space-lg);
    }
    
    .payment-icon {
        width: 50px;
        height: 50px;
    }
    
    /* 移动端倒计时优化 */
    .countdown-timer {
        flex-wrap: wrap;
        gap: var(--space-sm);
        justify-content: center;
    }
    
    .timer-item {
        min-width: 70px;
        padding: var(--space-sm);
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .timer-label {
        font-size: 0.75rem;
    }
    
    .mega-cta {
        min-width: auto;
        padding: var(--space-md) var(--space-lg);
        font-size: 1.1rem;
    }
    
    .mega-cta-text {
        font-size: 1.1rem;
    }
    
    .mega-cta-subtext {
        font-size: 0.9rem;
    }
    
    /* 移动端评价区域优化 */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: 0 var(--space-sm);
    }
    
    .testimonial-card {
        padding: var(--space-md);
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
        padding: 0 var(--space-sm);
    }
    
    .trust-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* 移动端Footer优化 */
    .footer-container {
        padding: 40px 16px 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-column h4 {
        font-size: 0.95rem;
    }
    
    .footer-contact .contact-item {
        padding: 10px;
    }
    
    .footer-middle {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-payments {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-license {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-xs: 0.25rem;
        --space-sm: 0.5rem;
        --space-md: 0.75rem;
        --space-lg: 1rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
        --space-3xl: 2.5rem;
    }
    
    /* 超小屏幕导航优化 */
    .navbar-container {
        height: 55px;
        padding: 0 var(--space-sm);
    }
    
    .brand-logo {
        height: 28px;
    }
    
    .brand-name {
        font-size: 0.9rem;
    }
    
    .navbar-menu {
        top: 55px;
        padding: var(--space-sm);
    }
    
    .nav-link {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
    }
    
    .dropdown-column {
        padding: var(--space-sm);
    }
    
    .dropdown-column h4 {
        font-size: 0.85rem;
    }
    
    .dropdown-column a {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.8rem;
    }
    
    /* 超小屏幕Hero区域 */
    .hero-section {
        min-height: 100vh;
        padding-top: 75px;
    }
    
    .hero-content {
        padding: var(--space-md) 0;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: var(--space-sm);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: var(--space-md);
        padding: 0 var(--space-xs);
    }
    
    .hero-badges {
        gap: var(--space-xs);
        margin-bottom: var(--space-md);
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 4px var(--space-xs);
    }
    
    .cta-primary {
        min-width: 240px;
        padding: var(--space-sm) var(--space-md);
        font-size: 0.95rem;
    }
    
    .cta-text {
        font-size: 0.95rem;
    }
    
    .cta-subtext {
        font-size: 0.8rem;
    }
    
    .cta-secondary {
        font-size: 0.85rem;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .live-stats {
        padding: var(--space-sm);
        margin-top: var(--space-lg);
    }
    
    .stat-number {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* 超小屏幕内容区域 */
    .section-header {
        padding: 0 var(--space-xs);
        margin-bottom: var(--space-lg);
    }
    
    .section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        margin-bottom: var(--space-sm);
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .features-grid {
        gap: var(--space-md);
        padding: 0 var(--space-xs);
    }
    
    .feature-card {
        padding: var(--space-md);
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-icon {
        font-size: 1.3rem;
    }
    
    .feature-list li {
        font-size: 0.85rem;
        margin-bottom: var(--space-xs);
    }
    
    /* 超小屏幕支付区域 */
    .payment-grid {
        padding: 0 var(--space-xs);
        gap: var(--space-sm);
    }
    
    .payment-method {
        padding: var(--space-md);
    }
    
    .payment-method h3 {
        font-size: 1.1rem;
    }
    
    /* 超小屏幕倒计时 */
    .countdown-timer {
        gap: var(--space-xs);
    }
    
    .timer-item {
        min-width: 60px;
        padding: var(--space-xs);
    }
    
    .timer-number {
        font-size: 1.3rem;
    }
    
    .timer-label {
        font-size: 0.7rem;
    }
    
    .mega-cta {
        padding: var(--space-sm) var(--space-md);
        font-size: 1rem;
        min-width: 240px;
    }
    
    .mega-cta-text {
        font-size: 1rem;
    }
    
    .mega-cta-subtext {
        font-size: 0.85rem;
    }
    
    /* 超小屏幕评价区域 */
    .testimonial-grid {
        padding: 0 var(--space-xs);
    }
    
    .testimonial-card {
        padding: var(--space-sm);
    }
    
    .trust-badges {
        padding: 0 var(--space-xs);
        gap: var(--space-sm);
    }
    
    .trust-badge {
        padding: var(--space-sm);
        font-size: 0.85rem;
    }
    
    /* 超小屏幕Footer */
    .footer-container {
        padding: 0 var(--space-xs);
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .footer-column a {
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .footer-badge {
        font-size: 0.7rem;
        padding: 2px var(--space-xs);
    }
}

/* === 性能优化 === */
.main-image,
.feature-img {
    will-change: transform;
}

/* === 无障碍支持 === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 焦点样式 */
button:focus,
a:focus,
input:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* === 加载状态 === */
.loading {
    position: relative;
    color: transparent;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
/* Urgency Message Link Styles */
.urgency-message .urgency-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    padding: var(--space-xs);
}

.urgency-message .urgency-link:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.urgency-message .urgency-link p {
    margin: 0;
    cursor: pointer;
}

.urgency-message .urgency-link:hover p {
    color: var(--accent-color);
}
﻿/* === 巴西国旗主题样式 - 全新设计 === */

/* === 巴西国旗配色系统 === */
:root {
    /* 巴西国旗主色系 */
    --brazil-green: #009B3A;
    --brazil-yellow: #FEDF00;
    --brazil-blue: #002776;
    --brazil-white: #FFFFFF;
    
    /* 扩展色彩系统 */
    --green-light: #00C851;
    --green-dark: #007B2F;
    --yellow-light: #FFF59D;
    --yellow-dark: #F57F17;
    --blue-light: #1976D2;
    --blue-dark: #001A5C;
    
    /* 背景色系统 */
    --bg-primary: #0F1419;
    --bg-secondary: #1E2328;
    --bg-card: #252A2F;
    --bg-overlay: rgba(0, 39, 118, 0.9);
    
    /* 文字色系统 */
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --text-light: #D0D0D0;
    --text-white: #FFFFFF;
    --text-muted: #B0BEC5;
    --text-accent: #FEDF00;
    
    /* 渐变色系统 */
    --gradient-brazil: linear-gradient(135deg, #009B3A 0%, #FEDF00 50%, #002776 100%);
    --gradient-green: linear-gradient(135deg, #00C851 0%, #009B3A 100%);
    --gradient-yellow: linear-gradient(135deg, #FEDF00 0%, #F57F17 100%);
    --gradient-blue: linear-gradient(135deg, #1976D2 0%, #002776 100%);
    --gradient-dark: linear-gradient(135deg, #0F1419 0%, #1E2328 100%);
    
    /* 阴影系统 */
    --shadow-green: 0 8px 32px rgba(0, 155, 58, 0.3);
    --shadow-yellow: 0 8px 32px rgba(254, 223, 0, 0.3);
    --shadow-blue: 0 8px 32px rgba(0, 39, 118, 0.3);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.6);
    
    /* 字体系统 */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Roboto Slab', serif;
    
    /* 间距系统 */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* 边框圆角 */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* 过渡动画 */
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
}

/* === 简洁导航栏设计 - 清爽风格 === */
.main-navbar {
    background: rgba(15, 20, 25, 0.95) !important;
    border: none !important;
    border-bottom: 1px solid rgba(0, 155, 58, 0.3) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 70px;
    transition: all 0.3s ease;
}

/* 简洁背景 - 无复杂动画 */

.main-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 155, 58, 0.1) 25%, 
        rgba(254, 223, 0, 0.1) 50%, 
        rgba(0, 39, 118, 0.1) 75%, 
        transparent 100%);
    animation: navbarShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

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

/* 简洁容器布局 */
.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 70px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 10;
    gap: var(--space-md);
}

/* 简洁品牌设计 */
.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    text-decoration: none;
    grid-column: 2;
    padding: var(--space-sm) var(--space-md);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

/* 简洁Logo */
.brand-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.02);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(1deg); }
}

.brand-logo:hover {
    transform: scale(1.15) rotate(5deg);
    filter: 
        drop-shadow(0 0 15px rgba(254, 223, 0, 0.8))
        drop-shadow(0 0 30px rgba(0, 155, 58, 0.6))
        drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.3px;
}

/* === 对称导航菜单系统 === */
.navbar-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xs);
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

/* 左侧导航组 */
.navbar-menu.left-nav {
    grid-column: 1;
    justify-content: flex-end;
    gap: var(--space-xs);
}

/* 右侧导航组 */
.navbar-menu.right-nav {
    grid-column: 3;
    justify-content: flex-start;
    gap: var(--space-xs);
}

/* 创建圆形轨道背景 */
.navbar-menu::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 155, 58, 0.1) 10%,
        rgba(254, 223, 0, 0.05) 30%,
        rgba(0, 39, 118, 0.1) 50%,
        rgba(254, 223, 0, 0.05) 70%,
        rgba(0, 155, 58, 0.1) 90%,
        transparent 100%);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 155, 58, 0.2);
    box-shadow: 
        0 0 30px rgba(0, 155, 58, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: -1;
    animation: trackPulse 6s ease-in-out infinite;
}

@keyframes trackPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.02);
        opacity: 1;
    }
}

.navbar-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(254, 223, 0, 0.2), 
        transparent);
    transition: left 2s ease-in-out;
}

.navbar-menu:hover::before {
    left: 100%;
}

/* 简洁导航链接 */
.navbar-menu li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: var(--space-sm) var(--space-md);
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 70px;
}

/* 简洁悬停效果 */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brazil-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, 
        rgba(0, 155, 58, 0.3) 0%, 
        rgba(254, 223, 0, 0.2) 50%, 
        rgba(0, 39, 118, 0.1) 100%);
    border-radius: 50%;
    transition: all var(--transition-normal);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-brazil);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

/* 简洁激活状态 */
.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary) !important;
    background: rgba(0, 155, 58, 0.1);
}

.nav-link.active {
    color: var(--brazil-green) !important;
    font-weight: 600;
    background: rgba(0, 155, 58, 0.15);
}

/* === 导航链接特殊效果 === */
.nav-link:nth-child(1) { --delay: 0.1s; }
.nav-link:nth-child(2) { --delay: 0.2s; }
.nav-link:nth-child(3) { --delay: 0.3s; }
.nav-link:nth-child(4) { --delay: 0.4s; }
.nav-link:nth-child(5) { --delay: 0.5s; }
.nav-link:nth-child(6) { --delay: 0.6s; }
.nav-link:nth-child(7) { --delay: 0.7s; }
.nav-link:nth-child(8) { --delay: 0.8s; }
.nav-link:nth-child(9) { --delay: 0.9s; }
.nav-link:nth-child(10) { --delay: 1.0s; }

/* === 简洁CTA按钮组 === */
.cta-group {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    margin-left: var(--space-sm);
}

/* 简洁主按钮 */
.btn-primary {
    background: var(--brazil-green) !important;
    color: var(--text-primary) !important;
    padding: var(--space-xs) var(--space-md) !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.btn-primary:hover {
    background: var(--green-dark) !important;
    transform: translateY(-1px) !important;
}

/* 简洁次按钮 */
.btn-secondary {
    background: transparent !important;
    color: var(--brazil-yellow) !important;
    padding: var(--space-xs) var(--space-md) !important;
    border: 1px solid var(--brazil-yellow) !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.btn-secondary:hover {
    background: var(--brazil-yellow) !important;
    color: var(--bg-primary) !important;
    transform: translateY(-1px) !important;
}

/* === 现代变形汉堡按钮 === */
.mobile-toggle {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, 
        rgba(0, 155, 58, 0.9) 0%, 
        rgba(0, 200, 70, 0.8) 100%);
    border: 1px solid var(--brazil-green);
    border-radius: 6px;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 10001;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 44px;
    height: 36px;
    justify-content: center;
    align-items: center;
    box-shadow: 
        0 4px 15px rgba(0, 155, 58, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.mobile-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
}

.mobile-toggle:hover {
    background: linear-gradient(135deg, 
        var(--brazil-green) 0%, 
        rgba(0, 200, 70, 1) 100%);
    box-shadow: 
        0 6px 20px rgba(0, 155, 58, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.mobile-toggle:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.mobile-toggle span {
    width: 26px !important;
    height: 3px !important;
    background: #ffffff !important;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    border-radius: 2px !important;
    display: block !important;
    position: relative !important;
    margin: 3px 0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
    transform-origin: center !important;
}

.mobile-toggle span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(254, 223, 0, 0.4) 50%, 
        transparent 100%);
    border-radius: inherit;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mobile-toggle:hover span::before {
    transform: scaleX(1);
    animation: shimmer 1s ease-in-out;
}

@keyframes shimmer {
    0% { transform: scaleX(0) translateX(-100%); }
    50% { transform: scaleX(1) translateX(0); }
    100% { transform: scaleX(0) translateX(100%); }
}


/* === 激活状态的现代X形变换 === */
.mobile-toggle.active {
    background: linear-gradient(135deg, 
        var(--brazil-yellow) 0%, 
        rgba(254, 223, 0, 0.9) 100%);
    border-color: var(--brazil-yellow);
    box-shadow: 
        0 6px 25px rgba(254, 223, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: scale(1.1) rotate(180deg);
    animation: activePulse 0.6s ease-out;
}

.mobile-toggle.active::before {
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%);
    animation: activeShine 0.8s ease-out;
}

/* 第一条线：变成X的左上到右下 */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px) scale(1.1);
    background: linear-gradient(90deg, 
        var(--bg-primary) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
    animation: lineRotate1 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* 中间线：缩放消失效果 */
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0) rotate(90deg);
    animation: lineDisappear 0.3s ease-out;
}

/* 第三条线：变成X的左下到右上 */
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px) scale(1.1);
    background: linear-gradient(90deg, 
        var(--bg-primary) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
    animation: lineRotate2 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* === 现代动画关键帧 === */
@keyframes activePulse {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.15) rotate(90deg); }
    100% { transform: scale(1.1) rotate(180deg); }
}

@keyframes activeShine {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(100%) skewX(-15deg); }
}

@keyframes lineRotate1 {
    0% { transform: rotate(0deg) translate(0, 0) scale(1); }
    50% { transform: rotate(-22.5deg) translate(-3px, 3px) scale(1.05); }
    100% { transform: rotate(-45deg) translate(-6px, 6px) scale(1.1); }
}

@keyframes lineRotate2 {
    0% { transform: rotate(0deg) translate(0, 0) scale(1); }
    50% { transform: rotate(22.5deg) translate(-3px, -3px) scale(1.05); }
    100% { transform: rotate(45deg) translate(-6px, -6px) scale(1.1); }
}

@keyframes lineDisappear {
    0% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.5; transform: scale(0.5) rotate(45deg); }
    100% { opacity: 0; transform: scale(0) rotate(90deg); }
}

/* === 导航栏滚动效果增强 === */
.main-navbar.scrolled {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.98) 0%, 
        rgba(15, 20, 25, 0.98) 50%, 
        rgba(0, 39, 118, 0.98) 100%) !important;
    backdrop-filter: blur(25px) saturate(200%) !important;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 155, 58, 0.4),
        0 0 50px rgba(0, 155, 58, 0.2) !important;
    transform: translateY(-1px);
}

.main-navbar.scrolled::before {
    animation-duration: 2s;
}

.main-navbar.scrolled .brand-logo {
    transform: scale(0.9);
    filter: 
        drop-shadow(0 0 8px rgba(254, 223, 0, 0.8))
        drop-shadow(0 0 16px rgba(0, 155, 58, 0.6));
}

.main-navbar.scrolled .brand-text {
    font-size: 1.8rem;
    animation-duration: 2s;
}

/* === 响应式设计 === */

/* 超大屏幕优化 - 1400px */
@media (max-width: 1400px) {
    .navbar-container {
        max-width: 1100px;
        padding: 0 var(--space-sm);
    }
    
    .navbar-menu.left-nav,
    .navbar-menu.right-nav {
        gap: 2px;
    }
    
    .nav-link {
        padding: 4px 8px;
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 4px 10px !important;
        font-size: 0.75rem !important;
        font-weight: 500 !important;
    }
    
    .cta-group {
        gap: 4px;
        margin-left: 4px;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
    
    .brand-logo {
        height: 35px;
    }
}

@media (max-width: 1200px) {
    .navbar-container {
        max-width: 950px;
        padding: 0 8px;
    }
    
    .navbar-menu {
        gap: 0;
    }
    
    .navbar-menu.left-nav,
    .navbar-menu.right-nav {
        gap: 0;
    }
    
    .nav-link {
        padding: 3px 6px;
        font-size: 0.7rem;
        min-width: auto;
        font-weight: 500;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 3px 8px !important;
        font-size: 0.7rem !important;
        min-width: 45px !important;
        font-weight: 500 !important;
    }
    
    .cta-group {
        gap: 2px;
        margin-left: 0;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .brand-logo {
        height: 30px;
    }
}

/* 紧凑屏幕优化 - 1100px */
@media (max-width: 1100px) {
    .navbar-container {
        max-width: 800px;
        padding: 0 4px;
    }
    
    .nav-link {
        padding: 2px 4px;
        font-size: 0.65rem;
        font-weight: 500;
        line-height: 1.2;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 2px 6px !important;
        font-size: 0.65rem !important;
        min-width: 35px !important;
        font-weight: 500 !important;
        line-height: 1.2 !important;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .brand-logo {
        height: 25px;
    }
    
    .cta-group {
        gap: 1px;
        margin-left: 0;
    }
    
    .navbar-menu.left-nav,
    .navbar-menu.right-nav {
        gap: 0;
    }
}

/* 超紧凑屏幕优化 - 1050px */
@media (max-width: 1050px) {
    .navbar-container {
        max-width: 750px;
        padding: 0 2px;
        height: 60px;
    }
    
    .nav-link {
        padding: 1px 3px;
        font-size: 0.6rem;
        font-weight: 400;
        line-height: 1.1;
        letter-spacing: -0.2px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 1px 4px !important;
        font-size: 0.6rem !important;
        min-width: 30px !important;
        font-weight: 400 !important;
        line-height: 1.1 !important;
        letter-spacing: -0.1px !important;
    }
    
    .brand-text {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .brand-logo {
        height: 22px;
    }
    
    .cta-group {
        gap: 0;
        margin-left: 0;
    }
    
    .navbar-menu.left-nav,
    .navbar-menu.right-nav {
        gap: 0;
    }
    
    /* 进一步压缩Grid间距 */
    .navbar-container {
        gap: 4px;
    }
}

/* 移动端菜单在桌面端完全隐藏 */
.mobile-menu {
    display: none !important;
}

@media (max-width: 992px) {
    /* 移动端隐藏桌面导航菜单 */
    .navbar-menu.left-nav,
    .navbar-menu.right-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        height: 70px;
        padding: 0 var(--space-md);
        display: flex;
        justify-content: space-between;
        align-items: center;
        grid-template-columns: none;
    }
    
    .navbar-brand {
        grid-column: unset;
        justify-self: unset;
    }
    
    .brand-logo {
        height: 45px;
    }
    
    .brand-text {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    /* 汉堡按钮显示并靠右 */
    .mobile-toggle {
        display: flex !important;
        margin-left: auto;
    }
    
    /* 在768px以下显示移动端菜单 - 重新启用 */
    .mobile-menu {
        display: none !important;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(15, 20, 25, 0.98);
        flex-direction: column;
        padding: var(--space-md);
        border-top: 1px solid var(--brazil-green);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        gap: var(--space-xs);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 9998;
    }
    
    .mobile-menu.active {
        display: flex !important;
        animation: slideDownMobile 0.3s ease-out;
    }
    
    @keyframes slideDownMobile {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* 移动端导航链接样式 */
    .mobile-menu .mobile-nav-link {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        padding: var(--space-md);
        margin-bottom: var(--space-xs);
        border-radius: 6px;
        background: rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }
    
    .mobile-menu .mobile-nav-link:hover,
    .mobile-menu .mobile-nav-link.active {
        color: var(--text-primary);
        background: rgba(0, 155, 58, 0.1);
        border-left-color: var(--brazil-green);
    }
    
    .mobile-menu .mobile-nav-link.active {
        color: var(--brazil-green) !important;
        font-weight: 600;
        background: rgba(0, 155, 58, 0.15);
    }
    
    /* 移动端CTA按钮组 */
    .mobile-menu .mobile-cta-group {
        display: flex;
        gap: var(--space-sm);
        margin-top: var(--space-md);
        padding-top: var(--space-md);
        border-top: 1px solid rgba(0, 155, 58, 0.2);
    }
    
    .mobile-menu .mobile-btn-primary {
        flex: 1;
        background: var(--brazil-green) !important;
        color: var(--text-primary) !important;
        padding: var(--space-md) !important;
        border: none !important;
        border-radius: 6px !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
    }
    
    .mobile-menu .mobile-btn-secondary {
        flex: 1;
        background: transparent !important;
        color: var(--brazil-yellow) !important;
        padding: var(--space-md) !important;
        border: 1px solid var(--brazil-yellow) !important;
        border-radius: 6px !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
    }
    
    .mobile-menu .mobile-btn-primary:hover {
        background: #00a83a !important;
    }
    
    .mobile-menu .mobile-btn-secondary:hover {
        background: var(--brazil-yellow) !important;
        color: var(--bg-primary) !important;
        transform: translateY(-1px) !important;
    }
    
    /* 小屏幕上的汉堡按钮 */
    .mobile-toggle {
        width: 42px !important;
        height: 34px !important;
        background: var(--brazil-green) !important;
        padding: 6px !important;
        box-shadow: 0 4px 12px rgba(0, 155, 58, 0.5) !important;
    }
    
    .mobile-toggle span {
        width: 26px !important;
        height: 2px !important;
        background: #ffffff !important;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: var(--space-xs) var(--space-sm) !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        height: 70px;
        padding: 0 var(--space-md);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    .brand-text {
        font-size: 1.3rem;
        font-weight: 700;
    }
    
    /* 确保汉堡按钮在最右侧 */
    .mobile-toggle {
        margin-left: auto;
        order: 2;
    }
    
    .navbar-brand {
        order: 1;
    }
    
    /* 超小屏幕的移动端菜单 */
    .mobile-menu {
        top: 70px !important;
        padding: var(--space-sm);
    }
    
    .mobile-menu .mobile-nav-link {
        padding: var(--space-sm);
        font-size: 0.9rem;
        margin-bottom: var(--space-xs);
    }
    
    .mobile-menu .mobile-btn-primary,
    .mobile-menu .mobile-btn-secondary {
        padding: var(--space-sm) !important;
        font-size: 0.8rem !important;
    }
    
    /* 超小屏幕上汉堡按钮 */
    .mobile-toggle {
        width: 44px !important;
        height: 36px !important;
        background: var(--brazil-green) !important;
        border: 2px solid var(--brazil-yellow) !important;
        padding: 6px !important;
        box-shadow: 0 6px 16px rgba(0, 155, 58, 0.6) !important;
    }
    
    .mobile-toggle span {
        width: 28px !important;
        height: 2px !important;
        background: #ffffff !important;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    }
    
    .navbar-actions {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .btn-primary,
    .btn-secondary {
        padding: var(--space-xs) !important;
        font-size: 0.75rem !important;
        min-width: 70px;
    }
}

/* === 移动端菜单打开时的body样式 === */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* === 导航栏特殊效果 === */
.navbar-menu li:nth-child(1) .nav-link { animation-delay: 0.1s; }
.navbar-menu li:nth-child(2) .nav-link { animation-delay: 0.2s; }
.navbar-menu li:nth-child(3) .nav-link { animation-delay: 0.3s; }
.navbar-menu li:nth-child(4) .nav-link { animation-delay: 0.4s; }
.navbar-menu li:nth-child(5) .nav-link { animation-delay: 0.5s; }
.navbar-menu li:nth-child(6) .nav-link { animation-delay: 0.6s; }
.navbar-menu li:nth-child(7) .nav-link { animation-delay: 0.7s; }
.navbar-menu li:nth-child(8) .nav-link { animation-delay: 0.8s; }
.navbar-menu li:nth-child(9) .nav-link { animation-delay: 0.9s; }
.navbar-menu li:nth-child(10) .nav-link { animation-delay: 1.0s; }

.navbar-menu.active .nav-link {
    animation: slideInFromTop 0.3s ease-out both;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === 英雄区域样式 === */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-brazil);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 155, 58, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(254, 223, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 39, 118, 0.3) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.brazil-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, rgba(0, 155, 58, 0.05) 0px, rgba(0, 155, 58, 0.05) 2px, transparent 2px, transparent 20px),
        repeating-linear-gradient(-45deg, rgba(254, 223, 0, 0.05) 0px, rgba(254, 223, 0, 0.05) 2px, transparent 2px, transparent 20px);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.brand-highlight {
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-fast);
}

.badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--gradient-yellow);
    color: var(--bg-primary);
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-yellow);
    position: relative;
    overflow: hidden;
    min-width: 250px;
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-yellow), 0 16px 48px rgba(254, 223, 0, 0.4);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: var(--space-md) var(--space-xl);
    border: 2px solid var(--text-primary);
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.cta-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-4px);
}

/* === 主图区域 === */
.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out 0.3s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-dark);
    position: relative;
    z-index: 2;
    transition: all var(--transition-slow);
}

.main-image:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: var(--shadow-dark), var(--shadow-green);
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    z-index: 1;
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-brazil);
    border-radius: var(--radius-xl);
    filter: blur(30px);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: var(--brazil-yellow);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 15px;
    height: 15px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 25px;
    height: 25px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* === 统计数据区域 === */
.live-stats {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 1s ease-out 0.6s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brazil-yellow);
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: var(--space-xs);
}

/* === 特色功能区域 === */
.features-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid rgba(0, 155, 58, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.4s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brazil);
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark), var(--shadow-green);
    border-color: var(--brazil-green);
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-image {
    margin-bottom: var(--space-lg);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: all var(--transition-slow);
}

.feature-card:hover .feature-img {
    transform: scale(1.1);
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.feature-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-list {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.feature-list li {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
    position: relative;
    line-height: 1.7;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brazil-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-list strong {
    color: var(--brazil-yellow);
    font-weight: 600;
}

.feature-btn {
    background: var(--gradient-green);
    color: var(--text-primary);
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-green);
}

.feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green), 0 8px 24px rgba(0, 155, 58, 0.4);
}

/* === 信任建立区域 === */
.trust-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
    border-top: 2px solid var(--brazil-green);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.trust-badge {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 155, 58, 0.2);
    transition: all var(--transition-normal);
    animation: fadeInUp 1s ease-out;
}

.trust-badge:nth-child(2) { animation-delay: 0.2s; }
.trust-badge:nth-child(3) { animation-delay: 0.4s; }
.trust-badge:nth-child(4) { animation-delay: 0.6s; }

.trust-badge:hover {
    transform: translateY(-5px);
    border-color: var(--brazil-yellow);
    box-shadow: var(--shadow-dark);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.trust-text strong {
    color: var(--brazil-yellow);
    font-size: 1.2rem;
    display: block;
    margin-bottom: var(--space-xs);
}

.trust-text small {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === 最终CTA区域 === */
.final-cta-section {
    padding: var(--space-3xl) 0;
    background: var(--gradient-brazil);
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.timer-item {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 80px;
}

.timer-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brazil-yellow);
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.timer-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: var(--space-xs);
}

.final-cta-button {
    margin-bottom: var(--space-lg);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.mega-cta {
    background: var(--gradient-yellow);
    color: var(--bg-primary);
    padding: var(--space-lg) var(--space-2xl);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-yellow);
    position: relative;
    overflow: hidden;
    min-width: 300px;
}

.mega-cta:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-yellow), 0 20px 60px rgba(254, 223, 0, 0.5);
}

.mega-cta-text {
    font-size: 1.3rem;
    font-weight: 800;
}

.mega-cta-subtext {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.mega-cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: rotate 4s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.urgency-message {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.urgency-message a {
    color: var(--text-secondary);
    text-decoration: none;
}

.urgency-message .highlight {
    color: var(--brazil-yellow);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(254, 223, 0, 0.5);
}

/* === 页脚样式 === */
.main-footer {
    background: var(--bg-primary);
    border-top: 2px solid var(--brazil-green);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 50px;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 2px 8px rgba(254, 223, 0, 0.3));
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
}

.footer-column h4 {
    color: var(--brazil-yellow);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

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

.footer-column li {
    margin-bottom: var(--space-sm);
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--brazil-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-badge {
    background: rgba(0, 155, 58, 0.1);
    color: var(--brazil-green);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 155, 58, 0.2);
}

/* === 响应式设计 === */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: var(--space-lg);
        border-top: 1px solid var(--brazil-green);
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: var(--space-xs);
    }
    
    .mobile-toggle span {
        width: 25px !important;
        height: 3px !important;
        background: #ffffff !important;
        margin: 3px 0 !important;
        transition: var(--transition-fast) !important;
        border-radius: 2px !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }
    
    .live-stats {
        flex-direction: column;
        gap: var(--space-md);
        left: var(--space-md);
        right: var(--space-md);
        transform: none;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: var(--space-lg);
    }
    
    .mega-cta {
        min-width: auto;
        width: 100%;
    }
}

/* === 强制修复汉堡按钮三条线显示 === */
.main-navbar .mobile-toggle span,
.navbar-container .mobile-toggle span,
button.mobile-toggle span {
    background: #ffffff !important;
    display: block !important;
    width: 26px !important;
    height: 3px !important;
    min-height: 3px !important;
    max-height: 3px !important;
    margin: 3px 0 !important;
    border-radius: 2px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
    position: relative !important;
    transform-origin: center !important;
    line-height: 1 !important;
    font-size: 0 !important;
}

/* 确保在所有媒体查询中都生效 */
@media (max-width: 1200px) {
    .mobile-toggle span {
        background: #ffffff !important;
        display: block !important;
        height: 3px !important;
        min-height: 3px !important;
    }
}

@media (max-width: 992px) {
    .mobile-toggle span {
        background: #ffffff !important;
        display: block !important;
        height: 3px !important;
        min-height: 3px !important;
    }
}

@media (max-width: 768px) {
    .mobile-toggle span {
        background: #ffffff !important;
        display: block !important;
        width: 26px !important;
        height: 3px !important;
        min-height: 3px !important;
        max-height: 3px !important;
    }
}

@media (max-width: 480px) {
    .mobile-toggle span {
        background: #ffffff !important;
        display: block !important;
        width: 28px !important;
        height: 3px !important;
        min-height: 3px !important;
        max-height: 3px !important;
    }
}

/* ========== 文章页样式 - Article Page Styles ========== */

/* 确保页面背景色正确 */
.template-body {
    background: var(--bg-primary, #0F1419) !important;
    min-height: 100vh;
}

.template-body .container {
    background: transparent;
}

.template-body main {
    background: transparent;
    padding-top: 100px; /* 为固定导航栏留空间 */
}

/* 面包屑导航 */
.breadcrumb {
    padding: 15px 0;
    margin-bottom: 20px;
    margin-top: 0;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-list li {
    color: #b0b0b0;
}

.breadcrumb-list li a {
    color: var(--brazil-yellow, #f1c40f);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ========== 文章页面新布局 ========== */
.article-page {
    padding-top: 70px;
    min-height: 100vh;
}

.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 32px;
}

/* 文章页面包屑 */
.article-page .breadcrumb {
    margin-top: 0;
    margin-bottom: 24px;
    padding: 16px 24px;
    background: var(--bg-card, #252A2F);
    border-radius: 12px;
    border-left: 4px solid var(--brazil-green, #009B3A);
}

.article-page .breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.article-page .breadcrumb-list li a {
    color: var(--brazil-yellow, #FEDF00);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.article-page .breadcrumb-list li a:hover {
    color: #fff;
}

.article-page .breadcrumb-list .separator {
    color: #64748b;
}

.article-page .breadcrumb-list .current {
    color: #e2e8f0;
    font-weight: 600;
}

/* 文章两栏布局 */
.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .article-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* 文章主体 */
.article-main {
    background: var(--bg-card, #252A2F);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid rgba(0, 155, 58, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .article-main {
        padding: 28px 20px;
        border-radius: 16px;
    }
}

/* 文章头部 */
.article-header {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 155, 58, 0.3);
}

.article-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brazil-yellow, #FEDF00);
    margin-bottom: 20px;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--brazil-yellow, #FEDF00), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 1.6rem;
    }
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.article-meta .author,
.article-meta .date {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 文章底部 */
.article-footer {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(0, 155, 58, 0.3);
}

/* 作者框 */
.author-box {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(0, 155, 58, 0.1);
    border: 1px solid rgba(0, 155, 58, 0.3);
    border-radius: 16px;
    margin-bottom: 32px;
}

.author-avatar {
    font-size: 2.5rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brazil-green, #009B3A), var(--brazil-yellow, #FEDF00));
    border-radius: 50%;
    flex-shrink: 0;
}

.author-info h4 {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.author-info p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 600px) {
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    .author-avatar {
        margin: 0 auto;
    }
}

/* 文章导航 */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .post-navigation {
        grid-template-columns: 1fr;
    }
}

.nav-prev, .nav-next {
    padding: 20px;
    background: var(--bg-card, #252A2F);
    border: 1px solid rgba(0, 155, 58, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-prev:hover, .nav-next:hover {
    background: rgba(0, 155, 58, 0.1);
    border-color: var(--brazil-green, #009B3A);
}

.nav-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 6px;
}

.nav-title {
    color: #e2e8f0;
    font-weight: 500;
}

.nav-title a {
    color: inherit;
    text-decoration: none;
}

.nav-title a:hover {
    color: #ffd700;
}

.nav-next {
    text-align: right;
}

/* 文章侧边栏 */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--bg-card, #252A2F);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0, 155, 58, 0.2);
    text-align: center;
}

.widget-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.sidebar-widget h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.sidebar-widget p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.widget-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.widget-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-widget {
    background: linear-gradient(145deg, #1a3d2e, #0f2a1f);
    border-color: rgba(0, 155, 58, 0.3);
}

.contact-widget .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.contact-widget .contact-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #94a3b8;
}

.contact-widget .contact-list li:last-child {
    border-bottom: none;
}

.contact-widget .contact-list a {
    color: var(--brazil-yellow, #FEDF00);
    text-decoration: none;
}

.contact-widget .contact-list a:hover {
    color: #fff;
}

/* 兼容旧版文章容器 */
.article-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .article-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* 文章主体 - 深色主题 */
.article-container article {
    background: #1a1f24 !important;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .article-container article {
        padding: 25px 20px;
        border-radius: 12px;
    }
}

/* 侧边栏 widget 深色主题 */
.sidebar .widget {
    background: #1a1f24 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-container article h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--brazil-yellow, #f1c40f);
    margin-bottom: 20px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .article-container article h1 {
        font-size: 24px;
    }
}

/* 文章元信息 */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #b0b0b0;
}

/* 文章内容 */
.article-content {
    font-size: 17px;
    line-height: 1.9;
    color: #ffffff;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.article-content h2 {
    color: var(--brazil-yellow, #f1c40f);
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    padding: 15px 0 15px 20px;
    border-left: 4px solid var(--brazil-green, #27ae60);
    background: rgba(39, 174, 96, 0.1);
    border-radius: 0 10px 10px 0;
}

.article-content h3 {
    color: var(--brazil-green, #27ae60);
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px;
}

.article-content h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 12px;
}

.article-content p {
    margin-bottom: 18px;
    text-align: justify;
}

.article-content a {
    color: var(--brazil-yellow, #f1c40f);
    text-decoration: none;
    border-bottom: 1px dashed var(--brazil-yellow, #f1c40f);
    transition: all 0.3s ease;
}

.article-content a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.article-content ul, .article-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-content blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    background: rgba(241, 196, 15, 0.1);
    border-left: 4px solid var(--brazil-yellow, #f1c40f);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
    overflow-x: auto;
    display: block;
}

.article-content th, .article-content td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-content th {
    background: rgba(39, 174, 96, 0.2);
    color: var(--brazil-yellow, #f1c40f);
    font-weight: 600;
}

.article-content tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

/* 作者信息 */
.author-box {
    margin-top: 40px;
    padding: 25px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.author-box h4 {
    color: var(--brazil-yellow, #f1c40f);
    margin-bottom: 12px;
    font-size: 18px;
}

.author-box p {
    color: #e0e0e0;
    line-height: 1.7;
    margin: 0;
}

/* 上下篇文章导航 */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .post-nav {
        grid-template-columns: 1fr;
    }
}

.post-nav .prev, .post-nav .next {
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.post-nav .prev:hover, .post-nav .next:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--brazil-green, #27ae60);
}

.post-nav .label {
    display: block;
    font-size: 12px;
    color: #999999;
    margin-bottom: 8px;
}

.post-nav a {
    color: var(--brazil-yellow, #f1c40f);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.post-nav a:hover {
    color: #fff;
}

.post-nav .next {
    text-align: right;
}

/* 侧边栏 */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.widget {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.widget h3 {
    color: var(--brazil-yellow, #f1c40f);
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 15px;
}

.widget a {
    color: var(--brazil-yellow, #f1c40f);
    text-decoration: none;
}

.widget a:hover {
    text-decoration: underline;
}

.widget .btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--brazil-green, #27ae60), #2ecc71);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.3);
}

.widget .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    text-decoration: none;
}

/* 通用按钮样式 */
.btn-register, .cta-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--brazil-yellow, #f1c40f) 0%, #f39c12 100%);
    color: #1a1a2e;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(241, 196, 15, 0.3);
    border: none;
    cursor: pointer;
}

.btn-register:hover, .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(241, 196, 15, 0.4);
    text-decoration: none;
}

@media (max-width: 768px) {
    .btn-register, .cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* ========== 强制修复深色主题文字颜色 ========== */
/* Hero 区域文字颜色强制修复 */
.hero-section,
.hero-content,
.hero-container {
    color: #ffffff !important;
}

.hero-title {
    color: #ffffff !important;
}

.hero-content p,
.hero-subtitle {
    color: #e0e0e0 !important;
}

/* 全局深色主题文字修复 */
body, 
.template-body {
    color: #ffffff !important;
    background: var(--bg-primary, #0F1419) !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
}

p {
    color: #e0e0e0 !important;
}

/* 特色功能区域 */
.features-section,
.features-container,
.feature-card,
.feature-content {
    color: #ffffff !important;
}

.feature-title {
    color: #ffffff !important;
}

.feature-list li {
    color: #e0e0e0 !important;
}

/* CTA 区域 */
.final-cta-section,
.cta-container {
    color: #ffffff !important;
}

.cta-title {
    color: #ffffff !important;
}

.cta-subtitle {
    color: #e0e0e0 !important;
}

/* 链接颜色 */
a {
    color: var(--brazil-yellow, #FEDF00) !important;
}

a:hover {
    color: #ffffff !important;
}

/* 按钮内文字保持默认 */
.btn-primary,
.btn-secondary,
.cta-primary,
.cta-secondary,
.feature-btn,
.mega-cta {
    color: inherit !important;
}

.btn-primary a,
.cta-primary a {
    color: var(--bg-primary, #0F1419) !important;
}

/* ========== 深色主题全局文字颜色 ========== */
/* Hero 区域 */
.hero-title,
.hero-section h1,
.hero-content h1 {
    color: #ffffff !important;
}

.hero-content p,
.hero-subtitle,
.hero-section p {
    color: #e2e8f0 !important;
}

/* 全局文字颜色 */
body.template-body,
.template-body {
    color: #ffffff;
}

body.template-body h1,
body.template-body h2,
body.template-body h3,
body.template-body h4,
body.template-body h5,
body.template-body h6 {
    color: #ffffff;
}

body.template-body p {
    color: #e2e8f0;
}

/* 区块标题 */
.section-title,
.feature-title,
.cta-title {
    color: #ffffff !important;
}

.section-subtitle,
.cta-subtitle,
.feature-list li {
    color: #e2e8f0 !important;
}

/* 文章页面 */
.article-container h1,
.article-content h2,
.article-content h3 {
    color: #ffffff !important;
}

.article-content,
.article-content p {
    color: #e2e8f0 !important;
}

/* 面包屑导航 */
.breadcrumb,
.breadcrumb-list {
    color: #94a3b8;
}

.breadcrumb a,
.breadcrumb-list a {
    color: #60a5fa !important;
}

.breadcrumb a:hover {
    color: #93c5fd !important;
}

