        /* ===== ИЗОЛИРОВАННЫЕ СТИЛИ ===== */
        #compat-calc * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        #compat-calc {
            font-family: 'Open Sans', Arial, sans-serif;
            font-size: 14px;
            line-height: 1.5;
            color: #333;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            background: #fff;
        }
        
        #compat-calc h2 {
            font-size: 22px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 25px;
            color: #333;
        }
        
        #compat-calc h3 {
            font-size: 18px;
            font-weight: 700;
            text-align: center;
            margin: 25px 0 20px;
            color: #333;
        }
        
        /* UI Section */
        .cc-ui-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .cc-buttons {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
            max-width: 500px;
        }
        
        .cc-person-block {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .cc-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }
        
        .cc-icon-female {
            color: #ff007f;
        }
        
        .cc-icon-male {
            color: #238dbb;
        }
        
        .cc-label {
            font-weight: 600;
            color: #666;
            font-size: 13px;
        }
        
        .cc-date-picker {
            display: flex;
            gap: 8px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        
        .cc-select-wrap {
            position: relative;
            flex: 1;
            min-width: 80px;
        }
        
        .cc-select {
            width: 100%;
            padding: 10px 30px 10px 15px;
            border: 2px solid #ddd;
            border-radius: 4px;
            background: #fff;
            font-size: 14px;
            color: #333;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
        }
        
        .cc-select-wrap::after {
            content: "";
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
            width: 8px;
            height: 8px;
            border-right: 2px solid #999;
            border-bottom: 2px solid #999;
            pointer-events: none;
        }
        
        .cc-select-female {
            border-color: #ff007f;
        }
        
        .cc-select-male {
            border-color: #238dbb;
        }
        
        .cc-select:focus {
            outline: none;
        }
        
        .cc-calc-btn {
            background: #ff007f;
            color: #fff;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            transition: all 0.2s;
            margin-top: 10px;
        }
        
        .cc-calc-btn:hover {
            background: #f10078;
            box-shadow: 0 2px 9px rgba(252, 70, 143, 0.55);
        }
        
        /* Progress Bar */
        #cc-progress-bar {
            margin: 20px 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #ff007f, #ff66b2);
            display: none;
            border-radius: 2px;
            transition: width 0.1s linear;
        }
        
        /* Results */
        .cc-results {
            display: none;
            background: #fff;
            box-shadow: 0 2px 48px rgba(0, 0, 0, 0.12);
            border-radius: 8px;
            overflow: hidden;
            margin-top: 30px;
        }
        
        .cc-results-content {
            padding: 30px;
        }
        
        .cc-pink {
            color: #ff007f;
            font-weight: 600;
        }
        
        .cc-blue {
            color: #238dbb;
            font-weight: 600;
        }
        
        /* Bio Results */
        .cc-bio-row {
            display: flex;
            padding: 15px;
            border-top: 1px solid #eee;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .cc-bio-name {
            width: 35%;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .cc-bio-value {
            width: 15%;
            color: #ff007f;
            font-weight: 600;
        }
        
        .cc-bio-status {
            width: 20%;
            color: #333;
        }
        
        .cc-bio-desc {
            width: 100%;
            font-size: 11px;
            color: #999;
            margin-top: 5px;
        }
        
        /* Zodiac Results */
        .cc-zodiac-row {
            display: flex;
            padding: 15px;
            border-top: 1px solid #eee;
            flex-wrap: wrap;
        }
        
        .cc-zodiac-label {
            width: 35%;
            font-weight: 600;
            color: #333;
        }
        
        .cc-zodiac-value {
            width: 65%;
            text-align: left;
        }
        
        .cc-sign-icons {
            display: flex;
            gap: 30px;
            margin-bottom: 10px;
        }
        
        .cc-sign-icon {
            text-align: center;
        }
        
        .cc-sign-icon svg {
            width: 30px;
            height: 30px;
            margin-bottom: 5px;
        }
        
        /* Pifagor Results */
        .cc-pifagor-row {
            display: flex;
            padding: 15px;
            border-top: 1px solid #eee;
            flex-wrap: wrap;
        }
        
        .cc-pifagor-label {
            width: 50%;
            font-weight: 600;
            color: #333;
        }
        
        .cc-pifagor-value {
            width: 50%;
            text-align: left;
        }
        
        .cc-pifagor-desc {
            font-size: 11px;
            color: #999;
            margin-top: 5px;
        }
        
        /* Comments */
        .cc-comment {
            padding: 20px 15px;
            border-top: 1px solid #eee;
            margin-bottom: 15px;
        }
        
        .cc-comment-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }
        
        .cc-comment-text {
            font-size: 13px;
            line-height: 1.6;
            color: #555;
        }
        
        /* Mobile */
        @media (max-width: 600px) {
            #compat-calc {
                padding: 15px;
            }
            
            #compat-calc h2 {
                font-size: 18px;
            }
            
            .cc-date-picker {
                flex-direction: column;
            }
            
            .cc-select-wrap {
                width: 100%;
            }
            
            .cc-results-content {
                padding: 15px;
            }
            
            .cc-bio-name, .cc-bio-value, .cc-bio-status {
                width: 100%;
            }
            
            .cc-zodiac-label, .cc-zodiac-value {
                width: 100%;
            }
            
            .cc-pifagor-label, .cc-pifagor-value {
                width: 100%;
            }
        }