
        * {
            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-color: #f8f9fa;
        }

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

        .dpr0y-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            box-shadow: 0 2px 10px 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: 1rem 0;
        }

        .dpr0y-logo {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .dpr0y-logo img {
            height: 40px;
            margin-right: 10px;
        }

        .dpr0y-nav-menu {
            display: flex;
            gap: 2rem;
        }

        .dpr0y-nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .dpr0y-nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

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

        .dpr0y-hero-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

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

        .dpr0y-hero-description {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 3rem;
            opacity: 0.8;
        }

        .dpr0y-download-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .dpr0y-download-btn {
            display: inline-flex;
            align-items: center;
            padding: 1rem 2rem;
            background-color: rgba(255,255,255,0.2);
            color: white;
            text-decoration: none;
            border-radius: 10px;
            font-weight: bold;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .dpr0y-download-btn:hover {
            background-color: rgba(255,255,255,0.3);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .dpr0y-main-content {
            padding: 4rem 0;
            background-color: white;
        }

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

        .dpr0y-feature-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .dpr0y-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

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

        .dpr0y-feature-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #333;
        }

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

        .dpr0y-platform-section {
            background: linear-gradient(45deg, #f8f9fa, #e9ecef);
            padding: 4rem 0;
            margin: 2rem 0;
            border-radius: 20px;
        }

        .dpr0y-section-title {
            font-size: 2.5rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 3rem;
            color: #333;
        }

        .dpr0y-platform-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .dpr0y-platform-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .dpr0y-platform-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .dpr0y-platform-logo {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .dpr0y-platform-name {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #333;
        }

        .dpr0y-platform-info {
            color: #666;
            margin-bottom: 1.5rem;
        }

        .dpr0y-install-btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

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

        .dpr0y-compatibility-section {
            background: white;
            padding: 3rem 0;
            margin: 2rem 0;
        }

        .dpr0y-compatibility-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 2rem;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .dpr0y-compatibility-table th,
        .dpr0y-compatibility-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }

        .dpr0y-compatibility-table th {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            font-weight: bold;
        }

        .dpr0y-compatibility-table tr:hover {
            background-color: #f8f9fa;
        }

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

        .dpr0y-cta-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .dpr0y-cta-description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .dpr0y-cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background-color: white;
            color: #667eea;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .dpr0y-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        .dpr0y-footer {
            background-color: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
            text-align: center;
        }

        .dpr0y-footer-content {
            margin-bottom: 2rem;
        }

        .dpr0y-footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .dpr0y-footer-link {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .dpr0y-footer-link:hover {
            color: white;
        }

        .dpr0y-footer-copyright {
            color: #95a5a6;
            font-size: 0.9rem;
            border-top: 1px solid #34495e;
            padding-top: 1rem;
        }

        @media (max-width: 768px) {
            .dpr0y-nav-menu {
                display: none;
            }

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

            .dpr0y-hero-subtitle {
                font-size: 1.1rem;
            }

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

            .dpr0y-download-btn {
                width: 100%;
                max-width: 300px;
            }

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

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

            .dpr0y-footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }
    