/* 
  希腊在线兼职招聘网站 - 现代化CSS样式表 V6.0
  专为美观和用户体验设计，全新希腊风格优化 + 动画增强
*/

/* 引入Animate.css动画库 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

/* 1. CSS变量定义 - 希腊风格配色 + 新增动画变量
-------------------------------------------------- */
:root {
    --primary-color: #1e40af;        /* 深蓝色 - 希腊国旗色 */
    --primary-hover: #1e3a8a;
    --secondary-color: #0ea5e9;      /* 天蓝色 - 爱琴海色 */
    --secondary-hover: #0284c7;
    --accent-color: #f59e0b;         /* 金色 - 太阳色 */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --text-color: #374151;
    --text-muted: #6b7280;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --greek-blue: #004B87;           /* 希腊蓝 */
    --greek-light-blue: #87CEEB;     /* 浅蓝色 */
    --mediterranean-blue: #006994;    /* 地中海蓝 */
    
    /* 新增动画变量 */
    --animation-fast: 0.3s;
    --animation-normal: 0.6s;
    --animation-slow: 1.2s;
    --easing-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 2px 4px -1px rgb(0 0 0 / 0.06);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -1px rgb(0 0 0 / 0.06);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* 增强的希腊风格渐变 */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    --gradient-hero: linear-gradient(135deg, var(--greek-blue) 0%, var(--mediterranean-blue) 50%, var(--secondary-color) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    --gradient-gold: linear-gradient(45deg, #FFD700, #FFA500);  
    --gradient-success: linear-gradient(45deg, #00C851, #00A84F);
    --gradient-info: linear-gradient(45deg, #17a2b8, #138496);
    
    /* 新增渐变文字效果 */
    --text-gradient: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
    --highlight-gradient: linear-gradient(45deg, #00C851, #17a2b8);
}

/* 2. 全局样式优化 + 新增动画支持
-------------------------------------------------- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    background-attachment: fixed;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* 防止水平滚动条 */
}

/* 希腊文字体优化 */
body[lang="el"] {
    font-family: 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* 3. 全新动画系统
-------------------------------------------------- */

/* 文字渐变效果 */
.text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

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

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    animation: highlight-expand 2s ease-out;
}

/* 闪光效果 */
@keyframes shine {
    0% { transform: translateX(-100%) rotate(35deg); }
    100% { transform: translateX(100%) rotate(35deg); }
}

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

@keyframes highlight-expand {
    0% { width: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { width: 100%; opacity: 0.8; }
}

/* 脉冲环效果 */
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 0.4; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* 旋转动画 */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 浮动动画 - 与登录页面保持一致 */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-40px) rotate(270deg);
        opacity: 0.7;
    }
}

/* 弹跳动画 */
.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-8px); }
    70% { transform: translateY(-4px); }
    90% { transform: translateY(-2px); }
}

/* 计数器动画 */
.counter {
    animation: countUp 2s ease-out;
}

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

/* 4. 增强的导航栏
-------------------------------------------------- */
.navbar {
    padding: 1.25rem 0;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--animation-normal) var(--easing-smooth);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* 下拉菜单样式修复 */
.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
}

.navbar .dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.navbar .dropdown-item:hover {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.navbar .dropdown-item i {
    width: 20px;
    text-align: center;
}

.navbar .dropdown-divider {
    margin: 0.5rem 1rem;
    border-color: rgba(0, 0, 0, 0.1);
}

/* 确保下拉菜单触发器可点击 */
.navbar .dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.navbar .dropdown-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    letter-spacing: -0.02em;
    transition: all var(--animation-fast) var(--easing-smooth);
    position: relative;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: width var(--animation-fast) var(--easing-smooth);
}

.navbar-brand:hover::after {
    width: 100%;
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--secondary-color) !important;
}

/* 5. 超级英雄区域设计
-------------------------------------------------- */
.hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* 注册页面背景渐变 - 与登录页面保持一致 */
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    position: relative;
}

.bg-gradient-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: grain 20s linear infinite;
    z-index: 1;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 10%); }
    80% { transform: translate(-15%, 0%); }
    90% { transform: translate(10%, 5%); }
}

