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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        }

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

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

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

        .e5yv1o-logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: #25D366;
            text-decoration: none;
        }

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

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

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

        .e5yv1o-nav-link:hover {
            color: #25D366;
        }

        .e5yv1o-nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #25D366;
            transition: width 0.3s ease;
        }

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

        .e5yv1o-hero {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

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

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

        .e5yv1o-download-section {
            background: white;
            padding: 60px 0;
            margin-top: -30px;
            border-radius: 30px 30px 0 0;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
        }

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

        .e5yv1o-download-card {
            background: linear-gradient(145deg, #f8f9fa, #e9ecef);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .e5yv1o-download-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

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

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

        .e5yv1o-download-btn {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

        .e5yv1o-download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }

        .e5yv1o-version-info {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #666;
        }

        .e5yv1o-features-section {
            background: #f8f9fa;
            padding: 60px 0;
        }

        .e5yv1o-section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 50px;
            color: #333;
        }

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

        .e5yv1o-feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .e5yv1o-feature-card:hover {
            transform: translateY(-5px);
        }

        .e5yv1o-feature-icon {
            font-size: 3rem;
            color: #25D366;
            margin-bottom: 20px;
        }

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

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

        .e5yv1o-cta-section {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 60px 0;
            text-align: center;
        }

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

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

        .e5yv1o-cta-btn {
            background: white;
            color: #25D366;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .e5yv1o-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .e5yv1o-footer {
            background: #333;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

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

        .e5yv1o-footer-section h3 {
            margin-bottom: 15px;
            color: #25D366;
        }

        .e5yv1o-footer-section a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .e5yv1o-footer-section a:hover {
            color: #25D366;
        }

        .e5yv1o-footer-bottom {
            border-top: 1px solid #555;
            padding-top: 20px;
            color: #ccc;
        }

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

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

            .e5yv1o-download-grid {
                grid-template-columns: 1fr;
            }

            .e5yv1o-features-grid {
                grid-template-columns: 1fr;
            }
        }
    