.script-info-page > * {
    position: relative;
    z-index: 1;
}

.script-info-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.script-info-head h1 {
    margin: 0 0 6px;
    color: #111827;
    font-size: 28px;
    line-height: 1.2;
}

.script-info-head p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
}

.server-clock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 6px 12px;
    border: 1px solid rgba(20, 184, 166, .34);
    border-radius: 999px;
    background: rgba(204, 251, 241, .78);
    color: #0f766e;
    font-size: 12px;
    font-weight: 700;
}

.info-section {
    display: grid;
    gap: 12px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(148, 163, 184, .24);
}

.info-section:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.info-section h2 {
    margin: 0;
    color: #111827;
    font-size: 20px;
    line-height: 1.35;
}

.info-section p {
    margin: 0;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.75;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.info-grid-compact {
    margin-top: 4px;
}

.info-card,
.feature-list article {
    min-width: 0;
    padding: 14px 16px;
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 12px;
    background: rgba(255, 255, 255, .48);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.info-card {
    display: grid;
    gap: 6px;
}

.info-card strong {
    color: #0f172a;
    font-size: 14px;
}

.info-card span {
    color: #475569;
    font-size: 13px;
    line-height: 1.6;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.feature-list article {
    display: grid;
    gap: 8px;
}

.feature-list h3 {
    margin: 0;
    color: #0f172a;
    font-size: 15px;
    line-height: 1.4;
}

.feature-list p {
    color: #475569;
    font-size: 13px;
    line-height: 1.65;
}

.legacy-note {
    padding: 10px 12px;
    border-left: 3px solid rgba(245, 158, 11, .68);
    border-radius: 8px;
    background: rgba(255, 251, 235, .74);
    color: #92400e;
    font-size: 13px;
    line-height: 1.7;
}

.setting-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.setting-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border: 1px solid rgba(96, 165, 250, .32);
    border-radius: 999px;
    background: rgba(239, 246, 255, .78);
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
}

.option-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.option-columns ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 14px 16px 14px 34px;
    border: 1px solid rgba(148, 163, 184, .20);
    border-radius: 12px;
    background: rgba(255, 255, 255, .46);
    color: #334155;
    font-size: 13px;
    line-height: 1.55;
}

.faq-section details {
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 10px;
    background: rgba(255, 255, 255, .48);
    overflow: hidden;
}

.faq-section summary {
    cursor: pointer;
    padding: 12px 14px;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
}

.faq-section details p {
    padding: 0 14px 14px;
    color: #475569;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 760px) {
    .script-info-head {
        display: grid;
    }

    .server-clock {
        justify-content: flex-start;
        white-space: normal;
    }

    .info-grid,
    .feature-list,
    .option-columns {
        grid-template-columns: 1fr;
    }
}
