.gs-score-container {
    max-width: 600px;
    margin: 40px auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(11, 27, 58, 0.06);
    font-family: inherit;
    direction: rtl;
    text-align: right;
}

.gs-score-step {
    display: none;
}

.gs-score-step.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

.gs-score-container h3 {
    margin-top: 0;
    color: #0b1b3a;
    font-size: 1.4rem;
    font-weight: 700;
}

.gs-score-container p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* فیلدها و ورودی‌ها */
.gs-score-input-group {
    display: flex;
    gap: 10px;
}

.gs-score-input-group input[type="url"],
.gs-form-field input {
    flex-grow: 1;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.gs-score-input-group input[type="url"]:focus,
.gs-form-field input:focus {
    border-color: #0ea5e9;
}

.gs-score-btn {
    background: #0b1b3a;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.2s;
}

.gs-score-btn:hover {
    background: #0ea5e9;
}

.gs-error-msg {
    color: #d63638;
    font-size: 0.85rem;
    display: block;
    margin-top: 10px;
}

/* لودینگ و پیشرفت */
.gs-loader-bar {
    background: #f1f5f9;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.gs-loader-progress {
    background: #0ea5e9;
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
}

.gs-analyze-checklist {
    list-style: none;
    padding: 0;
}

.gs-analyze-checklist li {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 12px;
}

.gs-analyze-checklist li.done {
    color: #00a32a;
    font-weight: bold;
}

/* فرم لید */
.gs-form-field {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gs-form-field label {
    font-size: 0.88rem;
    font-weight: bold;
    color: #334155;
}

/* داشبورد نتایج */
.gs-results-dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.gs-result-circle {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 5px;
}

.gs-circle-value {
    font-size: 2rem;
    font-weight: 800;
    color: #0b1b3a;
    margin-bottom: 5px;
}

.gs-result-circle span {
    font-size: 0.82rem;
    color: #64748b;
}

.gs-result-action-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 20px;
    border-radius: 12px;
}

.gs-result-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.gs-btn-primary-action {
    background: #00a32a;
    text-decoration: none;
    text-align: center;
}

.gs-btn-primary-action:hover {
    background: #008722;
}

.gs-btn-secondary-action {
    background: #0b1b3a;
    text-decoration: none;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
