:root {
    --home-primary: #6366f1;
    --home-primary-dark: #4338ca;
    --home-primary-light: #a5b4fc;
    --home-accent: #f59e0b;
    --home-danger: #ef4444;
    --home-success: #10b981;
    --home-bg: #f8fafc;
    --home-bg-card: #ffffff;
    --home-bg-dark: #f0f4ff;
    --home-bg-section: #f1f5f9;
    --home-text-primary: #1e293b;
    --home-text-secondary: #64748b;
    --home-text-light: #94a3b8;
    --home-border: #e2e8f0;
    --home-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --home-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --home-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --home-radius: 12px;
    --home-radius-lg: 16px;
    --home-radius-xl: 24px;
    --home-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
    color: var(--home-text-primary);
    background: var(--home-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.home-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--home-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--home-transition);
}

.home-header .navbar {
    padding: 0;
    height: 72px;
}

.home-header .logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.home-header .logo {
    height: 40px;
    border-radius: 8px;
}

.home-header .logo-title {
    font-size: 1.375rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--home-primary), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.home-header .nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a1a1a !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--home-transition);
    position: relative;
}

.home-header .nav-link:hover,
.home-header .nav-item.active .nav-link {
    color: var(--home-primary) !important;
    background: rgba(99,102,241,0.08);
}

.home-header .btn-danger {
    background: linear-gradient(135deg, var(--home-primary), #8b5cf6) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 8px 24px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    transition: var(--home-transition);
    box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}

.home-header .btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99,102,241,0.4);
}

.home-header {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.home-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.98);
}

.home-header .navbar-nav {
    align-items: center;
    gap: 4px;
}

.home-header .nav-item {
    position: relative;
}

.home-header .nav-link {
    position: relative;
    overflow: hidden;
}

.home-header .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(99,102,241,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.home-header .nav-link:hover::before {
    width: 200%;
    height: 200%;
}

.home-header .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px !important;
    border-radius: 50px !important;
    background: rgba(99,102,241,0.08);
    transition: var(--home-transition);
}

.home-header .dropdown-toggle:hover {
    background: rgba(99,102,241,0.12);
}

.home-header .dropdown-menu {
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 8px;
    margin-top: 8px !important;
}

.home-header .dropdown-item {
    border-radius: 8px;
    padding: 10px 16px;
    transition: var(--home-transition);
}

.home-header .dropdown-item:hover {
    background: rgba(99,102,241,0.08);
    color: var(--home-primary);
}

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

@media (max-width: 991.98px) {
    .home-header .navbar {
        height: auto;
        padding: 12px 0;
    }

    .home-header .container-fluid {
        flex-wrap: wrap;
    }

    .home-header .navbar-toggler {
        order: 2;
        margin-left: auto;
    }

    .home-header .collapse.navbar-collapse {
        order: 3;
        width: 100%;
        margin-top: 16px;
        padding: 16px 0;
        border-top: 1px solid var(--home-border);
        background: rgba(255,255,255,0.98);
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .home-header .navbar-collapse.show {
        animation: slideDown 0.3s ease;
    }

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

    .home-header .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 8px;
        margin: 0 !important;
    }

    .home-header .nav-item {
        width: 100%;
        text-align: center;
    }

    .home-header .nav-link {
        padding: 12px 16px !important;
        border-radius: 8px;
        display: block;
        width: 100%;
    }

    .home-header .nav-item.active .nav-link {
        background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.08));
        font-weight: 600;
    }

    .home-header .nav-item.active .nav-link::after {
        display: none;
    }

    .home-header .nav-item::before {
        display: none;
    }

    #loginDiv,
    #userDiv {
        width: 100%;
        text-align: center;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--home-border);
    }

    .home-header .btn-danger {
        width: 100%;
        max-width: 280px;
    }

    .home-header .dropdown {
        width: 100%;
        text-align: center;
    }

    .home-header .dropdown-toggle {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        justify-content: center;
    }

    .home-header .dropdown-menu {
        width: 100%;
        max-width: 280px;
        margin: 8px auto 0 !important;
        left: 50% !important;
        transform: translateX(-50%);
        position: absolute !important;
    }
}

@media (max-width: 575.98px) {
    .home-header .logo-title {
        font-size: 1.125rem;
    }

    .home-header .logo {
        height: 32px;
    }

    .home-header .navbar-toggler {
        padding: 6px !important;
    }

    .home-header .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }

    .home-header .nav-link {
        font-size: 0.9375rem;
        padding: 10px 12px !important;
    }

    .home-header .btn-danger {
        padding: 10px 20px !important;
        font-size: 0.875rem !important;
    }
}

.home-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #0f172a 20%, #1e1b4b 40%, #312e81 60%, #1e1b4b 80%, #0a0e27 100%);
}

.home-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.home-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite;
}

.home-hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.home-hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: 2s;
}

.home-hero-glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.home-hero-glow-3 {
    animation: glowPulse3 8s ease-in-out infinite;
}

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

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.home-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgba(10, 14, 39, 0.3) 0%, transparent 20%, transparent 80%, rgba(10, 14, 39, 0.5) 100%);
    pointer-events: none;
}

.home-hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.home-hero-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3), transparent);
    animation: lineMove 8s linear infinite;
}

.home-hero-line:nth-child(1) { top: 20%; width: 40%; left: -40%; animation-delay: 0s; }
.home-hero-line:nth-child(2) { top: 40%; width: 50%; left: -50%; animation-delay: 1.5s; }
.home-hero-line:nth-child(3) { top: 60%; width: 35%; left: -35%; animation-delay: 3s; }
.home-hero-line:nth-child(4) { top: 75%; width: 45%; left: -45%; animation-delay: 4.5s; }
.home-hero-line:nth-child(5) { top: 85%; width: 30%; left: -30%; animation-delay: 6s; }

@keyframes lineMove {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(calc(100vw + 100%)); opacity: 0; }
}

.home-hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.home-hero-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    animation: orbFloat 12s ease-in-out infinite;
}

.home-hero-orb-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.home-hero-orb-2 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 8%;
    animation-delay: 3s;
}

.home-hero-orb-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    25% { transform: translateY(-30px) rotate(90deg); opacity: 0.7; }
    50% { transform: translateY(-15px) rotate(180deg); opacity: 0.5; }
    75% { transform: translateY(-40px) rotate(270deg); opacity: 0.8; }
}

.home-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.home-hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5), 0 0 20px rgba(139, 92, 246, 0.3);
    animation: homeParticleFloat 10s ease-in-out infinite;
}

