#steg-analyzer {
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    background-color: var(--bg-color);
}

#steg-analyzer.visible {
    display: flex;
    animation: fadeIn 0.5s ease-out;
}

.analyzer-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.analyzer-header > div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.analyzer-header svg {
    width: 24px;
    height: 24px;
}
.analyzer-header .info-icon svg {
    width: 18px;
    height: 18px;
}

.char-counter-container {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem;
    background-color: var(--secondary-color);
    border-radius: 0.5rem;
}

.char-counter-label {
    font-size: 0.9rem;
    color: var(--text-muted-color);
}

.char-counter-value {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--text-color);
    direction: ltr;
}

.char-counter-value small {
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--text-muted-color);
}

.platform-validator {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.platform-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.platform-group-title {
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--text-muted-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
}

.platform-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.3;
    transition: opacity 0.3s ease, transform 0.2s ease;
    cursor: help;
    position: relative;
    width: 60px;
}

.platform-icon.compatible {
    opacity: 1;
}

.platform-icon svg {
    width: 32px;
    height: 32px;
}

.platform-icon .platform-name {
    font-size: 0.75rem;
    color: var(--text-muted-color);
    white-space: nowrap;
}

.platform-icon.compatible:hover {
    transform: scale(1.1);
}

#analyzer-guidance {
    font-size: 0.85rem;
    text-align: center;
    color: var(--text-muted-color);
    min-height: 20px;
    line-height: 1.6;
    transition: color 0.3s ease;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

#analyzer-guidance.warning {
    color: var(--warning-color);
    font-weight: bold;
}

#analyzer-guidance.error {
    color: var(--error-color);
    font-weight: bold;
}
