
        * {
            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%);
        }

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

        .dpr0y-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;
        }

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

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

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

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

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

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

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

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

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

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

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

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

        .dpr0y-version-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .dpr0y-info-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .dpr0y-info-card:hover {
            border-color: #667eea;
            transform: translateY(-5px);
        }

        .dpr0y-info-label {
            font-weight: 600;
            color: #667eea;
            margin-bottom: 8px;
        }

        .dpr0y-info-value {
            font-size: 1.1rem;
            color: #333;
        }

        .dpr0y-download-buttons {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }

        .dpr0y-download-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 18px 50px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .dpr0y-download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }

        .dpr0y-download-btn-secondary {
            background: transparent;
            color: #667eea;
            border: 2px solid #667eea;
            box-shadow: none;
        }

        .dpr0y-download-btn-secondary:hover {
            background: #667eea;
            color: white;
        }

        .dpr0y-features {
            padding: 80px 0;
            background: white;
        }

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

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

        .dpr0y-feature-card {
            text-align: center;
            padding: 40px 30px;
            border-radius: 16px;
            background: #f8f9fa;
            transition: all 0.3s ease;
        }

        .dpr0y-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

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

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

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

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

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

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

        .dpr0y-footer {
            background: #2c3e50;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

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

        .dpr0y-footer-section h3 {
            margin-bottom: 15px;
            color: #ecf0f1;
        }

        .dpr0y-footer-section p,
        .dpr0y-footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            line-height: 1.8;
        }

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

        .dpr0y-copyright {
            border-top: 1px solid #34495e;
            padding-top: 20px;
            color: #95a5a6;
        }

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

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

            .dpr0y-download-section {
                margin: -20px 20px 40px;
                padding: 40px 20px;
            }

            .dpr0y-download-title {
                font-size: 2rem;
            }

            .dpr0y-version-info {
                grid-template-columns: 1fr;
            }

            .dpr0y-download-buttons {
                flex-direction: column;
            }
        }
    