.home-hero-particle:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; animation-duration: 12s; }
.home-hero-particle:nth-child(2) { top: 25%; left: 15%; animation-delay: 0.8s; animation-duration: 14s; }
.home-hero-particle:nth-child(3) { top: 35%; left: 25%; animation-delay: 1.6s; animation-duration: 11s; }
.home-hero-particle:nth-child(4) { top: 45%; left: 35%; animation-delay: 2.4s; animation-duration: 13s; }
.home-hero-particle:nth-child(5) { top: 55%; left: 45%; animation-delay: 3.2s; animation-duration: 15s; }
.home-hero-particle:nth-child(6) { top: 65%; left: 55%; animation-delay: 4s; animation-duration: 12s; }
.home-hero-particle:nth-child(7) { top: 75%; left: 65%; animation-delay: 4.8s; animation-duration: 14s; }
.home-hero-particle:nth-child(8) { top: 85%; left: 75%; animation-delay: 5.6s; animation-duration: 11s; }
.home-hero-particle:nth-child(9) { top: 20%; left: 85%; animation-delay: 6.4s; animation-duration: 13s; }
.home-hero-particle:nth-child(10) { top: 40%; left: 90%; animation-delay: 7.2s; animation-duration: 15s; }
.home-hero-particle:nth-child(11) { top: 60%; left: 80%; animation-delay: 8s; animation-duration: 12s; }
.home-hero-particle:nth-child(12) { top: 80%; left: 95%; animation-delay: 8.8s; animation-duration: 14s; }

@keyframes homeParticleFloat {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.4; }
    25% { transform: translateY(-40px) translateX(20px) scale(1.5); opacity: 0.8; }
    50% { transform: translateY(-20px) translateX(-15px) scale(1.2); opacity: 0.6; }
    75% { transform: translateY(-50px) translateX(25px) scale(1.8); opacity: 0.9; }
}

.home-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 0 80px;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.15));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #e0e7ff;
    margin-bottom: 28px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    animation: badgeGlow 3s ease-in-out infinite;
}

.home-hero-badge i {
    color: #fbbf24;
    animation: starSpin 4s linear infinite;
}

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

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(99, 102, 241, 0.2); }
    50% { box-shadow: 0 0 30px rgba(99, 102, 241, 0.4); }
}

.home-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 60px rgba(99,102,241,0.4);
    animation: titleReveal 1s ease-out;
}

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

.home-hero-title span {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 40%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(245,158,11,0.5));
    position: relative;
}

.home-hero-title span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

.home-hero-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin: 0 auto 32px;
    line-height: 1.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: descReveal 1s ease-out 0.2s both;
}

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

.home-hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    animation: featuresReveal 1s ease-out 0.4s both;
}

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

.home-hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.home-hero-feature i {
    color: #10b981;
    font-size: 16px;
}

.home-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: actionsReveal 1s ease-out 0.6s both;
}

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

.home-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    color: #4338ca !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(255,255,255,0.25), 0 4px 15px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.8);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.home-btn-primary::before {
    content: '';
    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.5s;
}

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

.home-btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,255,255,0.35), 0 8px 20px rgba(0,0,0,0.25);
    color: #4338ca !important;
    background: linear-gradient(135deg, #f5f3ff 0%, #ddd6fe 100%);
}

.home-btn-primary i {
    font-size: 18px;
}

.home-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    backdrop-filter: blur(15px);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.home-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.home-btn-secondary:hover::before {
    left: 100%;
}

.home-btn-secondary:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.2));
    transform: translateY(-4px) scale(1.05);
    color: #fff !important;
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.home-btn-secondary i {
    font-size: 18px;
}

@media (max-width: 991.98px) {
    .home-hero {
        min-height: 600px;
    }

    .home-hero-content {
        padding: 80px 0 60px;
    }

    .home-hero-title {
        font-size: 2.5rem;
    }

    .home-hero-desc {
        font-size: 1.1rem;
    }

    .home-hero-features {
        gap: 20px;
    }

    .home-hero-glow-1 {
        width: 400px;
        height: 400px;
    }

    .home-hero-glow-2 {
        width: 350px;
        height: 350px;
    }

    .home-hero-glow-3 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .home-hero {
        min-height: 550px;
    }

    .home-hero-content {
        padding: 60px 0 50px;
    }

    .home-hero-title {
        font-size: 2rem;
        padding: 0 10px;
    }

    .home-hero-desc {
        font-size: 1rem;
        padding: 0 20px;
    }

    .home-hero-features {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .home-hero-actions {
        flex-direction: column;
        padding: 0 20px;
    }

    .home-btn-primary,
    .home-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 1rem;
    }

    .home-hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .home-hero-orb-1 {
        width: 80px;
        height: 80px;
    }

    .home-hero-orb-2 {
        width: 60px;
        height: 60px;
    }

    .home-hero-orb-3 {
        width: 40px;
        height: 40px;
    }
}

.home-section {
    padding: 80px 0;
}

.home-section-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #1e293b 100%);
    color: var(--home-text-primary);
    position: relative;
}

.home-section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        radial-gradient(ellipse at 30% 50%, rgba(99,102,241,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(139,92,246,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.home-section-alt {
    background: linear-gradient(180deg, #f1f5f9 0%, #e8edf5 50%, #f1f5f9 100%);
    position: relative;
}

.home-section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236366f1' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.home-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.home-section-dark .home-section-header {
    position: relative;
    z-index: 2;
}

.home-section-alt .home-section-header {
    position: relative;
    z-index: 2;
}

.home-section-alt .home-solution-grid {
    position: relative;
    z-index: 2;
}

.home-section-alt .home-advantage-grid {
    position: relative;
    z-index: 2;
}

.home-section-alt .home-news-grid {
    position: relative;
    z-index: 2;
}

.home-section-alt .home-product-grid {
    position: relative;
    z-index: 2;
}

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

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

.home-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.08));
    color: var(--home-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(99,102,241,0.1);
}

.home-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.home-section-dark .home-section-title {
    background: linear-gradient(135deg, #e2e8f0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

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

.home-section-dark .home-section-subtitle {
    color: rgba(203,213,225,0.9);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.home-card {
    background: var(--home-bg-card);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    padding: 32px 24px;
    transition: var(--home-transition);
    position: relative;
    overflow: hidden;
}

.home-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--home-shadow-xl);
    border-color: rgba(99,102,241,0.2);
}

.home-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(139,92,246,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--home-primary);
    margin-bottom: 20px;
}

.home-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--home-text-primary);
    margin-bottom: 8px;
}

