:root {
    --bg: #eef3f9;
    --surface-soft: #f6f8fc;
    --text: #162033;
    --muted: #6b768a;
    --primary: #1f6bff;
    --primary-deep: #1149cc;
    --primary-soft: rgba(31, 107, 255, 0.1);
    --success: #16a34a;
    --warning: #d97706;
    --danger: #dc2626;
    --shadow: 0 24px 60px rgba(18, 39, 73, 0.12);
    --shadow-soft: 0 14px 34px rgba(18, 39, 73, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(31, 107, 255, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(14, 165, 164, 0.14), transparent 24%),
        linear-gradient(180deg, #f7faff 0%, var(--bg) 45%, #e9eff8 100%);
}

button,
input {
    font: inherit;
}

button {
    border: none;
    background: none;
}

#app {
    min-height: 100vh;
}

.auth-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
}

.login-layout {
    width: min(1080px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 420px);
    gap: 28px;
    align-items: stretch;
}

.login-showcase,
.login-panel,
.shell-sidebar,
.topbar,
.hero-card,
.section-card,
.result-item,
.package-card {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.login-showcase {
    position: relative;
    padding: 40px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(17, 73, 204, 0.95) 0%, rgba(31, 107, 255, 0.92) 52%, rgba(14, 165, 164, 0.9) 100%);
    color: #fff;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 560px;
}

.login-showcase::before,
.login-showcase::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    pointer-events: none;
}

.login-showcase::before {
    width: 260px;
    height: 260px;
    top: -90px;
    right: -70px;
}

.login-showcase::after {
    width: 200px;
    height: 200px;
    bottom: -70px;
    left: -50px;
}

.showcase-copy,
.showcase-metrics {
    position: relative;
    z-index: 1;
}

.showcase-badge {
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 13px;
}

.showcase-copy h1 {
    margin-top: 26px;
    font-size: clamp(30px, 3.8vw, 44px);
    line-height: 1.16;
    font-weight: 700;
}

.showcase-copy p {
    margin-top: 18px;
    max-width: 500px;
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
}

.showcase-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.showcase-points {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
}

.point-card {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(8, 20, 53, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.point-card strong,
.point-card span {
    display: block;
}

.point-card strong {
    font-size: 15px;
    font-weight: 700;
}

.point-card span {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer {
    position: relative;
    z-index: 1;
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto 20px;
    padding: 10px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    justify-content: center;
    align-items: center;
    color: var(--muted);
    font-size: 12px;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--primary);
}

.metric-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(8, 20, 53, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-value {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.76);
}

.login-panel {
    align-self: center;
    width: 100%;
    padding: 34px 30px 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.login-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.auth-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 22px;
    padding: 6px;
    border-radius: 16px;
    background: rgba(31, 107, 255, 0.08);
}

.auth-tab {
    min-height: 42px;
    border-radius: 12px;
    color: var(--muted);
    cursor: pointer;
    transition: 0.2s ease;
}

.auth-tab.active {
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(18, 39, 73, 0.08);
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, #4f93ff 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(31, 107, 255, 0.22);
}

.brand-text strong,
.brand-text span,
.sidebar-brand-text strong,
.sidebar-brand-text span,
.menu-copy strong,
.menu-copy span {
    display: block;
}

.brand-text strong {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.brand-text span {
    margin-top: 4px;
    font-size: 13px;
    color: var(--muted);
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
}

.login-subtitle {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}

.login-form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-item label {
    font-size: 14px;
    font-weight: 600;
    color: #31415e;
}

.form-item input,
.search-input input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(30, 50, 82, 0.12);
    border-radius: 14px;
    background: rgba(247, 250, 255, 0.92);
    color: var(--text);
}

.form-item input:focus,
.search-input input:focus {
    outline: none;
    border-color: rgba(31, 107, 255, 0.55);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(31, 107, 255, 0.12);
}

.login-btn,
.search-btn,
.package-btn,
.action-btn,
.menu-toggle,
.mobile-nav-btn,
.ghost-btn,
.btn,
.modal-close {
    min-height: 44px;
    border-radius: 14px;
    cursor: pointer;
}

.login-btn,
.search-btn,
.package-btn,
.download-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #4388ff 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(31, 107, 255, 0.2);
}

.login-btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
}

.shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
}

.shell-sidebar {
    position: sticky;
    top: 24px;
    height: calc(100vh - 48px);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(13, 37, 82, 0.98) 0%, rgba(18, 56, 122, 0.95) 55%, rgba(12, 123, 140, 0.92) 100%);
    color: #fff;
    padding: 24px 20px 22px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.sidebar-header,
