:root {
    --brand: #0F64B5;
    --brand-dark: #0a4a88;
    --brand-soft: #e8f1fa;
    --text: #1a1a1a;
    --muted: #5a6470;
    --line: #e4e9ef;
    --bg: #ffffff;
    --shadow: 0 10px 30px rgba(15, 100, 181, 0.08);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

a {
    color: var(--brand);
    text-decoration: none;
}

a:hover {
    color: var(--brand-dark);
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
}

.brand img {
    height: 40px;
    width: auto;
    background: #000;
    border-radius: 4px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    color: var(--brand);
    font-size: 18px;
}

.brand-text span {
    color: var(--muted);
    font-size: 12px;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-main a {
    color: var(--text);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 15px;
}

.nav-main a:hover,
.nav-main a.active {
    color: var(--brand);
    background: var(--brand-soft);
}

.auth-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 14px;
    transition: 0.2s ease;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
}

.btn-primary:hover {
    background: var(--brand-dark);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--brand);
    border: 1px solid var(--brand);
}

.btn-outline:hover {
    background: var(--brand-soft);
}

.btn-ghost {
    background: transparent;
    color: var(--muted);
}

.page {
    min-height: calc(100vh - 160px);
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(15, 100, 181, 0.18), transparent 40%),
        radial-gradient(circle at 85% 10%, rgba(15, 100, 181, 0.12), transparent 35%),
        linear-gradient(180deg, #f5f9fd 0%, #ffffff 70%);
    border-bottom: 1px solid var(--line);
}

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 24px 64px;
}

.hero-brand {
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.1;
    color: var(--brand);
    margin: 0 0 16px;
    letter-spacing: 1px;
}

.hero-en {
    display: block;
    margin-top: 6px;
    font-size: clamp(16px, 2vw, 22px);
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 2px;
}

.hero h2 {
    margin: 0 0 16px;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
}

.hero-lead {
    max-width: 760px;
    color: var(--muted);
    font-size: 16px;
    margin: 0 0 28px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 900px;
}

.stat {
    padding: 16px 0;
    border-top: 2px solid var(--brand);
}

.stat strong {
    display: block;
    font-size: 28px;
    color: var(--brand);
}

.stat span {
    color: var(--muted);
    font-size: 13px;
}

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 30px 24px;
}

.section-head {
    margin-bottom: 28px;
}

.section-head h2 {
    margin: 0 0 8px;
    font-size: 28px;
    color: var(--text);
}

.section-head p {
    margin: 0;
    color: var(--muted);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fbfe 0%, #ffffff 55%);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-item:hover {
    border-color: rgba(15, 100, 181, 0.35);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--brand);
    background: var(--brand-soft);
}

.feature-item h3 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.45;
    color: var(--text);
}

.feature-item p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
}

.feature-item .btn {
    margin-top: auto;
}