.home-card-desc {
    font-size: 0.875rem;
    color: var(--home-text-secondary);
    line-height: 1.6;
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.home-product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    background: var(--home-bg-card);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    transition: var(--home-transition);
    text-decoration: none;
    text-align: center;
}

.home-product-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--home-shadow-lg), 0 0 0 1px rgba(99,102,241,0.1);
    border-color: rgba(99,102,241,0.3);
    text-decoration: none;
    background: linear-gradient(180deg, #ffffff, #f5f3ff);
}

.home-product-item img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    margin-bottom: 12px;
    transition: var(--home-transition);
}

.home-product-item:hover img {
    transform: scale(1.1);
}

.home-product-item p {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--home-text-primary);
    margin: 0;
}

.home-solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.home-solution-card {
    position: relative;
    border-radius: var(--home-radius-lg);
    overflow: hidden;
    min-height: 240px;
    display: flex;
    align-items: flex-end;
    transition: var(--home-transition);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.home-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.home-solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
    transition: var(--home-transition);
}

.home-solution-card:hover::after {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.home-solution-system::before,
.home-solution-video::before,
.home-solution-audio::before,
.home-solution-office::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.12;
    transition: var(--home-transition);
}

.home-solution-system:hover::before,
.home-solution-video:hover::before,
.home-solution-audio:hover::before,
.home-solution-office:hover::before {
    opacity: 0.18;
}

.home-solution-system::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='160' cy='40' r='60' fill='none' stroke='white' stroke-width='3'/%3E%3Ccircle cx='160' cy='40' r='35' fill='none' stroke='white' stroke-width='2'/%3E%3Ccircle cx='160' cy='40' r='10' fill='white'/%3E%3Crect x='30' y='120' width='50' height='50' rx='6' fill='none' stroke='white' stroke-width='2.5'/%3E%3Crect x='40' y='130' width='30' height='6' rx='2' fill='white'/%3E%3Crect x='40' y='142' width='20' height='6' rx='2' fill='white'/%3E%3Crect x='40' y='154' width='25' height='6' rx='2' fill='white'/%3E%3Cline x1='100' y1='70' x2='130' y2='50' stroke='white' stroke-width='1.5' stroke-dasharray='4,4'/%3E%3Cline x1='80' y1='130' x2='130' y2='70' stroke='white' stroke-width='1.5' stroke-dasharray='4,4'/%3E%3Ccircle cx='50' cy='50' r='15' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M45 50 L50 45 L55 50 L50 55Z' fill='white'/%3E%3C/svg%3E") no-repeat right -10px top -10px / 180px 180px;
}

.home-solution-video::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Crect x='100' y='15' width='90' height='65' rx='8' fill='none' stroke='white' stroke-width='3'/%3E%3Cpolygon points='135,35 135,60 155,47.5' fill='white'/%3E%3Crect x='15' y='110' width='80' height='55' rx='6' fill='none' stroke='white' stroke-width='2.5'/%3E%3Crect x='25' y='118' width='60' height='8' rx='2' fill='white' opacity='0.6'/%3E%3Crect x='25' y='132' width='45' height='8' rx='2' fill='white' opacity='0.4'/%3E%3Crect x='25' y='146' width='55' height='8' rx='2' fill='white' opacity='0.3'/%3E%3Ccircle cx='155' cy='140' r='30' fill='none' stroke='white' stroke-width='2'/%3E%3Ccircle cx='155' cy='140' r='20' fill='none' stroke='white' stroke-width='1.5'/%3E%3Ccircle cx='155' cy='140' r='8' fill='white'/%3E%3Cline x1='80' y1='80' x2='110' y2='50' stroke='white' stroke-width='1.5' stroke-dasharray='4,4'/%3E%3C/svg%3E") no-repeat right -10px top -10px / 180px 180px;
}

.home-solution-audio::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M120,30 Q130,60 120,90 Q110,60 120,30' fill='none' stroke='white' stroke-width='2.5'/%3E%3Cpath d='M140,20 Q155,65 140,110 Q125,65 140,20' fill='none' stroke='white' stroke-width='2.5'/%3E%3Cpath d='M160,10 Q180,70 160,130 Q140,70 160,10' fill='none' stroke='white' stroke-width='2'/%3E%3Ccircle cx='50' cy='140' r='35' fill='none' stroke='white' stroke-width='3'/%3E%3Ccircle cx='50' cy='140' r='12' fill='white'/%3E%3Crect x='83' y='105' width='8' height='50' rx='4' fill='white' transform='rotate(-30,87,130)'/%3E%3Ccircle cx='40' cy='50' r='20' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M35 42 L35 58 L48 50Z' fill='white'/%3E%3C/svg%3E") no-repeat right -10px top -10px / 180px 180px;
}

.home-solution-office::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Crect x='110' y='15' width='75' height='95' rx='6' fill='none' stroke='white' stroke-width='3'/%3E%3Crect x='120' y='28' width='55' height='6' rx='2' fill='white' opacity='0.7'/%3E%3Crect x='120' y='42' width='40' height='6' rx='2' fill='white' opacity='0.5'/%3E%3Crect x='120' y='56' width='50' height='6' rx='2' fill='white' opacity='0.4'/%3E%3Crect x='120' y='70' width='35' height='6' rx='2' fill='white' opacity='0.3'/%3E%3Crect x='120' y='84' width='45' height='6' rx='2' fill='white' opacity='0.3'/%3E%3Crect x='15' y='120' width='70' height='65' rx='6' fill='none' stroke='white' stroke-width='2.5'/%3E%3Crect x='25' y='130' width='50' height='8' rx='2' fill='white' opacity='0.5'/%3E%3Crect x='25' y='145' width='35' height='8' rx='2' fill='white' opacity='0.4'/%3E%3Crect x='25' y='160' width='45' height='8' rx='2' fill='white' opacity='0.3'/%3E%3Ccircle cx='150' cy='155' r='25' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M142 155 L148 161 L160 149' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right -10px top -10px / 180px 180px;
}

.home-solution-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-solution-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.home-solution-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.home-solution-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.home-advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.home-advantage-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--home-bg-card);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    transition: var(--home-transition);
    position: relative;
    overflow: hidden;
}

.home-advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--home-primary), #8b5cf6);
    opacity: 0;
    transition: var(--home-transition);
}

.home-advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--home-shadow-lg);
    border-color: rgba(99,102,241,0.2);
}

.home-advantage-card:hover::before {
    opacity: 1;
}

.home-advantage-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(99,102,241,0.15));
}

.home-advantage-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--home-text-primary);
}

