.sg-dash {
    color: var(--color-text-muted);
}

.sg-empty {
    padding: 48px 0;
    text-align: center;
}

.sg-empty-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

.sg-empty-desc {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
}

.sg-pager {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 4px;
    margin-top: 6px;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.sg-pager-lbl {
    font-size: 13px;
    color: var(--color-text-muted);
}

.sg-pg {
    display: flex;
    gap: var(--space-2);
    align-items: center;
    flex-wrap: wrap;
}

.sg-pg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-decoration: none;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.sg-pg-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    text-decoration: none;
}

.sg-pg-btn.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    font-weight: 600;
}

.sg-pg-btn.is-active:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: #fff;
}

.sg-pg-btn[disabled],
.sg-pg-btn.is-disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: default;
}

.sg-pg-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.sg-eeat {
    background: var(--bg-soft);
    border-top: 1px solid var(--color-border);
    padding: 48px 0;
}

.sg-eeat-h2 {
    font-size: 27px;
    letter-spacing: -0.02em;
    font-weight: 720;
    max-width: 28ch;
    color: var(--color-text);
    margin: 0;
}

.sg-eeat-sub {
    font-size: 16px;
    color: var(--color-text-muted);
    max-width: 62ch;
    margin-top: 10px;
    line-height: 1.55;
}

.sg-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 26px;
}

.sg-step {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 18px;
}

.sg-step-num {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-accent);
}

.sg-step-title {
    font-size: 15px;
    font-weight: 650;
    margin-top: 9px;
    color: var(--color-text);
}

.sg-step-desc {
    font-size: 13.5px;
    color: var(--color-text-muted);
    margin-top: 6px;
    line-height: 1.5;
}

.sg-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    font-size: 13.5px;
    color: var(--color-text-muted);
}

.sg-trust b {
    color: var(--color-text);
}

.sg-trust-sep {
    color: var(--color-border);
}

.sg-row-expand {
    display: block;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    margin-bottom: var(--space-2);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.sg-row-expand:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-card);
}

.sg-row-main {
    display: grid;
    grid-template-columns: 2.4fr 0.7fr 1fr 0.9fr 0.9fr 1.2fr 1.4fr;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
}

.sg-row-rtp {
    text-align: left;
}

.sg-rtp-val {
    font-size: 15px;
    font-weight: 650;
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
}

.sg-row-maxwin {
    text-align: left;
}

.sg-mw-val {
    font-size: 15px;
    font-weight: 650;
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
}

.sg-row-grid-cell {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.sg-bb-chip {
    font-size: 10px;
    padding: 2px 5px;
}

.sg-row-chips-preview {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    align-items: center;
}

.sg-tag-more {
    font-size: 11px;
    color: var(--color-text-muted);
    background: var(--bg-tint);
    padding: 2px 6px;
    border-radius: 5px;
}

.sg-ab-demo--disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
    text-decoration: none;
}

.sg-expand {
    border-top: 1px solid var(--color-border);
}

.sg-expand[open] {
    border-top-color: var(--color-accent);
}

.sg-expand-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 14px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.sg-expand-summary::-webkit-details-marker {
    display: none;
}

.sg-expand-summary::marker {
    display: none;
}

.sg-expand-summary:hover {
    color: var(--color-accent);
}

.sg-expand[open] .sg-expand-summary {
    color: var(--color-accent);
}

.sg-expand-chevron {
    transition: transform var(--transition);
    flex-shrink: 0;
}

.sg-expand[open] .sg-expand-chevron {
    transform: rotate(180deg);
}

.sg-expand-body {
    padding: 14px 14px 16px;
    border-top: 1px solid var(--color-border);
}

.sg-expand-section {
    margin-bottom: 12px;
}

.sg-expand-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.sg-tag-theme {
    background: var(--color-accent-soft);
    color: var(--color-accent);
    border: 1px solid transparent;
}

.sg-tag-feature {
    background: var(--bg-tint);
}

.sg-expand-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    align-items: start;
}

.sg-spec-dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sg-spec-row {
    display: flex;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 13px;
}

.sg-spec-row:last-child {
    border-bottom: none;
}

.sg-spec-row dt {
    width: 80px;
    flex-shrink: 0;
    color: var(--color-text-muted);
    font-weight: 500;
}

.sg-spec-row dd {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-mono);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.sg-captured-hdr {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.sg-captured-tagline {
    font-size: 11.5px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    line-height: 1.4;
    opacity: 0.75;
}

.sg-capt-group {
    padding: 7px 0;
    border-top: 1px solid var(--color-border);
}

.sg-capt-group:last-child {
    padding-bottom: 0;
}

.sg-capt-label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sg-capt-count {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-accent);
    background: var(--color-accent-soft);
    padding: 1px 5px;
    border-radius: 4px;
}

.sg-capt-detail-link {
    font-size: 12px;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: opacity var(--transition);
}

.sg-capt-detail-link:hover {
    opacity: 0.75;
    text-decoration: none;
}

.sg-rtp-configs {
    font-size: 11px;
    color: var(--color-text-muted);
    background: var(--bg-tint);
    padding: 1px 5px;
    border-radius: 4px;
    font-family: var(--font-mono);
    white-space: nowrap;
}

.sg-sym-strip {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.sg-sym-thumb {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    object-fit: cover;
    border: 1px solid var(--color-border);
    background: var(--bg-tint);
}

.sg-palette-strip {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.sg-swatch {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid var(--color-border);
    flex-shrink: 0;
}

.sg-mode-list {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.sg-mode-chip {
    font-size: 11px;
    color: var(--color-text-muted);
    background: var(--bg-tint);
    padding: 2px 7px;
    border-radius: 4px;
}

.sg-expand-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
    align-items: center;
}