.quotes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.quote {
    padding: 22px;
    background: linear-gradient(180deg, #f8fbfe, #ffffff);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.quote p {
    margin: 0 0 14px;
    color: var(--text);
    font-size: 14px;
}

.quote span {
    color: var(--brand);
    font-size: 13px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-item h3 {
    margin: 0 0 8px;
    color: var(--brand);
    font-size: 18px;
}

.about-item p {
    margin: 0;
    color: var(--muted);
}

.clone-intro {
    padding-top: 32px;
}

.clone-intro-lead {
    max-width: 860px;
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.clone-intro .hero-actions {
    margin-bottom: 28px;
}

.clone-highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.clone-highlight {
    padding: 22px 20px;
    border-top: 2px solid var(--brand);
    background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.clone-num {
    display: block;
    margin-bottom: 12px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.clone-highlight h3 {
    margin: 0 0 10px;
    font-size: 17px;
}

.clone-highlight p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.clone-model-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(15, 100, 181, 0.08), transparent 40%),
        radial-gradient(circle at 90% 0%, rgba(15, 100, 181, 0.06), transparent 35%);
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.clone-model-section .section-head,
.clone-model-section .clone-model-grid {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.clone-model-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.clone-model-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.clone-model-card h3 {
    margin: 0 0 10px;
    color: var(--brand);
    font-size: 18px;
}

.clone-model-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.clone-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.clone-step {
    padding: 24px 22px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.clone-step strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 16px;
}

.clone-step h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.clone-step p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.clone-scene-section {
    padding-top: 0;
}

.clone-scenes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.clone-scene {
    padding: 20px;
    border-left: 3px solid var(--brand);
    background: linear-gradient(90deg, var(--brand-soft), #ffffff 70%);
}

.clone-scene h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.clone-scene p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.clone-try-section .form-panel {
    margin-top: 8px;
}

.page-banner {
    background: linear-gradient(180deg, #f3f8fc, #ffffff);
    border-bottom: 1px solid var(--line);
    padding: 40px 0 28px;
}

.page-banner-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-banner h1 {
    margin: 0 0 8px;
    color: var(--brand);
    font-size: 32px;
}

.page-banner p {
    margin: 0;
    color: var(--muted);
}

.toolbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.sound-filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(180deg, #fbfdff, #ffffff);
}

.filter-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.filter-label {
    flex: 0 0 56px;
    padding-top: 6px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.filter-btn {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    border-radius: 999px;
    padding: 6px 14px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.2;
    text-decoration: none;
    display: inline-block;
}

a.filter-btn:hover,
.filter-btn.active,
.filter-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-soft);
    text-decoration: none;
}

.sound-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.sound-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px;
    background: linear-gradient(180deg, #fbfdff, #ffffff);
    box-shadow: var(--shadow);
    transition: 0.2s ease;
}

.sound-card:hover {
    border-color: rgba(15, 100, 181, 0.35);
    transform: translateY(-2px);
}

.sound-card-main {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.sound-head-wrap {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--brand-soft);
    background: var(--brand-soft);
}

.sound-head {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sound-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sound-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.sound-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}

.sound-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sex-tag {
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
}

.sound-desc {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sound-player {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.sound-play-btn {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(15, 100, 181, 0.28);
    transition: background 0.2s ease, transform 0.2s ease;
}

.sound-play-btn:hover {
    background: var(--brand-dark);
    transform: scale(1.05);
}

.sound-play-btn svg {
    display: block;
    pointer-events: none;
}

.sound-play-btn .icon-pause {
    display: none;
}

.sound-play-btn.is-playing .icon-play {
    display: none;
}

.sound-play-btn.is-playing .icon-pause {
    display: block;
}

.sound-progress {
    flex: 1;
    min-width: 0;
}

.sound-progress-track {
    height: 8px;
    border-radius: 999px;
    background: #e4ebf3;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.sound-progress-bar {
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #3b8ad4, var(--brand));
}

.sound-progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
}

.sound-play-count {
    color: var(--muted);
    font-size: 11px;
}

.sound-play-count em {
    font-style: normal;
    font-weight: 600;
    color: var(--brand);
}

.sound-audio {
    display: none;
}

.sound-pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fbfdff;
}

.sound-pager-info {
    color: var(--muted);
    font-size: 14px;
}

.sound-pager-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sound-pager-btns .btn[disabled],
.sound-pager-btns .btn.aspNetDisabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.admin-list-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.admin-list-toolbar h2 {
    margin: 0;
    font-size: 18px;
    color: var(--text);
}

.admin-op-btns {
    display: flex;
    gap: 8px;
    white-space: nowrap;
}

.admin-op-btns .btn {
    padding: 4px 12px;
    font-size: 13px;
}

.admin-modal {
    width: min(720px, 100%);
}

.admin-modal .form-panel,
.admin-modal .user-form-panel {
    max-width: none;
    margin: 0;
    border: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

.admin-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 8px;
}

.admin-delete-modal {
    width: min(420px, 100%);
}

.admin-delete-modal .modal-tip {
    margin-bottom: 22px;
}

.form-panel {
    max-width: 720px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px;
    background: linear-gradient(180deg, #fbfdff, #ffffff);
    box-shadow: var(--shadow);
}

.auth-split {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
    gap: 28px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.auth-promo {
    text-align: left;
    padding: 36px 32px;
    border-radius: 14px;
    border: 1px solid rgba(15, 100, 181, 0.18);
    background:
        linear-gradient(160deg, rgba(15, 100, 181, 0.12), rgba(255, 255, 255, 0.92) 42%),
        radial-gradient(circle at 12% 18%, rgba(15, 100, 181, 0.18), transparent 48%),
        #f7fbff;
    box-shadow: var(--shadow);
}

.auth-promo-brand {
    color: var(--brand);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.auth-promo-title {
    margin: 0 0 14px;
    color: var(--text);
    font-size: 26px;
    font-weight: 700;
}

.auth-promo-lead {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.auth-promo-offers {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.auth-promo-offers li {
    margin: 0 0 10px;
    padding: 10px 14px;
    border-left: 4px solid var(--brand);
    background: rgba(255, 255, 255, 0.85);
    color: var(--brand);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.auth-promo-tag {
    margin: 0 0 22px;
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
}

.auth-form-wrap {
    display: flex;
    justify-content: flex-end;
}

.auth-form-panel {
    width: 100%;
    max-width: 480px;
    margin: 0;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(15, 100, 181, 0.12);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-tip {
    color: var(--muted);
    font-size: 12px;
    margin-top: 6px;
}

.msg {
    margin-bottom: 16px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
}

.msg-error {
    background: #fff1f1;
    color: #b42318;
    border: 1px solid #f3c1c1;
}

.msg-ok {
    background: #eef8f0;
    color: #1f7a3a;
    border: 1px solid #b7e0c1;
}

.captcha-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.captcha-row img {
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 6px;
    cursor: pointer;
}

.contact-box {
    max-width: 720px;
    margin: 0 auto;
}

.contact-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.contact-box li {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.contact-box li strong {
    color: var(--text);
    display: inline-block;
    min-width: 90px;
}

.modal-mask {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 24, 40, 0.55);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-mask.show {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: 14px;
    width: min(860px, 100%);
    max-height: 90vh;
    overflow: auto;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.modal-head h3 {
    margin: 0;
    color: var(--brand);
}

.modal-close {
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    color: var(--muted);
    line-height: 1;
    padding: 0 4px;
    min-width: 0;
    box-shadow: none;
}

.modal-tip {
    color: var(--muted);
    margin: 0 0 18px;
    font-size: 14px;
}

.pay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.pay-item {
    text-align: center;
}

.pay-item h4 {
    margin: 0 0 10px;
    color: var(--text);
}

.pay-item img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #f8fafc;
    padding: 28px 24px;
    color: var(--muted);
    font-size: 13px;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-brand {
    color: var(--brand);
    font-weight: 700;
}

.footer-admin {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-admin a {
    color: #94a3b8;
    font-size: 12px;
}

.footer-admin a:hover {
    color: var(--brand);
}

.user-layout {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 232px 1fr;
    gap: 24px;
    align-items: start;
    min-height: calc(100vh - 80px);
}

.user-sidebar {
    border: 1px solid rgba(15, 100, 181, 0.12);
    border-radius: 14px;
    background:
        linear-gradient(180deg, #f7fbff 0%, #ffffff 40%);
    padding: 14px 12px 16px;
    position: sticky;
    top: 80px;
    box-shadow: 0 8px 24px rgba(15, 100, 181, 0.06);
}

.user-sidebar-title {
    font-weight: 700;
    color: var(--brand);
    font-size: 16px;
    padding: 4px 8px 14px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(15, 100, 181, 0.12);
}

.user-sidebar-group {
    margin: 14px 0 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(90deg, #3aa0e8 0%, #0f64b5 100%);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(15, 100, 181, 0.18);
}

.user-sidebar a {
    display: block;
    color: #334155;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    margin: 0 2px 3px;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.user-sidebar a:hover {
    background: rgba(58, 160, 232, 0.12);
    color: #0f64b5;
    transform: translateX(2px);
}

.user-sidebar a.active {
    background: rgba(15, 100, 181, 0.12);
    color: #0f64b5;
    font-weight: 600;
    box-shadow: inset 3px 0 0 #0f64b5;
}

.user-main {
    min-width: 0;
    border: 1px solid rgba(15, 100, 181, 0.1);
    border-radius: 14px;
    background: #fff;
    padding: 22px 24px;
    box-shadow: 0 8px 24px rgba(15, 100, 181, 0.05);
}

.user-page-head {
    margin-bottom: 22px;
}

.user-page-head h1 {
    margin: 0 0 6px;
    color: var(--brand);
    font-size: 28px;
}

.user-page-head p {
    margin: 0;
    color: var(--muted);
}

.confirm-section {
    margin-bottom: 28px;
}

.confirm-section-head {
    margin-bottom: 12px;
}

.confirm-section-head h2 {
    margin: 0;
    font-size: 18px;
    color: var(--brand);
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.admin-stat-item {
    border: 1px solid rgba(15, 100, 181, 0.12);
    border-radius: 12px;
    padding: 18px 16px;
    background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.admin-stat-item span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.admin-stat-item strong {
    display: block;
    color: var(--brand);
    font-size: 28px;
    line-height: 1.2;
    word-break: break-all;
}

.user-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.user-info-item {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 16px 18px;
    background: linear-gradient(180deg, #f8fbfe, #ffffff);
}

.user-info-item span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 6px;
}

.user-info-item strong {
    font-size: 18px;
    color: var(--text);
    word-break: break-all;
}

.user-info-item strong.score {
    color: var(--brand);
    font-size: 24px;
}

.user-quick-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.user-form-panel {
    margin: 0;
    max-width: 720px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row .form-group {
    margin-bottom: 18px;
}

@media (max-width: 720px) {
    .form-row,
    .clone-meta-row {
        grid-template-columns: 1fr;
    }
}

.clone-meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.clone-meta-row-single {
    grid-template-columns: 1fr;
}

.clone-meta-item {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 16px;
    background: linear-gradient(180deg, #f8fbfe, #ffffff);
}

.clone-meta-item > span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 6px;
}

.clone-meta-item > strong {
    display: block;
    font-size: 18px;
    color: var(--text);
    word-break: break-all;
}

.clone-meta-item > strong.score {
    color: var(--brand);
    font-size: 22px;
}

.clone-meta-item .form-tip {
    margin-top: 8px;
}

.user-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.user-table th,
.user-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.user-table th {
    background: #f5f9fd;
    color: var(--brand);
    font-weight: 600;
    white-space: nowrap;
}

.user-table tr:last-child td {
    border-bottom: none;
}

.user-table .text-cell {
    max-width: 360px;
    word-break: break-word;
}

.user-empty {
    padding: 28px;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 960px) {
    .stats,
    .quotes,
    .about-grid,
    .sound-grid,
    .feature-list,
    .clone-highlights,
    .clone-model-grid,
    .clone-steps,
    .clone-scenes,
    .pay-grid,
    .user-layout,
    .user-info-grid,
    .admin-stat-grid,
    .auth-split {
        grid-template-columns: 1fr;
    }

    .auth-form-wrap {
        justify-content: stretch;
    }

    .auth-form-panel {
        max-width: none;
    }

    .filter-row {
        flex-direction: column;
        gap: 8px;
    }

    .filter-label {
        padding-top: 0;
    }

    .user-sidebar {
        position: static;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .nav-main {
        order: 3;
        width: 100%;
    }
}