.home-advantage-card p {
    font-size: 0.875rem;
    color: var(--home-text-secondary);
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.home-news-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(99,102,241,0.04), rgba(139,92,246,0.03));
    border-radius: 10px;
    transition: var(--home-transition);
    text-decoration: none;
    color: var(--home-text-primary);
    font-size: 0.875rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border: 1px solid transparent;
}

.home-news-item:hover {
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.06));
    color: var(--home-primary);
    text-decoration: none;
    border-color: rgba(99,102,241,0.15);
}

.home-news-item i {
    color: var(--home-primary);
    flex-shrink: 0;
}

.home-cta-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #4338ca 60%, #6366f1 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM70 55c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E"),
        radial-gradient(ellipse at 30% 50%, rgba(129,140,248,0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(245,158,11,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(139,92,246,0.2) 0%, transparent 50%);
    pointer-events: none;
}

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

.home-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3), 0 0 40px rgba(99,102,241,0.3);
}

.home-cta-desc {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.home-footer {
    background: var(--home-bg-dark);
    color: var(--home-text-secondary);
    padding: 60px 0 0;
    border-top: 3px solid var(--home-primary);
}

.home-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 120px 120px;
    gap: 40px;
}

.home-footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--home-text-primary);
    margin-bottom: 16px;
    padding-top: 0;
}

.home-footer a {
    color: var(--home-text-secondary);
    text-decoration: none;
    transition: var(--home-transition);
    display: block;
    line-height: 2;
    font-size: 0.875rem;
}

.home-footer a:hover {
    color: var(--home-primary);
}

.home-footer-img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    border: 2px solid var(--home-border);
}

.home-footer-center {
    text-align: center;
}

.home-follow-tips {
    font-size: 0.75rem;
    padding-top: 8px;
    color: var(--home-text-light);
}

.home-footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--home-border);
    font-size: 0.75rem;
    text-align: center;
}

.home-footer-bottom a {
    display: inline;
    color: var(--home-text-light);
}

.home-footer-bottom a:hover {
    color: var(--home-primary);
}

.home-page-banner {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #4338ca 60%, #6366f1 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        radial-gradient(ellipse at 30% 50%, rgba(129,140,248,0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(139,92,246,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.home-page-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.home-page-banner p {
    position: relative;
    z-index: 2;
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.home-content-card {
    background: var(--home-bg-card);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    transition: var(--home-transition);
}

.home-content-card:hover {
    box-shadow: var(--home-shadow-lg);
}

.home-store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-store-item {
    background: var(--home-bg-card);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    padding: 24px;
    transition: var(--home-transition);
    display: flex;
    flex-direction: column;
}

.home-store-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--home-shadow-xl);
    border-color: rgba(99,102,241,0.2);
}

.home-store-item .store-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.home-store-item h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.home-store-item h6 a {
    color: var(--home-text-primary) !important;
    text-decoration: none;
}

.home-store-item h6 a:hover {
    color: var(--home-primary) !important;
}

.home-store-item p {
    font-size: 0.8125rem;
    color: var(--home-text-secondary);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-store-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--home-border);
    margin-top: 16px;
}

.home-store-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--home-danger);
}

.home-store-price span {
    font-size: 0.75rem;
    font-weight: 400;
}

.home-store-btns {
    display: flex;
    gap: 8px;
    align-items: center;
}

.home-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--home-transition);
    cursor: pointer;
    border: none;
}

.home-store-btn-download {
    background: linear-gradient(135deg, var(--home-primary), #8b5cf6);
    color: #fff !important;
}

.home-store-btn-download:hover {
    box-shadow: 0 4px 12px rgba(99,102,241,0.4);
    color: #fff !important;
}

.home-store-btn-detail {
    background: var(--home-bg);
    border: 1px solid var(--home-border);
    color: var(--home-text-secondary) !important;
}

.home-store-btn-detail:hover {
    border-color: var(--home-primary);
    color: var(--home-primary) !important;
}

.home-vip-model {
    display: flex;
    background: var(--home-bg-card);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-xl);
    overflow: hidden;
    margin: 24px 0 60px;
    box-shadow: var(--home-shadow-lg);
}

.home-vip-left {
    width: 220px;
    padding: 32px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--home-bg-gradient-1, #faf5ff), var(--home-bg-gradient-2, #f5f3ff));
    border-right: 1px solid var(--home-border);
    flex-shrink: 0;
}

.home-vip-left .v-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--home-primary-light);
    margin-bottom: 12px;
}

.home-vip-left .v-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.home-vip-left .vip-interest {
    text-align: left;
    font-size: 0.8125rem;
    color: var(--home-text-secondary);
    line-height: 2;
}

.home-vip-left .vip-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--home-primary);
    margin-bottom: 8px;
}

.home-vip-right {
    flex: 1;
    padding: 32px;
}

.home-vip-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.home-vip-item {
    border: 2px solid var(--home-border);
    border-radius: var(--home-radius);
    text-align: center;
    cursor: pointer;
    padding: 20px 16px 48px;
    transition: var(--home-transition);
    position: relative;
    background: var(--home-bg-card);
}

.home-vip-item:hover {
    border-color: var(--home-primary-light);
    box-shadow: var(--home-shadow);
}

.home-vip-item.active {
    background: var(--home-active-bg, linear-gradient(179deg, #faf5ff 0%, #f5f3ff 44%, #ede9fe 100%));
    border-color: var(--home-primary);
    box-shadow: var(--home-shadow-primary, 0 4px 12px rgba(99,102,241,0.2));
}

.home-vip-item .super-vip {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--home-gradient-primary, linear-gradient(90deg, var(--home-primary), #8b5cf6));
    color: #fff;
    padding: 4px 12px;
    border-radius: 0 0 8px 0;
    font-size: 0.6875rem;
    font-weight: 600;
}

.home-vip-item .vip-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-top: 8px;
}

.home-vip-item .vip-price {
    font-size: 0.875rem;
    color: var(--home-text-secondary);
}

.home-vip-item .price-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--home-danger);
}

.home-vip-item .vip-desc {
    font-size: 0.75rem;
    color: var(--home-text-light);
    margin-top: 8px;
}

.home-vip-item .vip-desc.vip-red {
    color: var(--home-danger);
    font-weight: 600;
}

