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

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
        line-height: 1.6;
        color: #333;
        background: #fff;
    }

    .jav6db-header {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .jav6db-nav {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
    }

    .jav6db-logo img {
        height: 40px;
        width: auto;
    }

    .jav6db-menu-toggle {
        display: none;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .jav6db-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
    }

    .jav6db-nav-menu {
        display: flex;
        list-style: none;
        gap: 30px;
    }

    .jav6db-nav-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s;
        padding: 10px 0;
    }

    .jav6db-nav-menu a:hover,
    .jav6db-nav-menu a.active {
        color: #4A90E2;
    }

    .jav6db-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .jav6db-main {
        margin-top: 70px;
    }

    .jav6db-page-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 60px 0;
        text-align: center;
    }

    .jav6db-page-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .jav6db-page-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .jav6db-download-section {
        padding: 80px 0;
    }

    .jav6db-section-title {
        text-align: center;
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #333;
    }

    .jav6db-section-desc {
        text-align: center;
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 60px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .jav6db-download-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 80px;
    }

    .jav6db-download-card {
        background: #fff;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        border: 2px solid transparent;
    }

    .jav6db-download-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        border-color: #4A90E2;
    }

    .jav6db-platform-icon {
        font-size: 4rem;
        margin-bottom: 20px;
        display: block;
    }

    .jav6db-platform-name {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #333;
    }

    .jav6db-version-info {
        color: #666;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }

    .jav6db-download-btn {
        background: linear-gradient(135deg, #4A90E2, #357ABD);
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 20px;
    }

    .jav6db-download-btn:hover {
        background: linear-gradient(135deg, #357ABD, #2E6DA4);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
    }

    .jav6db-platform-features {
        list-style: none;
        text-align: left;
        margin-top: 20px;
    }

    .jav6db-platform-features li {
        padding: 5px 0;
        color: #666;
        font-size: 0.9rem;
    }

    .jav6db-platform-features li:before {
        content: "✓";
        color: #4A90E2;
        font-weight: bold;
        margin-right: 8px;
    }

    .jav6db-mobile-showcase {
        background: #f8f9fa;
        padding: 80px 0;
    }

    .jav6db-showcase-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .jav6db-showcase-text h3 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #333;
    }

    .jav6db-showcase-text p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 30px;
        line-height: 1.8;
    }

    .jav6db-showcase-image {
        text-align: center;
    }

    .jav6db-showcase-image img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .jav6db-feature-highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .jav6db-highlight-item {
        background: white;
        padding: 30px 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

    .jav6db-highlight-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
        display: block;
    }

    .jav6db-highlight-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }

    .jav6db-highlight-desc {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
    }

    .jav6db-install-guide {
        padding: 80px 0;
    }

    .jav6db-guide-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .jav6db-step-item {
        text-align: center;
        position: relative;
    }

    .jav6db-step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #4A90E2, #357ABD);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 auto 20px;
    }

    .jav6db-step-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
    }

    .jav6db-step-desc {
        color: #666;
        line-height: 1.6;
    }

    .jav6db-stats-section {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 80px 0;
    }

    .jav6db-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        text-align: center;
    }

    .jav6db-stat-item {
        padding: 20px;
    }

    .jav6db-stat-number {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 10px;
        display: block;
    }

    .jav6db-stat-label {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    .jav6db-footer {
        background: #2c3e50;
        color: white;
        padding: 60px 0 30px;
    }

    .jav6db-footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }

    .jav6db-footer-section h4 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #ecf0f1;
    }

    .jav6db-footer-section ul {
        list-style: none;
    }

    .jav6db-footer-section ul li {
        margin-bottom: 10px;
    }

    .jav6db-footer-section ul li a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s;
    }

    .jav6db-footer-section ul li a:hover {
        color: #4A90E2;
    }

    .jav6db-footer-bottom {
        border-top: 1px solid #34495e;
        padding-top: 30px;
        text-align: center;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .jav6db-menu-toggle {
            display: flex;
        }

        .jav6db-nav-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: white;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .jav6db-nav-menu.active {
            display: flex;
        }

        .jav6db-nav-overlay.active {
            display: block;
        }

        .jav6db-page-title {
            font-size: 2rem;
        }

        .jav6db-section-title {
            font-size: 1.8rem;
        }

        .jav6db-download-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .jav6db-showcase-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .jav6db-showcase-content .jav6db-showcase-image {
            order: -1;
        }

        .jav6db-feature-highlights {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .jav6db-guide-steps {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .jav6db-stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .jav6db-footer-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }

    @media (max-width: 480px) {
        .jav6db-container {
            padding: 0 15px;
        }

        .jav6db-page-header {
            padding: 40px 0;
        }

        .jav6db-download-section,
        .jav6db-mobile-showcase,
        .jav6db-install-guide,
        .jav6db-stats-section {
            padding: 60px 0;
        }

        .jav6db-download-card {
            padding: 30px 20px;
        }

        .jav6db-stats-grid {
            grid-template-columns: 1fr;
        }

        .jav6db-stat-number {
            font-size: 2.5rem;
        }
    }
    