/* 无野视频网站样式 - 绿青色系现代设计主题 */

/* 基础样式 */
.font-inter {
    font-family: 'Inter', 'Noto Sans SC', sans-serif;
}

.main-container {
    max-width: 1280px;
}

/* 导航栏样式 */
.main-navbar {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.main-navbar nav a {
    transition: all 0.3s ease;
}

.main-navbar nav a:hover {
    transform: translateY(-1px);
}

/* 按钮样式 */
.main-btn {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    color: white;
}

.main-btn:hover {
    background: linear-gradient(135deg, #059669, #0891b2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.main-btn-large {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    color: white;
}

.main-btn-large:hover {
    background: linear-gradient(135deg, #059669, #0891b2);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}

.main-btn-outline {
    background: transparent;
    border: 2px solid #10b981;
    color: #10b981;
    transition: all 0.3s ease;
}

.main-btn-outline:hover {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-color: #06b6d4;
    color: white;
    transform: translateY(-2px);
}

/* 卡片样式 */
.main-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 253, 245, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.main-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 直播卡片样式 */
.live-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 253, 245, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.live-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* 统计卡片样式 */
.stats-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 253, 245, 0.7));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
}

/* 评价卡片样式 */
.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 253, 245, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
}

/* 团队卡片样式 */
.team-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 253, 245, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 会员套餐卡片样式 */
.member-plan-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 253, 245, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.member-plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
}

/* 福利等级卡片样式 */
.welfare-level-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 253, 245, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.welfare-level-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
}

/* 特权卡片样式 */
.privilege-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 253, 245, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.privilege-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
}

/* 活动卡片样式 */
.activity-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 253, 245, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
}

/* 里程碑卡片样式 */
.milestone-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 253, 245, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
}

/* 联系信息样式 */
.contact-info {
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-4px);
}

/* 动画效果 */
.main-glow {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.main-glow:hover {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.7);
}

.main-text-glow {
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

.main-float {
    animation: mainFloat 3s ease-in-out infinite;
}

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

.main-pulse {
    animation: mainPulse 2s ease-in-out infinite;
}

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

.main-particles {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(16, 185, 129, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(34, 197, 94, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(16, 185, 129, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(6, 182, 212, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: mainParticles 20s linear infinite;
}

@keyframes mainParticles {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -100px); }
}

/* 英雄区域动画 */
.hero-animation {
    animation: heroFadeIn 1.5s ease-out;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 视频播放器模型样式 */
.main-video-mockup {
    perspective: 1000px;
}

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

@keyframes counterUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* 返回顶部按钮 */
#scroll-top {
    transition: all 0.3s ease;
}

#scroll-top.show {
    opacity: 1;
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .text-5xl {
        font-size: 3rem;
    }
    
    .text-4xl {
        font-size: 2.5rem;
    }
    
    .text-2xl {
        font-size: 2rem;
    }
    
    .main-navbar .flex {
        height: 14px;
    }
    
    .main-navbar h1 {
        font-size: 1.5rem;
    }
    
    .main-video-mockup .w-96 {
        width: 16rem;
    }
    
    .main-video-mockup .h-64 {
        height: 12rem;
    }
}

@media (max-width: 640px) {
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-4xl {
        font-size: 2rem;
    }
    
    .text-2xl {
        font-size: 1.75rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .space-x-4 > * + * {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .main-video-mockup .w-96 {
        width: 14rem;
    }
    
    .main-video-mockup .h-64 {
        height: 10rem;
    }
}

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

::-webkit-scrollbar-track {
    background: rgba(236, 253, 245, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #059669, #0891b2);
}

/* 选择文本样式 */
::selection {
    background: rgba(16, 185, 129, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(16, 185, 129, 0.3);
    color: white;
}

/* 表单样式 */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* 复选框样式 */
input[type="checkbox"] {
    accent-color: #10b981;
}

/* 加载动画 */
.loading-spinner {
    animation: spin 1s linear infinite;
}

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

/* 渐变文字效果 */
.gradient-text {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 悬停效果增强 */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* 边框动画 */
.border-animate {
    position: relative;
    overflow: hidden;
}

.border-animate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    animation: borderSlide 2s linear infinite;
}

@keyframes borderSlide {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* 直播状态指示器 */
.live-indicator {
    animation: livePulse 2s ease-in-out infinite;
}

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

/* 会员徽章样式 */
.member-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

/* 特殊效果 */
.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

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

/* 视频播放器控制栏样式 */
.video-controls {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* 进度条样式 */
.progress-bar {
    background: linear-gradient(90deg, #10b981, #06b6d4);
    height: 4px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.progress-bar:hover {
    height: 6px;
}

/* 音量控制样式 */
.volume-slider {
    background: linear-gradient(90deg, #10b981, #06b6d4);
    height: 4px;
    border-radius: 2px;
}

/* 全屏按钮样式 */
.fullscreen-btn {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 8px;
    transition: all 0.3s ease;
}

.fullscreen-btn:hover {
    background: rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
}