.bg-gradient-primary > * {
    position: relative;
    z-index: 2;
}

/* 粒子画布 */
.particle-canvas {
    pointer-events: none;
    opacity: 0.6;
}

/* 背景图案增强 */
.hero-bg-pattern {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.8" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

/* 装饰元素动画 */
.floating-decorations .decoration-circle:nth-child(1) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 0s;
}

.floating-decorations .decoration-circle:nth-child(2) {
    animation: float 8s ease-in-out infinite reverse;
    animation-delay: 1s;
}

.floating-decorations .decoration-triangle {
    animation: rotate 10s linear infinite, float 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* 增强的统计卡片 */
.hero-stats .stat-item {
    transition: all var(--animation-normal) var(--easing-smooth);
    cursor: pointer;
}

.hero-stats .stat-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.hero-stats .stat-item:hover .glow-effect {
    opacity: 1;
}

.hero-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity var(--animation-fast);
}

.hero-stats .stat-item:hover::before {
    opacity: 1;
    animation: shine 1.5s ease-out;
}

/* 增强的按钮效果 */
.hero-btn {
    position: relative;
    overflow: hidden;
    transition: all var(--animation-normal) var(--easing-bounce);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.hero-btn:hover .btn-shine {
    transform: translateX(100%);
}

.hero-btn:active {
    transform: translateY(-1px);
}

/* 信任徽章动画 */
.trust-badge {
    transition: all var(--animation-fast) var(--easing-smooth);
    cursor: pointer;
}

.trust-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255,215,0,0.3);
}

/* 6. 增强的悬浮卡片系统
-------------------------------------------------- */
/* 通用浮动卡片样式 */
.floating-card {
    transition: all var(--animation-normal) var(--easing-bounce);
    z-index: 20 !important; /* 修复：确保悬浮卡片在背景图片之上 */
    position: absolute !important;
}

/* 注册页面的圆形浮动卡片 */
.floating-card.card-1,
.floating-card.card-2,
.floating-card.card-3,
.floating-card.card-4 {
    animation: float 15s ease-in-out infinite;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 首页英雄区域的内容卡片 */
.hero-section .floating-card {
    animation: heroFloat 6s ease-in-out infinite;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
}

/* 首页英雄区域专用的温和浮动动画 */
@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.95;
    }
    50% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

/* 注册页面圆形卡片的位置和尺寸 */
.floating-card.card-1 {
    animation-delay: 0s;
    z-index: 21 !important;
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
}

.floating-card.card-2 {
    animation-delay: 5s;
    z-index: 22 !important;
    width: 80px;
    height: 80px;
    top: 70%;
    right: 15%;
}

.floating-card.card-3 {
    animation-delay: 10s;
    z-index: 23 !important;
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
}

.floating-card.card-4 {
    animation-delay: 15s;
    z-index: 24 !important;
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
}

/* 首页英雄区域卡片的特殊延迟 */
.hero-section .floating-card.card-1 {
    animation-delay: 0s;
    width: auto !important;
    height: auto !important;
}

.hero-section .floating-card.card-2 {
    animation-delay: 1s;
    width: auto !important;
    height: auto !important;
}

.hero-section .floating-card.card-3 {
    animation-delay: 2s;
    width: auto !important;
    height: auto !important;
}

/* 注册页面圆形卡片的悬停效果 */
.floating-card.card-1:hover,
.floating-card.card-2:hover,
.floating-card.card-3:hover,
.floating-card.card-4:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important;
    z-index: 30 !important; /* 悬停时提升到最高层级 */
}

/* 首页英雄区域卡片的悬停效果 */
.hero-section .floating-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25) !important;
    z-index: 30 !important;
}

/* 装饰圆环动画 */
.decoration-ring {
    opacity: 0.3;
}

/* 主图片增强效果 */
.hero-main-image {
    transition: all var(--animation-normal) var(--easing-smooth);
    position: relative;
    z-index: 5;
}

.hero-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* 7. 头像系统增强
-------------------------------------------------- */
.trust-badge-img {
    transition: all var(--animation-normal) var(--easing-smooth);
    cursor: pointer;
}

.trust-badge-img:hover {
    transform: translateY(-5px);
}

