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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

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

        .jav6db-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .jav6db-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

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

        .jav6db-nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .jav6db-nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .jav6db-nav-link:hover {
            color: #667eea;
        }

        .jav6db-nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: #667eea;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .jav6db-nav-link:hover::after {
            width: 100%;
        }

        .jav6db-hero {
            padding: 80px 0;
            text-align: center;
            color: white;
        }

        .jav6db-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .jav6db-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .jav6db-download-section {
            background: white;
            margin: -50px auto 0;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            padding: 60px;
            max-width: 800px;
            position: relative;
        }

        .jav6db-download-title {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
        }

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

        .jav6db-download-card {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .jav6db-download-card:hover {
            border-color: #667eea;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
        }

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

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

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

        .jav6db-download-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            width: 100%;
        }

        .jav6db-download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .jav6db-features-section {
            background: #f8f9ff;
            padding: 80px 0;
        }

        .jav6db-features-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            color: #333;
        }

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

        .jav6db-feature-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .jav6db-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .jav6db-feature-icon {
            font-size: 3rem;
            color: #667eea;
            margin-bottom: 20px;
        }

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

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

        .jav6db-specs-section {
            padding: 80px 0;
            background: white;
        }

        .jav6db-specs-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            color: #333;
        }

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

        .jav6db-spec-item {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
        }

        .jav6db-spec-label {
            font-weight: 600;
            color: #667eea;
            margin-bottom: 10px;
        }

        .jav6db-spec-value {
            color: #333;
            font-size: 1.1rem;
        }

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

        .jav6db-cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .jav6db-cta-desc {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .jav6db-cta-btn {
            background: white;
            color: #667eea;
            border: none;
            padding: 20px 50px;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .jav6db-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
        }

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

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

        .jav6db-footer-section h3 {
            margin-bottom: 20px;
            color: #ecf0f1;
        }

        .jav6db-footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .jav6db-footer-section a:hover {
            color: #667eea;
        }

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

        @media (max-width: 768px) {
            .jav6db-hero-title {
                font-size: 2.5rem;
            }

            .jav6db-download-section {
                margin: -30px 20px 0;
                padding: 40px 30px;
            }

            .jav6db-nav-menu {
                gap: 15px;
            }

            .jav6db-nav-link {
                font-size: 0.9rem;
            }
        }
    