.home-vip-item i {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    line-height: 32px;
    background: var(--home-gradient-primary, linear-gradient(135deg, var(--home-primary), #8b5cf6));
    color: #fff;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    border-radius: 0 0 10px 10px;
}

.home-pay-section {
    margin-top: 24px;
}

.home-pay-line {
    font-size: 1rem;
    margin-bottom: 16px;
}

.home-pay-money {
    color: var(--home-danger);
    font-size: 1.5rem;
    font-weight: 800;
}

.home-pay-cont {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 20px 0;
}

.home-pay-qr {
    width: 200px;
    height: 200px;
    background: var(--home-bg-section);
    border-radius: var(--home-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-pay-desc {
    font-size: 0.9375rem;
    line-height: 2.2;
}

.home-pay-desc span {
    font-weight: 700;
    color: var(--home-danger);
}

.home-payment-top {
    background: var(--home-gradient-hero, linear-gradient(135deg, var(--home-primary), #8b5cf6));
    padding: 32px 0;
    text-align: center;
    color: #fff;
}

.home-payment-top img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-right: 12px;
    vertical-align: middle;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.home-payment-top span {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: middle;
}

.home-combo-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-combo-list li {
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    transition: var(--home-transition);
    overflow: hidden;
}

.home-combo-list li:hover {
    border-color: rgba(99,102,241,0.3);
    box-shadow: var(--home-shadow);
    transform: translateY(-2px);
}

.home-combo-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
}

.home-combo-list li img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
}

.home-combo-list li h6 {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--home-text-primary);
}

.home-combo-list li p {
    font-size: 0.75rem;
    color: var(--home-text-light);
    margin: 0;
}

.home-combo-list .origin-price {
    text-decoration: line-through;
    color: var(--home-text-light);
    margin-left: 4px;
}

.home-pay-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.home-pay-success-overlay.show {
    opacity: 1;
    visibility: visible;
}

.home-pay-success-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.home-pay-success-overlay.show .home-pay-success-card {
    transform: scale(1);
}

.home-pay-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.home-pay-success-icon i {
    font-size: 2rem;
    color: #fff;
}

.home-pay-success-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--home-text-primary);
}

.home-pay-success-card p {
    color: var(--home-text-secondary);
    margin-bottom: 24px;
}

.home-pay-success-btn {
    display: inline-block;
    padding: 10px 32px;
    background: linear-gradient(135deg, var(--home-primary), #8b5cf6);
    color: #fff;
    border-radius: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--home-transition);
}

.home-pay-success-btn:hover {
    box-shadow: 0 4px 16px rgba(99,102,241,0.4);
    transform: translateY(-1px);
}

.home-news-layout {
    display: flex;
    gap: 32px;
}

.home-news-main {
    flex: 1;
    min-width: 0;
}

.home-news-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.home-news-item-row {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--home-border);
    transition: var(--home-transition);
}

.home-news-item-row:hover {
    background: rgba(99,102,241,0.02);
}

.home-news-item-row img {
    width: 160px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.home-news-item-content {
    flex: 1;
    min-width: 0;
}

.home-news-item-content .i-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--home-text-primary);
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-news-item-content .i-title:hover {
    color: var(--home-primary);
}

.home-news-item-content .i-desc {
    font-size: 0.8125rem;
    color: var(--home-text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-sidebar-card {
    background: var(--home-bg-card);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    padding: 20px;
    margin-bottom: 20px;
}

.home-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--home-primary);
}

.home-sidebar-item {
    line-height: 2.4;
    border-bottom: 1px solid var(--home-border);
}

.home-sidebar-item:last-child {
    border-bottom: none;
}

.home-sidebar-item a {
    color: var(--home-text-secondary) !important;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--home-transition);
}

.home-sidebar-item a:hover {
    color: var(--home-primary) !important;
}

.home-help-category {
    background: var(--home-bg-card);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    padding: 28px 32px;
    margin-bottom: 24px;
    transition: var(--home-transition);
}

.home-help-category:hover {
    box-shadow: var(--home-shadow-lg);
}

.home-help-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--home-border);
}

.home-help-soft {
    display: flex;
    align-items: center;
    gap: 16px;
}

.home-help-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 2px solid var(--home-border);
}

.home-help-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.home-help-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--home-text-primary);
    margin: 0;
}

.home-help-viewall {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--home-primary);
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(99,102,241,0.08);
    transition: var(--home-transition);
}

.home-help-viewall:hover {
    background: rgba(99,102,241,0.15);
    color: var(--home-primary-dark);
}

.home-help-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-help-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--home-text-primary);
    transition: var(--home-transition);
}

.home-help-item:hover {
    background: rgba(99,102,241,0.06);
    color: var(--home-primary);
}

.home-help-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--home-primary);
    background: rgba(99,102,241,0.1);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-help-text {
    flex: 1;
    font-size: 0.9375rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-help-arrow {
    color: var(--home-text-light);
    font-size: 0.75rem;
    transition: var(--home-transition);
}

.home-help-item:hover .home-help-arrow {
    color: var(--home-primary);
    transform: translateX(4px);
}

.home-feedback-reward {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #faf5ff, #ede9fe);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: var(--home-radius-lg);
    padding: 28px 32px;
    margin-bottom: 32px;
}

.home-feedback-reward-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--home-primary), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    flex-shrink: 0;
}

.home-feedback-reward-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--home-text-primary);
    margin-bottom: 4px;
}

.home-feedback-reward-text p {
    font-size: 0.9375rem;
    color: var(--home-accent);
    font-weight: 600;
    margin: 0;
}

.home-feedback-form {
    background: var(--home-bg-card);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    padding: 32px;
}

.home-feedback-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--home-text-primary);
    margin-bottom: 16px;
}

.home-feedback-textarea {
    width: 100%;
    border: 2px solid var(--home-border);
    border-radius: var(--home-radius);
    padding: 16px 20px;
    font-size: 0.9375rem;
    resize: vertical;
    transition: var(--home-transition);
    background: var(--home-bg);
    line-height: 1.6;
    box-sizing: border-box;
}

.home-feedback-textarea:focus {
    outline: none;
    border-color: var(--home-primary);
    box-shadow: 0 0 0 4px rgba(99,102,241,0.1);
    background: var(--home-bg-card);
}

.home-govern-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #4f6ef7 0%, #6366f1 40%, #818cf8 70%, #6366f1 100%);
}

.home-govern-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(99,102,241,0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(139,92,246,0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(245,158,11,0.15) 0%, transparent 40%);
    pointer-events: none;
}

.home-govern-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.home-govern-banner-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.home-govern-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.home-govern-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.home-govern-feature i {
    color: var(--home-accent);
    font-size: 1.125rem;
}

.home-govern-privilege-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.home-govern-privilege-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--home-bg-card);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    transition: var(--home-transition);
}

.home-govern-privilege-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--home-shadow-lg);
    border-color: rgba(99,102,241,0.2);
}

.home-govern-privilege-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(139,92,246,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--home-primary);
    margin: 0 auto 16px;
}