.trust-badge-img:hover .hover-info {
    opacity: 1;
    transform: translateY(-10px);
}

.avatar-wrapper {
    position: relative;
}

.online-indicator {
    animation: pulse 2s infinite;
}

.success-badge {
    animation: bounceIn 1s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

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

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* 8. 滚动指示器
-------------------------------------------------- */
.scroll-indicator {
    animation: fadeInUp 1s ease-out;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

/* 9. 通用悬停效果
-------------------------------------------------- */
.hover-lift {
    transition: all var(--animation-fast) var(--easing-smooth);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* 10. 响应式优化
-------------------------------------------------- */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .floating-card {
        position: relative !important;
        margin: 1rem 0;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .hero-stats .stat-item {
        margin-bottom: 1rem;
    }
    
    .decoration-ring {
        display: none;
    }
    
    .floating-decorations {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 1rem 0;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .hero-btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .trust-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* === 新增的增强功能样式 === */

/* 实时统计样式 */
.live-stats .bg-white {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.live-stats .bg-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

/* 特性卡片增强效果 */
.feature-card:hover .card-gradient {
    opacity: 1;
}

.feature-card:hover .icon-glow {
    opacity: 1;
}

.feature-card .feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 15px 35px rgba(30,64,175,0.3);
}

/* 统计圆圈动画 */
.stats-circle {
    transition: all 0.3s ease;
}

.feature-card:hover .stats-circle {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(16,185,129,0.4);
}

/* 特性标签悬停效果 */
.feature-tags .badge {
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-tags .badge:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* 文字渐变增强 */
.text-gradient {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

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

/* 脉冲动画 */
.pulse-animation {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(16,185,129,0.5);
    }
    50% {
    transform: scale(1.05);
        box-shadow: 0 0 20px rgba(16,185,129,0.8);
    }
}

/* 在线指示器动画 */
.bg-success.rounded-circle {
    animation: pulse-indicator 2s infinite;
}

@keyframes pulse-indicator {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* 移动端优化 */
@media (max-width: 768px) {
    .live-stats .col-auto {
    width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .live-stats .bg-white {
        justify-content: center;
    }
    
    .feature-card .feature-icon {
        width: 70px !important;
        height: 70px !important;
    }
    
    .feature-card .feature-icon i {
        font-size: 2rem !important;
    }
    
    .feature-stats {
        padding: 1rem !important;
    }
    
    .stats-circle {
        width: 35px !important;
        height: 35px !important;
    }
}

@media (max-width: 576px) {
    .feature-badge-container .badge {
    font-size: 0.9rem !important;
        padding: 0.75rem 1.5rem !important;
    }
    
    .display-5 {
        font-size: 2rem !important;
    }
    
    .feature-tags .badge {
    font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }
}

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

/* 确保所有图片都能正确显示 */
img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.story-photo,
.story-avatar img,
.trust-badge-img img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* 粒子画布样式 */
.particle-canvas {
    pointer-events: none;
    opacity: 0.6;
    z-index: 1;
}

/* 装饰元素动画 */
.decoration-circle,
.decoration-triangle {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
} 

/* ========================================
   6. 页脚样式 - 完整设计
======================================== */

.footer-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

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

/* 页脚标题样式 */
.footer-section h5,
.footer-section h6 {
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-section h5 {
    font-size: 1.4rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-section h6 {
    font-size: 1.1rem;
    color: var(--accent-color) !important;
}

/* 页脚文字样式 */
.footer-section p,
.footer-section small,
.footer-section .text-light {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
}

.footer-section .text-light.opacity-75,
.footer-section .text-white.opacity-80 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.footer-section .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* 页脚链接样式 */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
    border-radius: var(--border-radius-sm);
}

.footer-links a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 0.5rem;
    transform: translateX(5px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-links a i {
    margin-right: 0.5rem !important;
    width: 20px;
    text-align: center;
}

/* 页脚统计数据样式 */
.footer-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 1rem;
}

.footer-stats .stat-item {
    text-align: center;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-sm);
}

.footer-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-stats .stat-number {
    font-size: 1.5rem !important;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-stats small {
    font-size: 0.8rem;
    font-weight: 500;
}

/* 联系信息样式 */
.contact-info .contact-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-sm);
}

.contact-info .contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 0.5rem;
    transform: translateX(3px);
}

.contact-info .contact-item i {
    margin-right: 0.75rem !important;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* 社交媒体链接样式 */
.social-links {
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-color: var(--accent-color) !important;
    color: #ffffff !important;
    background: var(--accent-color) !important;
}

/* 页脚分割线 */
.footer-section hr {
    border-color: rgba(255, 255, 255, 0.2) !important;
    margin: 2rem 0;
}

/* 法律链接样式 */
.footer-legal a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-sm);
}

.footer-legal a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* 信任徽章样式 */
.trust-badges {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.trust-badges small {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-sm);
}

.trust-badges small:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.1);
}

.trust-badges i {
    margin-right: 0.5rem !important;
}

/* 玻璃效果 */
.glass-effect {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 悬停提升效果 */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
}

/* 页脚响应式设计 */
@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 2rem;
    }
    
    .footer-section h5 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section h6 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-stats {
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    .footer-stats .stat-number {
        font-size: 1.2rem !important;
    }
    
    .social-icon {
        width: 35px !important;
        height: 35px !important;
        margin-right: 0.25rem;
    }
    
    .footer-legal {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .footer-legal a {
        display: block;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-stats .row {
        text-align: center;
    }
    
    .footer-stats .col-4 {
        margin-bottom: 1rem;
    }
    
    .contact-info .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .social-links {
        text-align: center;
    }
    
    .trust-badges {
        text-align: center;
    }
    
    .trust-badges small {
        display: block;
        margin-bottom: 0.5rem;
    }
}

/* 页脚动画效果 */
.footer-section .container > .row > div {
    animation: fadeInUp 0.8s ease-out;
}

.footer-section .container > .row > div:nth-child(1) { animation-delay: 0.1s; }
.footer-section .container > .row > div:nth-child(2) { animation-delay: 0.2s; }
.footer-section .container > .row > div:nth-child(3) { animation-delay: 0.3s; }
.footer-section .container > .row > div:nth-child(4) { animation-delay: 0.4s; }
.footer-section .container > .row > div:nth-child(5) { animation-delay: 0.5s; }

/* 确保页脚始终在底部 */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.footer-section {
    margin-top: auto;
}

/* 添加页面整体背景纹理 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(30,64,175,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: -1;
    opacity: 0.3;
}

/* === User Profile - Promoter CTA === */
.become-promoter-cta {
    background: linear-gradient(135deg, var(--primary-light), #f3e8ff);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--primary-color);
}

.cta-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    color: var(--gray-700);
    font-weight: 500;
}

.cta-benefits .bi {
    color: var(--success-color);
}

/* === User Profile - Promoter Status Card === */
.promoter-status-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid;
}

.promoter-status-card .status-icon {
    font-size: 2.5rem;
}

.promoter-status-card .status-text p {
    color: var(--gray-600);
}

.promoter-status-card .status-badge {
    font-size: 1.25rem;
    font-weight: 700;
}

.promoter-status-card.status-approved {
    background-color: #e6f7f2;
    border-color: var(--success-color);
    color: #0d6b52;
}
.promoter-status-card.status-pending {
    background-color: #fffbeb;
    border-color: var(--warning-color);
    color: #b45309;
}
.promoter-status-card.status-rejected {
    background-color: #fee2e2;
    border-color: var(--danger-color);
    color: #991b1b;
}

/* ================================================== */
/* 博客文章卡片样式
/* ================================================== */
.blog-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

.blog-card .blog-image img {
    transition: transform 0.5s ease;
}

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

.blog-card .hover-primary {
    transition: color 0.3s ease;
}

.blog-card .hover-primary:hover {
    color: var(--primary-color) !important;
}

.blog-section .section-badge {
    animation: fadeInDown 0.6s ease;
}

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

/* 博客卡片响应式优化 */
@media (max-width: 768px) {
    .blog-card .blog-image {
        height: 180px !important;
    }

    .blog-card .card-title {
        font-size: 1.1rem;
    }

    .blog-card .card-text {
        font-size: 0.9rem;
    }
}