.hero-head,
.section-head,
.result-header,
.topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-brand .brand-mark {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.sidebar-brand-text strong {
    font-size: 20px;
}

.sidebar-brand-text span,
.sidebar-panel-text,
.user-role,
.menu-copy span,
.topbar-subtitle,
.hero-head p,
.section-head p,
.empty-state p,
.source-text,
.order-meta,
.pay-summary span {
    color: var(--muted);
}

.sidebar-brand-text span {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
}

.menu-toggle {
    display: none;
    width: 44px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 20px;
}

.sidebar-panel,
.user-panel {
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-panel-title {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.sidebar-panel-value,
.user-balance strong {
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}

.sidebar-panel-text,
.menu-copy span,
.user-role,
.user-balance span {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.menu {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    overflow-y: auto;
}

.menu-item {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    color: rgba(255, 255, 255, 0.78);
}

.menu-item.active {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.menu-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    font-size: 18px;
    flex-shrink: 0;
}

.user-name,
.package-name,
.result-name {
    font-size: 16px;
    font-weight: 700;
}

.shell-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.topbar {
    min-height: 76px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.topbar-title,
.hero-head h2 {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
}

.topbar-subtitle {
    margin-top: 6px;
    font-size: 14px;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.role-chip {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-deep);
    font-size: 13px;
    font-weight: 600;
}

.btn {
    padding: 0 16px;
    min-width: 88px;
    font-size: 14px;
    font-weight: 600;
}

.btn-danger {
    background: rgba(220, 38, 38, 0.1);
    color: var(--danger);
    border: 1px solid rgba(220, 38, 38, 0.14);
}

.hero-card,
.section-card,
.modal-panel,
.package-card,
.result-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
    border-radius: 28px;
}

.hero-card,
.section-card {
    padding: 26px;
}

.hero-stats,
.packages-grid {
    display: grid;
    gap: 18px;
}

.hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-stat {
    padding: 18px 16px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(30, 50, 82, 0.07);
}

.hero-stat strong {
    display: block;
    font-size: 24px;
}

.hero-stat span,
.meta-chip,
.source-title {
    display: block;
    margin-top: 8px;
    font-size: 13px;
}

.mobile-nav {
    display: none;
    gap: 10px;
    overflow-x: auto;
}

.mobile-nav-btn {
    min-width: 110px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(30, 50, 82, 0.08);
    color: var(--muted);
}

.mobile-nav-btn.active {
    background: var(--primary);
    color: #fff;
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-head h3 {
    font-size: 22px;
    font-weight: 700;
}

.section-head p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.75;
}

.status-chip {
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(22, 163, 74, 0.1);
    color: var(--success);
}

.search-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-input {
    display: flex;
    gap: 12px;
}

.search-input input {
    flex: 1;
}

.search-btn {
    min-width: 120px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 600;
}

.tip-box {
    padding: 15px 16px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.75;
}

.tip-box.info {
    background: rgba(31, 107, 255, 0.08);
    color: var(--primary-deep);
}

.tip-box.warning {
    background: rgba(217, 119, 6, 0.08);
    color: #9a5b00;
}

.tip-box.error {
    background: rgba(220, 38, 38, 0.08);
    color: #b42318;
}

.result-list,
.source-list,
.package-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.result-item {
    padding: 20px;
}

.result-meta,
.result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(30, 50, 82, 0.08);
    margin-top: 10px;
}

.result-body {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.9;
    white-space: pre-wrap;
}

.source-list {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(30, 50, 82, 0.08);
}

.source-title {
    margin-top: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.source-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(247, 250, 255, 0.88);
    border: 1px solid rgba(30, 50, 82, 0.08);
}

.source-text {
    min-width: 0;
    font-size: 13px;
    line-height: 1.7;
    word-break: break-word;
}

.source-download-btn {
    min-width: 96px;
    padding: 0 14px;
    flex-shrink: 0;
}

.action-btn {
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
}

.view-btn {
    background: #fff;
    border: 1px solid rgba(30, 50, 82, 0.12);
    color: var(--text);
}

.empty-state {
    padding: 48px 20px;
    border-radius: 22px;
    background: rgba(247, 250, 255, 0.75);
    border: 1px dashed rgba(30, 50, 82, 0.12);
    text-align: center;
}

.empty-state-icon {
    font-size: 34px;
    margin-bottom: 10px;
}

.empty-state h4 {
    font-size: 18px;
    line-height: 1.3;
}

.empty-state p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.8;
}

.packages-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card {
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.package-card.popular {
    background: linear-gradient(180deg, rgba(31, 107, 255, 0.08) 0%, rgba(255, 255, 255, 0.96) 34%);
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #0f3ea7;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.package-price {
    margin-top: 18px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    color: var(--primary-deep);
}

.package-price strong {
    font-size: 38px;
}

.package-price span,
.package-desc {
    font-size: 14px;
    line-height: 1.8;
}

.package-desc {
    margin-top: 14px;
}

.feature-item {
    display: flex;
    gap: 10px;
    font-size: 14px;
    line-height: 1.7;
}

.feature-item::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
}

.package-btn {
    width: 100%;
    margin-top: 22px;
    padding: 0 18px;
    font-size: 15px;
    font-weight: 600;
}

.ghost-btn {
    background: rgba(31, 107, 255, 0.08);
    color: var(--primary-deep);
    border: 1px solid rgba(31, 107, 255, 0.12);
}

.modal-mask {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 38, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 100;
}

.modal-panel {
    width: min(460px, 100%);
    padding: 26px;
}

.modal-close {
    width: 44px;
    background: rgba(30, 50, 82, 0.08);
    color: var(--muted);
    font-size: 20px;
}

.modal-body {
    margin-top: 18px;
}

.pay-summary {
    padding: 16px;
    border-radius: 18px;
    background: rgba(247, 250, 255, 0.9);
    border: 1px solid rgba(30, 50, 82, 0.08);
}

.pay-summary strong {
    display: block;
    font-size: 20px;
}

.pay-summary span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.7;
}

.qr-wrap {
    margin-top: 18px;
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(30, 50, 82, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.qr-wrap img {
    width: min(220px, 100%);
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 16px;
    background: #fff;
    padding: 10px;
    border: 1px solid rgba(30, 50, 82, 0.08);
}

.qr-wrap p,
.order-meta {
    text-align: center;
    font-size: 13px;
    line-height: 1.7;
}

.top-gap {
    margin-top: 16px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 1180px) {
    .shell {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .packages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .login-layout,
    .shell {
        grid-template-columns: 1fr;
    }

    .shell {
        padding: 16px;
        gap: 16px;
    }

    .shell-sidebar {
        position: static;
        height: auto;
        padding: 20px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .menu {
        display: none;
    }

    .menu.open,
    .sidebar-panel.mobile-visible,
    .user-panel.mobile-visible {
        display: flex;
        flex-direction: column;
    }

    .mobile-nav {
        display: flex;
    }
}

@media (max-width: 768px) {
    .auth-shell,
    .shell {
        padding: 14px;
    }

    .showcase-metrics,
    .hero-stats,
    .packages-grid,
    .search-input,
    .topbar,
    .topbar-actions,
    .section-head,
    .result-header {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .packages-grid {
        display: grid;
    }

    .search-btn,
    .action-btn,
    .btn,
    .package-btn,
    .source-download-btn {
        width: 100%;
    }

    .source-item {
        flex-direction: column;
        align-items: stretch;
    }
}


.feedback-section {
    padding-top: 6px;
}

.feedback-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.feedback-head h4 {
    font-size: 20px;
    line-height: 1.3;
}

.feedback-head p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}

.card-lite,
.feedback-card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(247, 250, 255, 0.88);
    border: 1px solid rgba(30, 50, 82, 0.08);
}

.feedback-form textarea,
.reply-editor textarea {
    width: 100%;
    min-height: 112px;
    resize: vertical;
    border-radius: 16px;
    border: 1px solid rgba(30, 50, 82, 0.12);
    background: #fff;
    padding: 14px 16px;
    font: inherit;
    color: var(--text);
    line-height: 1.7;
}

.feedback-form-foot,
.reply-actions,
.feedback-meta,
.reply-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.feedback-form-foot,
.reply-actions {
    margin-top: 12px;
}

.feedback-form-foot span,
.reply-actions span,
.feedback-user span,
.reply-head span {
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
}

.feedback-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feedback-user {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feedback-content,
.reply-content {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.9;
    white-space: pre-wrap;
    word-break: break-word;
}

.reply-block {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(30, 50, 82, 0.08);
}

.reply-editor {
    margin-top: 14px;
}

.reply-editor textarea {
    min-height: 96px;
}

@media (max-width: 768px) {
    .feedback-head,
    .feedback-form-foot,
    .reply-actions,
    .feedback-meta,
    .reply-head {
        flex-direction: column;
        align-items: stretch;
    }
}

.payment-choice-actions,
.result-actions.payment-choice-actions {
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    gap: 12px;
    align-items: stretch;
}

.payment-choice-actions .package-btn,
.payment-choice-actions .action-btn {
    margin-top: 0;
}

.payment-choice-actions .package-btn {
    background: #fff;
    color: var(--primary-deep);
    border: 1px solid rgba(31, 107, 255, 0.14);
    box-shadow: none;
}

.payment-choice-actions .package-btn:hover {
    background: rgba(31, 107, 255, 0.06);
    border-color: rgba(31, 107, 255, 0.24);
    box-shadow: 0 12px 24px rgba(18, 39, 73, 0.08);
}

.payment-choice-actions .download-btn {
    min-height: 50px;
    font-size: 15px;
}

.btn-danger:hover {
    background: rgba(220, 38, 38, 0.14);
    border-color: rgba(220, 38, 38, 0.2);
}

.modal-close:hover {
    background: rgba(30, 50, 82, 0.14);
    color: var(--text);
}

@media (max-width: 768px) {
    .payment-choice-actions {
        grid-template-columns: 1fr;
    }
}


.modal-body > .result-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
}

.modal-body > .result-actions .package-btn,
.modal-body > .result-actions .action-btn,
.modal-body > .result-actions .download-btn {
    width: 100%;
    min-height: 50px;
    margin-top: 0;
}

.modal-body > .result-actions .action-btn,
.modal-body > .result-actions .download-btn {
    justify-content: center;
}

@media (max-width: 768px) {
    .modal-body > .result-actions {
        grid-template-columns: 1fr;
    }
}