.home-govern-privilege-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.home-govern-privilege-card p {
    font-size: 0.8125rem;
    color: var(--home-text-secondary);
    margin: 0;
}

.home-govern-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.home-govern-product-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--home-bg-section);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    transition: var(--home-transition);
    cursor: pointer;
}

.home-govern-product-card:hover {
    background: rgba(99,102,241,0.06);
    border-color: rgba(99,102,241,0.2);
    transform: translateY(-2px);
    box-shadow: var(--home-shadow);
}

.home-govern-product-img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    flex-shrink: 0;
}

.home-govern-product-info h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--home-text-primary);
    margin-bottom: 4px;
}

.home-govern-product-info p {
    font-size: 0.8125rem;
    color: var(--home-text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.home-govern-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.home-govern-step {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--home-bg-card);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    transition: var(--home-transition);
}

.home-govern-step:hover {
    box-shadow: var(--home-shadow);
    border-color: rgba(99,102,241,0.2);
}

.home-govern-step-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--home-primary);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.6;
}

.home-govern-step-content h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--home-text-primary);
    margin-bottom: 8px;
}

.home-govern-step-content p {
    font-size: 0.875rem;
    color: var(--home-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.home-news-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--home-bg-card);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    margin-bottom: 16px;
    text-decoration: none;
    color: var(--home-text-primary);
    transition: var(--home-transition);
}

.home-news-card:hover {
    box-shadow: var(--home-shadow);
    border-color: rgba(99,102,241,0.2);
    transform: translateY(-2px);
}

.home-news-card-img {
    width: 160px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.home-news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--home-transition);
}

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

.home-news-card-body {
    flex: 1;
    min-width: 0;
}

.home-news-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-news-card:hover .home-news-card-title {
    color: var(--home-primary);
}

.home-news-card-desc {
    font-size: 0.8125rem;
    color: var(--home-text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.home-news-card-arrow {
    color: var(--home-text-light);
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: var(--home-transition);
}

.home-news-card:hover .home-news-card-arrow {
    color: var(--home-primary);
    transform: translateX(4px);
}

.home-news-pagination {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.home-news-sidebar-card {
    background: var(--home-bg-card);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    padding: 24px;
    position: sticky;
    top: 88px;
}

.home-news-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--home-text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--home-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-news-sidebar-title i {
    color: var(--home-primary);
}

.home-news-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-news-sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--home-text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--home-transition);
}

.home-news-sidebar-item:hover {
    background: rgba(99,102,241,0.08);
    color: var(--home-primary);
}

.home-news-sidebar-item i {
    font-size: 0.625rem;
    color: var(--home-text-light);
}

.home-news-detail-main {
    flex: 1;
    min-width: 0;
}

.home-news-detail-card {
    background: var(--home-bg-card);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    padding: 40px;
}

.home-news-detail-content {
    line-height: 2;
    font-size: 0.9375rem;
    color: var(--home-text-primary);
}

.home-news-detail-content img,
.home-news-detail-content video {
    max-width: 100%;
    height: auto !important;
    border-radius: var(--home-radius);
    margin: 16px 0;
}

.home-news-detail-content p {
    margin-bottom: 16px;
}

.home-news-detail-content h1,
.home-news-detail-content h2,
.home-news-detail-content h3,
.home-news-detail-content h4,
.home-news-detail-content h5,
.home-news-detail-content h6 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.home-user-layout {
    display: flex;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    background: var(--home-bg-card);
    border-radius: var(--home-radius-xl);
    overflow: hidden;
    box-shadow: var(--home-shadow-lg);
}

.home-user-sidebar {
    width: 220px;
    background: linear-gradient(135deg, #faf5ff, #f5f3ff);
    padding: 32px 20px;
    border-right: 1px solid var(--home-border);
    flex-shrink: 0;
}

.home-user-profile {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--home-border);
}

.home-user-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid var(--home-primary-light);
    overflow: hidden;
    margin: 0 auto 12px;
}

.home-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-user-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--home-text-primary);
    margin: 0;
}

.home-user-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-user-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9375rem;
    color: var(--home-text-secondary);
    text-decoration: none;
    cursor: pointer;
    transition: var(--home-transition);
}

.home-user-nav-item:hover {
    background: rgba(99,102,241,0.1);
    color: var(--home-primary);
}

.home-user-nav-item.active {
    background: linear-gradient(135deg, var(--home-primary), #8b5cf6);
    color: #fff;
    font-weight: 600;
}

.home-user-nav-item i {
    font-size: 1rem;
}

.home-user-main {
    flex: 1;
    padding: 32px;
    min-width: 0;
}

.home-user-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--home-border);
}

.home-user-panel-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--home-text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-user-panel-header h3 i {
    color: var(--home-primary);
}

.home-user-cancellation {
    font-size: 0.8125rem;
    color: var(--home-text-light);
    cursor: pointer;
    transition: var(--home-transition);
}

.home-user-cancellation:hover {
    color: var(--home-danger);
}

.home-user-order-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-user-order-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--home-border);
}

.home-user-order-item:last-child {
    border-bottom: none;
}

.home-user-order-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.home-user-order-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.home-user-order-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--home-text-primary);
}

.home-user-order-meta {
    font-size: 0.8125rem;
    color: var(--home-text-secondary);
    padding-left: 52px;
}

.home-user-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--home-text-light);
}

.home-user-empty i {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

.home-user-empty p {
    font-size: 0.9375rem;
    margin: 0;
}

.home-user-form-group {
    margin-bottom: 20px;
}

.home-user-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--home-text-primary);
    margin-bottom: 8px;
}

.home-user-input {
    width: 100%;
    height: 44px;
    border: 2px solid var(--home-border);
    border-radius: 10px;
    padding: 0 16px;
    font-size: 0.9375rem;
    transition: var(--home-transition);
    background: var(--home-bg);
    box-sizing: border-box;
}

.home-user-input:focus {
    outline: none;
    border-color: var(--home-primary);
    box-shadow: 0 0 0 4px rgba(99,102,241,0.1);
}

.home-user-avatar-edit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-user-avatar-edit img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--home-border);
}

.home-user-avatar-change {
    font-size: 0.8125rem;
    color: var(--home-primary);
    cursor: pointer;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(99,102,241,0.08);
    transition: var(--home-transition);
}

.home-user-avatar-change:hover {
    background: rgba(99,102,241,0.15);
}

.home-user-account-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-user-account-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--home-bg-section);
    border-radius: 10px;
}

