/**
 * استایل ابزار آنالیز سئو
 */

.novin-seo-analyzer .novin-seo-score-card {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    margin-bottom: 30px;
    color: #ffffff;
}

.novin-score-circle {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.novin-score-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.novin-score-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 12;
}

.novin-score-progress {
    fill: none;
    stroke: #ffffff;
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 565.48;
    stroke-dashoffset: 565.48;
    transition: stroke-dashoffset 1.5s ease;
}

.novin-score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.novin-score-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.novin-score-label {
    display: block;
    font-size: 16px;
    opacity: 0.9;
    margin-top: 4px;
}

.novin-score-info {
    flex: 1;
}

.novin-score-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.novin-score-info p {
    font-size: 18px;
    opacity: 0.95;
    margin: 0;
    line-height: 1.6;
}

.novin-checks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.novin-check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.novin-check-item:hover {
    border-color: #7043f2;
    box-shadow: 0 4px 12px rgba(112, 67, 242, 0.1);
}

.novin-check-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.novin-check-icon.success {
    background: #d1fae5;
    color: #065f46;
}

.novin-check-icon.warning {
    background: #fef3c7;
    color: #92400e;
}

.novin-check-icon.error {
    background: #fee2e2;
    color: #991b1b;
}

.novin-check-icon.info {
    background: #dbeafe;
    color: #1e40af;
}

.novin-check-content {
    flex: 1;
}

.novin-check-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px 0;
}

.novin-check-message {
    font-size: 14px;
    color: #495057;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.novin-check-value {
    display: inline-block;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 13px;
    color: #495057;
    font-family: monospace;
    margin: 8px 0;
    word-break: break-all;
}

.novin-check-suggestion {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    background: #fff3cd;
    border-radius: 8px;
    font-size: 13px;
    color: #856404;
    margin-top: 8px;
}

.novin-check-suggestion svg {
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .novin-seo-score-card {
        flex-direction: column;
        padding: 30px 20px;
        gap: 24px;
    }
    
    .novin-score-circle {
        width: 160px;
        height: 160px;
    }
    
    .novin-score-number {
        font-size: 40px;
    }
    
    .novin-score-info h3 {
        font-size: 24px;
    }
    
    .novin-score-info p {
        font-size: 16px;
    }
}
