:root {
    --ocean-blue: #1e88e5;
    --deep-blue: #1565c0;
    --light-blue: #42a5f5;
    --teal: #00acc1;
    --cyan: #00bcd4;
    --amber: #ffb300;
    --orange: #ff9800;
    --green: #4caf50;
    --red: #f44336;
    
    --text-primary: #263238;
    --text-secondary: #546e7a;
    --text-light: #90a4ae;
    
    --bg-white: #ffffff;
    --bg-light: #f8fafb;
    --bg-dark: #263238;
    
    --gradient-ocean: linear-gradient(135deg, #1e88e5, #42a5f5);
    --gradient-teal: linear-gradient(135deg, #00acc1, #00bcd4);
    --gradient-warm: linear-gradient(135deg, #ffb300, #ff9800);
    
    --shadow-light: 0 2px 8px rgba(30, 136, 229, 0.08);
    --shadow-medium: 0 4px 16px rgba(30, 136, 229, 0.12);
    --shadow-heavy: 0 8px 32px rgba(30, 136, 229, 0.16);
    --shadow-deep: 0 16px 48px rgba(30, 136, 229, 0.24);
    
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 18px;
    --border-radius-xl: 24px;
    
    --animation-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --animation-quick: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

.ocean-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.03), rgba(0, 172, 193, 0.05));
}

.wave-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: waveFloat 10s ease-in-out infinite;
}

.orb-1 {
    width: 320px;
    height: 320px;
    background: var(--gradient-ocean);
    top: 15%;
    right: 15%;
    animation-delay: -2s;
}

.orb-2 {
    width: 240px;
    height: 240px;
    background: var(--gradient-teal);
    bottom: 25%;
    left: 20%;
    animation-delay: -5s;
}

.orb-3 {
    width: 280px;
    height: 280px;
    background: var(--gradient-warm);
    top: 55%;
    right: 45%;
    animation-delay: -8s;
}

@keyframes waveFloat {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(-25px, -15px) scale(1.1) rotate(90deg); }
    50% { transform: translate(20px, -25px) scale(0.9) rotate(180deg); }
    75% { transform: translate(-15px, 20px) scale(1.05) rotate(270deg); }
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(30, 136, 229, 0.1);
    z-index: 1000;
    transition: var(--animation-smooth);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: var(--animation-smooth);
}

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

.brand-motto {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.menu-link {
    padding: 10px 18px;
    border-radius: var(--border-radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--animation-smooth);
    position: relative;
}

.menu-link:hover {
    color: var(--ocean-blue);
    background: rgba(30, 136, 229, 0.08);
}

.menu-link.premium-link {
    background: var(--gradient-ocean);
    color: white;
}

.menu-link.premium-link:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn {
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--animation-smooth);
}

.login-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(38, 50, 56, 0.15);
}

.login-btn:hover {
    background: var(--bg-white);
    border-color: var(--ocean-blue);
    color: var(--ocean-blue);
}

.register-btn {
    background: var(--gradient-ocean);
    color: white;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.page-content {
    flex: 1;
    padding-top: 90px;
}

.hero-banner {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.05), rgba(0, 172, 193, 0.08));
    position: relative;
}

.banner-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 136, 229, 0.1);
    color: var(--ocean-blue);
    padding: 10px 18px;
    border-radius: var(--border-radius-xl);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 28px;
}

.banner-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 28px;
}

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

.banner-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.platform-statistics {
    display: flex;
    gap: 36px;
    margin-bottom: 40px;
}

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

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--ocean-blue);
    margin-bottom: 6px;
}

.stat-description {
    font-size: 15px;
    color: var(--text-secondary);
}

.banner-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.primary-btn, .secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--animation-smooth);
}

.primary-btn {
    background: var(--gradient-ocean);
    color: white;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    border: 1px solid rgba(38, 50, 56, 0.1);
}

.secondary-btn:hover {
    background: white;
    box-shadow: var(--shadow-medium);
}

.visual-wrapper {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

.main-visual {
    width: 100%;
    height: auto;
    display: block;
}

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

.element-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius-md);
    padding: 16px;
    box-shadow: var(--shadow-medium);
    animation: elementFloat 5s ease-in-out infinite;
}

