        .mae-pie-chart-container {
            text-align: center;
            background: white;
            padding: 30px;
            margin: 20px auto;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .mae-pie-chart-container:hover {
            transform: translateY(-5px);
        }

        .mae-pie-chart {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            position: relative;
            margin: 0 auto 20px;
            animation: rotateChart 2s ease-out;
            transition: all 0.3s ease;
        }

        .mae-pie-chart::before {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .mae-chart-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: bold;
            font-size: 1.4em;
            color: #333;
            z-index: 1;
        }

        .mae-chart-title {
            font-size: 1.4em;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }

        .mae-chart-legend {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .mae-legend-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9em;
        }

        .mae-legend-color {
            width: 12px;
            height: 12px;
            border-radius: 2px;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .mae-pie-chart {
                width: 150px;
                height: 150px;
            }
            
            .mae-pie-chart::before {
                width: 100px;
                height: 100px;
            }
            
            .mae-chart-center {
                font-size: 1em;
            }
        }

        @media (max-width: 480px) {
            .mae-pie-chart-container {
                padding: 20px;
            }
            
            .mae-pie-chart {
                width: 120px;
                height: 120px;
            }
            
            .mae-pie-chart::before {
                width: 80px;
                height: 80px;
            }
        }