.heart-marker {
            color: #e83e8c;
        }
        .match-percent {
            font-size: 3.2rem;
            font-weight: 800;
            font-family: 'Segoe UI', 'Cambria Math', monospace;
            background: linear-gradient(135deg, #e83e8c, #ff9a9e);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .gauge-canvas {
            background: #fef7f9;
            border-radius: 50%;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            display: block;
            margin: 0 auto;
        }
        .insight-card {
            background: #fff5f7;
            border-left: 5px solid #e83e8c;
            padding: 1rem 1.5rem;
            border-radius: 20px;
            margin: 1.5rem 0;
        }
        .love-badge {
            font-size: 1rem;
            background-color: #ffe3e8;
            display: inline-block;
            border-radius: 40px;
            padding: 0.3rem 1rem;
            color: #b13e6b;
        } 
        .example-pair:hover {
            background: rgba(232, 62, 140, 0.18);
            transform: translateY(-2px);
        }
        .legend-love {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .legend-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 5px;
        }
        .flame-icon {
            color: #ff6b6b;
        }
        .compatibility-meter {
            height: 8px;
            background: #ffe0e6;
            border-radius: 10px;
            overflow: hidden;
        }
        .meter-fill {
            height: 100%;
            background: linear-gradient(90deg, #e83e8c, #ff9a9e);
            width: 0%;
            border-radius: 10px;
        }
        .element-tag {
            font-size: 0.8rem;
            background: #f1f3f5;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
        }
        .ritual-note {
            background: #faf0f3;
            border-radius: 16px;
            padding: 1rem;
            margin: 1rem 0;
            border: 1px solid #f8d7e0;
        }
        @media (max-width: 768px) {
            .example-pair {
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
                min-height: 44px;
            }
        }