/* Eski tüm CSS kodlarını kaldır */
.analysis-container,
.score-circle,
.score-title,
.score-subtitle,
.web-vitals-title,
.web-vitals-grid,
.vital-card {
    /* Eski stilleri sıfırla */
    all: unset;
}

/* Yeni Score Circle Tasarımı */
.score-circle {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background: none !important; /* Sarı arka planı zorla kaldır */
}

.score-circle svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-circle circle {
    fill: none;
    stroke-width: 12;
}

.score-circle .background-circle {
    stroke: #E8E8E8;
}

.score-circle .progress-circle {
    stroke: #4CD7B0;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease-in-out;
}

.score-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 500;
    color: #333;
    background: none;
}

/* Results container */
#results {
    display: block;
    width: 100%;
    margin-top: 2rem;
}