.card-1 {
    top: 25%;
    right: -12%;
    display: flex;
    align-items: center;
    gap: 12px;
    animation-delay: -1s;
}

.card-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-warm);
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-username, .card-activity {
    height: 10px;
    border-radius: 5px;
    background: var(--bg-light);
}

.card-username { width: 70px; }
.card-activity { width: 50px; }

.card-2 {
    bottom: 35%;
    left: -12%;
    display: flex;
    align-items: center;
    gap: 10px;
    animation-delay: -2.5s;
}

.card-icon {
    font-size: 20px;
}

.card-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.card-3 {
    top: 65%;
    right: 10%;
    display: flex;
    align-items: center;
    gap: 10px;
    animation-delay: -4s;
}

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

.features-showcase {
    padding: 120px 0;
    background: var(--bg-white);
}

.showcase-header {
    text-align: center;
    margin-bottom: 80px;
}

.showcase-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

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

.feature-block {
    background: white;
    padding: 36px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-light);
    transition: var(--animation-smooth);
    border: 1px solid rgba(30, 136, 229, 0.06);
    text-align: center;
}

.feature-block:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--ocean-blue);
}

.feature-emoji {
    font-size: 48px;
    margin-bottom: 24px;
}

.feature-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-intro {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-highlights {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.highlight-tag {
    background: rgba(30, 136, 229, 0.1);
    color: var(--ocean-blue);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 500;
}

.active-users {
    padding: 120px 0;
    background: var(--bg-light);
}

.users-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 36px;
}

.user-profile {
    background: white;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--animation-smooth);
    position: relative;
}

.user-profile:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.user-profile.premium {
    border: 2px solid var(--ocean-blue);
}

.user-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: var(--border-radius-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--ocean-blue);
    z-index: 2;
}

.user-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 180px;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: var(--animation-smooth);
}

.user-profile:hover .profile-overlay {
    opacity: 1;
}

.interaction-btn {
    padding: 10px 18px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: var(--animation-smooth);
}

.interaction-btn:first-child {
    background: var(--gradient-ocean);
    color: white;
}

.interaction-btn:last-child {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid white;
}

.user-details {
    padding: 28px;
}

.username {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.user-category {
    color: var(--ocean-blue);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 14px;
}

.user-intro {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.user-stats {
    display: flex;
    justify-content: space-between;
}

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

.stat-number {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.stat-type {
    font-size: 13px;
    color: var(--text-light);
}

.user-testimonials {
    padding: 120px 0;
    background: var(--bg-white);
}

.testimonials-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 36px;
}

.testimonial-item {
    background: white;
    padding: 36px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--ocean-blue);
    transition: var(--animation-smooth);
}

.testimonial-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.reviewer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--ocean-blue);
}

.reviewer-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.reviewer-level {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 6px;
}

.review-stars {
    font-size: 14px;
}

.testimonial-quote {
    font-style: italic;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    border: none;
}

.testimonial-meta {
    font-size: 13px;
    color: var(--text-light);
    text-align: right;
}

.call-to-action {
    padding: 120px 0;
    background: var(--gradient-ocean);
    color: white;
    text-align: center;
}

.cta-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-primary, .cta-secondary {
    padding: 18px 36px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: var(--animation-smooth);
}

.cta-primary {
    background: white;
    color: var(--ocean-blue);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid white;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* 页脚 */
.page-footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 24px;
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-intro {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.footer-legal {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.column-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--animation-smooth);
}

.footer-menu a:hover {
    color: var(--light-blue);
}

.contact-details p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.page-footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 24px;
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-intro {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.footer-legal {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.column-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--animation-smooth);
}

.footer-menu a:hover {
    color: var(--light-blue);
}

.contact-details p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .navbar-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .menu-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .banner-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .banner-title {
        font-size: 40px;
    }
    
    .platform-statistics {
        justify-content: center;
        gap: 28px;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-matrix,
    .users-gallery,
    .testimonials-layout {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
}