.home-user-account-label {
    font-size: 0.875rem;
    color: var(--home-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-user-account-label i {
    color: var(--home-primary);
}

.home-user-account-value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
}

.home-user-badge {
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.home-user-badge-success {
    background: rgba(16,185,129,0.1);
    color: var(--home-success);
}

.home-user-badge-warning {
    background: rgba(245,158,11,0.1);
    color: var(--home-accent);
}

.home-user-account-action {
    color: var(--home-primary);
    cursor: pointer;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: var(--home-transition);
}

.home-user-account-action:hover {
    color: var(--home-primary-dark);
}

.home-login-modal .modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}

.home-login-modal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.home-login-modal .modal-body {
    position: relative;
    min-height: 420px;
}

.home-login-modal .modal-title {
    font-weight: 700;
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .home-hero-title {
        font-size: 2rem;
    }

    .home-hero-desc {
        font-size: 1rem;
    }

    .home-section {
        padding: 48px 0;
    }

    .home-section-title {
        font-size: 1.75rem;
    }

    .home-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .home-solution-grid {
        grid-template-columns: 1fr;
    }

    .home-advantage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .home-store-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .home-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .home-news-layout {
        flex-direction: column;
    }

    .home-news-sidebar {
        width: 100%;
    }

    .home-vip-model {
        flex-direction: column;
    }

    .home-vip-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--home-border);
    }

    .home-vip-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-user-layout {
        flex-direction: column;
    }

    .home-user-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--home-border);
        padding: 20px 16px;
    }

    .home-user-profile {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .home-user-nav {
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
    }

    .home-user-nav-item {
        white-space: nowrap;
        padding: 10px 16px;
    }

    .home-user-main {
        padding: 20px 16px;
    }

    .home-user-panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .home-govern-privilege-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-govern-steps {
        grid-template-columns: 1fr;
    }

    .home-govern-banner-content h1 {
        font-size: 1.75rem;
    }

    .home-govern-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .home-news-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-news-card-img {
        width: 100%;
        height: 160px;
    }

    .home-news-card-arrow {
        display: none;
    }

    .home-news-sidebar {
        width: 100%;
    }

    .home-news-sidebar-card {
        position: static;
    }

    .home-news-detail-card {
        padding: 20px;
    }

    .home-help-category {
        padding: 20px;
    }

    .home-help-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .home-feedback-reward {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .home-govern-product-grid {
        grid-template-columns: 1fr;
    }

    .home-combo-list ul {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 575.98px) {
    .home-hero {
        min-height: 480px;
    }

    .home-hero-title {
        font-size: 1.5rem;
    }

    .home-hero-desc {
        font-size: 0.875rem;
    }

    .home-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .home-btn-primary,
    .home-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .home-section-title {
        font-size: 1.375rem;
    }

    .home-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .home-product-item {
        padding: 16px 8px;
    }

    .home-product-item img {
        width: 48px;
        height: 48px;
    }

    .home-product-item p {
        font-size: 0.6875rem;
    }

    .home-advantage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .home-advantage-card {
        padding: 24px 16px;
    }

    .home-advantage-card img {
        width: 56px;
        height: 56px;
    }

    .home-store-grid {
        grid-template-columns: 1fr;
    }

    .home-footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-vip-list {
        grid-template-columns: 1fr;
    }

    .home-news-item-row {
        flex-direction: column;
    }

    .home-news-item-row img {
        width: 100%;
        height: 160px;
    }

    .home-news-detail {
        padding: 20px;
    }

    .home-news-detail .news-title {
        font-size: 1.25rem;
    }

    .home-about-content {
        padding: 24px;
    }

    .home-about-content .img-area {
        flex-direction: column;
        align-items: center;
    }

    .home-about-content .img-area img {
        width: 100% !important;
    }

    .home-pay-cont {
        flex-direction: column;
        align-items: center;
    }

    .home-page-banner h1 {
        font-size: 1.5rem;
    }

    .home-cta-title {
        font-size: 1.5rem;
    }

    .home-feedback-form textarea {
        height: 150px;
    }

    .home-govern-banner {
        min-height: 300px;
    }

    .home-govern-banner-content {
        padding: 40px 16px;
    }

    .home-govern-banner-content h1 {
        font-size: 1.5rem;
    }

    .home-govern-privilege-grid {
        grid-template-columns: 1fr;
    }

    .home-govern-step {
        padding: 20px;
    }

    .home-govern-step-num {
        font-size: 1.5rem;
    }

    .home-news-card {
        padding: 16px;
    }

    .home-news-card-img {
        height: 140px;
    }

    .home-news-detail-card {
        padding: 16px;
    }

    .home-user-avatar {
        width: 56px;
        height: 56px;
    }

    .home-user-account-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .home-user-order-meta {
        padding-left: 0;
    }

    .home-help-category {
        padding: 16px;
    }

    .home-help-soft {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-feedback-reward-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .home-feedback-form {
        padding: 20px;
    }
}

/* CAD 产品主题样式 */
[data-theme="cad"] {
    --home-primary: #3b82f6;
    --home-primary-dark: #1d4ed8;
    --home-primary-light: #60a5fa;
    --home-bg-dark: #eff6ff;
}

[data-theme="cad"] .home-payment-top {
    background: linear-gradient(135deg, #eff6ff, #dbeafe, #bfdbfe);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

[data-theme="cad"] .home-payment-top span {
    color: #1e3a8a;
    font-weight: 700;
}

[data-theme="cad"] .home-vip-item.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(30, 64, 175, 0.08));
    border-color: #3b82f6;
}

[data-theme="cad"] .home-vip-item.active .vip-price,
[data-theme="cad"] .home-vip-item.active .price-value {
    color: #1e40af;
}

[data-theme="cad"] .home-vip-item.active .super-vip {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

[data-theme="cad"] .vip-status-badge {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

[data-theme="cad"] .vip-interest .vip-title {
    color: #1e40af;
}

[data-theme="cad"] .home-pay-money {
    color: #1e40af;
    font-weight: 800;
}

[data-theme="cad"] .home-pay-desc span {
    color: #3b82f6;
    font-weight: 600;
}

[data-theme="compress"] .home-payment-top {
    background: linear-gradient(135deg, #fffbeb, #fef3c7, #fde68a);
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}

[data-theme="compress"] .home-payment-top span {
    color: #92400e;
    font-weight: 700;
}

[data-theme="compress"] .home-vip-item.active {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(217, 119, 6, 0.08));
    border-color: #f59e0b;
}

[data-theme="compress"] .home-vip-item.active .vip-price,
[data-theme="compress"] .home-vip-item.active .price-value {
    color: #b45309;
}

[data-theme="compress"] .home-vip-item.active .super-vip {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

[data-theme="compress"] .vip-status-badge {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

[data-theme="compress"] .vip-interest .vip-title {
    color: #b45309;
}

[data-theme="compress"] .home-pay-money {
    color: #b45309;
    font-weight: 800;
}

[data-theme="compress"] .home-pay-desc span {
    color: #f59e0b;
    font-weight: 600;
}

[data-theme="compress"] .home-vip-item:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.1);
}

[data-theme="compress"] .home-pay-success-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

[data-theme="compress"] .home-pay-success-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

[data-theme="compress"] .home-pay-success-btn:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

[data-theme="rename"] .home-payment-top {
    background: linear-gradient(135deg, #042f2e, #0f766e, #14b8a6);
    border-bottom: 1px solid rgba(20, 184, 166, 0.2);
}

[data-theme="rename"] .home-payment-top span {
    color: #f0fdfa;
    font-weight: 700;
}

[data-theme="rename"] .home-vip-item.active {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(13, 148, 136, 0.1));
    border-color: #14b8a6;
}

[data-theme="rename"] .home-vip-item.active .vip-price,
[data-theme="rename"] .home-vip-item.active .price-value {
    color: #0f766e;
}

[data-theme="rename"] .home-vip-item.active .super-vip {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

[data-theme="rename"] .vip-status-badge {
    background: linear-gradient(90deg, #14b8a6, #0d9488);
}

[data-theme="rename"] .vip-interest .vip-title {
    color: #0f766e;
}

[data-theme="rename"] .home-pay-money {
    color: #0f766e;
    font-weight: 800;
}

[data-theme="rename"] .home-pay-desc span {
    color: #14b8a6;
    font-weight: 600;
}

[data-theme="rename"] .home-vip-item:hover {
    border-color: rgba(20, 184, 166, 0.4);
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.15);
}

[data-theme="rename"] .home-pay-success-icon {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

[data-theme="rename"] .home-pay-success-btn {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

[data-theme="rename"] .home-pay-success-btn:hover {
    background: linear-gradient(135deg, #2dd4bf, #14b8a6);
}

[data-theme="backup"] .home-payment-top {
    background: linear-gradient(135deg, #0c2d48, #0e4166, #0ea5e9);
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

[data-theme="backup"] .home-payment-top span {
    color: #f0f9ff;
    font-weight: 700;
}

[data-theme="backup"] .home-vip-item.active {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(2, 132, 199, 0.1));
    border-color: #0ea5e9;
}

[data-theme="backup"] .home-vip-item.active .vip-price,
[data-theme="backup"] .home-vip-item.active .price-value {
    color: #0369a1;
}

[data-theme="backup"] .home-vip-item.active .super-vip {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

[data-theme="backup"] .vip-status-badge {
    background: linear-gradient(90deg, #0ea5e9, #0284c7);
}

[data-theme="backup"] .vip-interest .vip-title {
    color: #0369a1;
}

[data-theme="backup"] .home-pay-money {
    color: #0369a1;
    font-weight: 800;
}

[data-theme="backup"] .home-pay-desc span {
    color: #0ea5e9;
    font-weight: 600;
}

[data-theme="backup"] .home-vip-item:hover {
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.15);
}

[data-theme="backup"] .home-pay-success-icon {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

[data-theme="backup"] .home-pay-success-btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

[data-theme="backup"] .home-pay-success-btn:hover {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}

[data-theme="enlarge"] .home-payment-top {
    background: linear-gradient(135deg, #3b0764, #581c87, #d946ef);
    border-bottom: 1px solid rgba(217, 70, 239, 0.2);
}

[data-theme="enlarge"] .home-payment-top span {
    color: #fdf4ff;
    font-weight: 700;
}

[data-theme="enlarge"] .home-vip-item.active {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15), rgba(192, 38, 211, 0.1));
    border-color: #d946ef;
}

[data-theme="enlarge"] .home-vip-item.active .vip-price,
[data-theme="enlarge"] .home-vip-item.active .price-value {
    color: #a21caf;
}

[data-theme="enlarge"] .home-vip-item.active .super-vip {
    background: linear-gradient(135deg, #d946ef, #c026d3);
}

[data-theme="enlarge"] .vip-status-badge {
    background: linear-gradient(90deg, #d946ef, #c026d3);
}

[data-theme="enlarge"] .vip-interest .vip-title {
    color: #a21caf;
}

[data-theme="enlarge"] .home-pay-money {
    color: #a21caf;
    font-weight: 800;
}

[data-theme="enlarge"] .home-pay-desc span {
    color: #d946ef;
    font-weight: 600;
}

[data-theme="enlarge"] .home-vip-item:hover {
    border-color: rgba(217, 70, 239, 0.4);
    box-shadow: 0 4px 20px rgba(217, 70, 239, 0.15);
}

[data-theme="enlarge"] .home-pay-success-icon {
    background: linear-gradient(135deg, #d946ef, #c026d3);
}

[data-theme="enlarge"] .home-pay-success-btn {
    background: linear-gradient(135deg, #d946ef, #c026d3);
}

[data-theme="enlarge"] .home-pay-success-btn:hover {
    background: linear-gradient(135deg, #e879f9, #d946ef);
}

[data-theme="watermark"] .home-payment-top {
    background: linear-gradient(135deg, #500724, #831843, #ec4899);
    border-bottom: 1px solid rgba(236, 72, 153, 0.2);
}

[data-theme="watermark"] .home-payment-top span {
    color: #fce7f3;
    font-weight: 700;
}

[data-theme="watermark"] .home-vip-item.active {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(219, 39, 119, 0.1));
    border-color: #ec4899;
}

[data-theme="watermark"] .home-vip-item.active .vip-price,
[data-theme="watermark"] .home-vip-item.active .price-value {
    color: #be185d;
}

[data-theme="watermark"] .home-vip-item.active .super-vip {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

[data-theme="watermark"] .vip-status-badge {
    background: linear-gradient(90deg, #ec4899, #db2777);
}

[data-theme="watermark"] .vip-interest .vip-title {
    color: #be185d;
}

[data-theme="watermark"] .home-pay-money {
    color: #be185d;
    font-weight: 800;
}

[data-theme="watermark"] .home-pay-desc span {
    color: #ec4899;
    font-weight: 600;
}

[data-theme="watermark"] .home-vip-item:hover {
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.15);
}

[data-theme="watermark"] .home-pay-success-icon {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

[data-theme="watermark"] .home-pay-success-btn {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

[data-theme="watermark"] .home-pay-success-btn:hover {
    background: linear-gradient(135deg, #f472b6, #ec4899);
}
