:root {
    color-scheme: dark;
    --bg: #090b1f;
    --bg-soft: #101733;
    --panel: rgba(18, 24, 54, 0.72);
    --panel-solid: #121832;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.2);
    --text: #f7f3ff;
    --muted: #b9bfd6;
    --gold: #e8c46b;
    --gold-deep: #aa7d24;
    --cyan: #72d7ff;
    --rose: #ff8bb3;
    --ok: #70e3a1;
    --bad: #ff7676;
    --warn: #ffd36a;
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 10%, rgba(81, 87, 192, 0.36), transparent 28rem),
        radial-gradient(circle at 82% 18%, rgba(112, 215, 255, 0.16), transparent 26rem),
        linear-gradient(135deg, #080916 0%, #17133a 45%, #0b1532 100%);
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.stars {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1px, transparent 1px),
        radial-gradient(circle, rgba(232, 196, 107, 0.9) 0 1px, transparent 1px);
    background-size: 96px 96px, 137px 137px;
    background-position: 0 0, 38px 49px;
    opacity: 0.26;
}

.frontend-body,
.install-body {
    overflow-x: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px clamp(18px, 4vw, 56px);
    background: rgba(6, 8, 25, 0.64);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.brand,
.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand-mark {
    width: 24px;
    height: 24px;
    display: inline-block;
    border-radius: 50%;
    background:
        linear-gradient(135deg, var(--gold), #fff4b6 48%, #6949ff 52%, #1e2d75);
    box-shadow: 0 0 28px rgba(232, 196, 107, 0.5);
}

.brand-mark.large {
    width: 42px;
    height: 42px;
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-size: 14px;
}

.nav-inline-form {
    display: inline-flex;
    margin: 0;
}

.nav-inline-form button {
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
}

.home-shell,
.detail-shell,
.pay-shell,
.report-page {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    min-height: calc(100vh - 92px);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    align-items: center;
    gap: 28px;
    padding: 52px 0 34px;
}

.hero-copy h1,
.detail-head h1,
.pay-card h1,
.state-card h1 {
    margin: 10px 0 18px;
    font-size: 56px;
    line-height: 1.04;
    max-width: 760px;
}

.hero-lead,
.detail-head p,
.state-card p,
.pay-card p {
    color: var(--muted);
    line-height: 1.8;
    max-width: 680px;
}

.eyebrow {
    margin: 0;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-panel,
.template-card,
.wizard-card,
.pay-card,
.state-card,
.install-card,
.login-card,
.admin-card,
.stat-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-panel {
    padding: 28px;
}

.hero-panel span,
.hero-panel p,
.template-card p,
.muted {
    color: var(--muted);
}

.hero-panel strong {
    display: block;
    margin: 10px 0;
    font-size: 72px;
    line-height: 1;
    color: var(--gold);
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-bottom: 70px;
}

.template-card {
    min-height: 244px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.template-category {
    color: var(--cyan) !important;
    font-size: 13px;
    margin: 0 0 8px;
}

.template-card h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.template-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}

.template-card-footer strong,
.price-line strong {
    color: var(--gold);
    font-size: 24px;
}

.primary-btn,
.gold-btn,
.ghost-btn,
.actions button,
.actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 800;
    white-space: nowrap;
}

.primary-btn {
    color: #081020;
    background: linear-gradient(135deg, var(--cyan), #b9f0ff);
}

.gold-btn {
    color: #1f1604;
    background: linear-gradient(135deg, var(--gold), #fff0a7);
}

.ghost-btn {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--line-strong);
}

.small {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
}

.full-btn {
    width: 100%;
}

.detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
    gap: 24px;
    padding: 42px 0 70px;
}

.detail-head {
    position: sticky;
    top: 92px;
    align-self: start;
}

.back-link {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--muted);
}

.price-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.wizard-card {
    padding: 24px;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.wizard-step-head {
    margin-bottom: 20px;
}

.wizard-step-head span {
    color: var(--gold);
    font-weight: 800;
    font-size: 13px;
}

.wizard-step-head h2,
.admin-card h2 {
    margin: 6px 0 0;
}

.field,
.form-grid label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--muted);
}

.field span,
.form-grid label {
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    padding: 12px 13px;
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(232, 196, 107, 0.12);
}

.field em {
    color: var(--bad);
    font-style: normal;
    font-size: 13px;
}

.wizard-actions,
.admin-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.wizard-login-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.user-center-shell {
    position: relative;
    z-index: 1;
    width: min(960px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 72px;
}

.user-center-head {
    padding: 26px;
    margin-bottom: 18px;
    border-radius: 8px;
    color: #fff1c5;
    background: rgba(88, 6, 3, 0.72);
    border: 1px solid rgba(255, 218, 126, 0.24);
}

.user-center-head h1 {
    margin: 8px 0 10px;
    color: #ffd86f;
    font-size: 42px;
}

.user-center-head p {
    color: #ffe3a6;
}

.user-report-list {
    display: grid;
    gap: 14px;
}

.user-report-card,
.empty-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    border-radius: 8px;
    color: #64240c;
    background: linear-gradient(180deg, #fff6d4, #ffd985);
    border: 1px solid rgba(210, 146, 45, 0.62);
}

.empty-card {
    display: block;
}

.user-report-card h2,
.empty-card h2 {
    margin: 10px 0 8px;
    color: #7e1d08;
}

.user-report-card p,
.empty-card p {
    margin: 4px 0;
    color: #72401d;
}

.user-report-actions {
    display: grid;
    justify-items: end;
    gap: 10px;
}

.user-report-actions strong {
    color: #bd1a0e;
    font-size: 24px;
}

.pay-shell,
.report-page {
    min-height: calc(100vh - 120px);
    display: grid;
    align-items: center;
    padding: 42px 0 70px;
}

.pay-card,
.state-card {
    width: min(640px, 100%);
    margin: 0 auto;
    padding: 30px;
}

.order-summary {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.order-summary div,
.detail-grid div,
.status-row div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.order-summary dt,
.detail-grid span,
.status-row span {
    color: var(--muted);
}

.order-summary dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
    overflow-wrap: anywhere;
}

.pay-button {
    width: 100%;
    margin-bottom: 18px;
}

.loader-orbit {
    width: 72px;
    height: 72px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 18px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.magazine-report {
    width: min(920px, 100%);
    margin: 0 auto;
}

.report-cover,
.report-section,
.lucky-panel,
.suggestion-panel,
.report-footer-note {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    padding: 26px;
    margin-bottom: 16px;
}

.report-cover h1 {
    margin: 12px 0;
    font-size: 42px;
}

.score-ring {
    width: 116px;
    height: 116px;
    display: grid;
    place-items: center;
    margin: 22px 0;
    border: 1px solid rgba(232, 196, 107, 0.5);
    border-radius: 50%;
    background: rgba(232, 196, 107, 0.08);
}

.score-ring span {
    color: var(--gold);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.score-ring small {
    color: var(--muted);
    font-size: 12px;
}

.tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag-row span,
.pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.report-section {
    position: relative;
    padding-left: 86px;
}

.section-score {
    position: absolute;
    left: 24px;
    top: 26px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #130f05;
    background: var(--gold);
    font-weight: 900;
}

.report-section h2,
.lucky-panel h2,
.suggestion-panel h2 {
    margin: 0 0 10px;
}

.report-section p,
.report-disclaimer,
.report-footer-note p {
    color: var(--muted);
    line-height: 1.85;
}

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

.lucky-grid div {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.suggestion-panel li {
    margin-bottom: 10px;
    color: var(--muted);
    line-height: 1.7;
}

.report-footer-note {
    width: min(920px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.alert {
    border-radius: 8px;
    padding: 13px 14px;
    margin-bottom: 16px;
    border: 1px solid var(--line);
}

.alert-success {
    color: var(--ok);
    background: rgba(112, 227, 161, 0.1);
}

.alert-danger {
    color: var(--bad);
    background: rgba(255, 118, 118, 0.1);
}

.install-shell {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
    padding: 52px 0;
}

.install-hero {
    margin-bottom: 22px;
}

.install-hero h1 {
    margin: 10px 0;
    font-size: 42px;
}

.install-hero p {
    color: var(--muted);
}

.install-card {
    padding: 24px;
    margin-bottom: 18px;
}

.requirement-grid,
.form-grid,
.detail-grid,
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.requirement-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
}

.requirement-item.ok span,
.pill.ok {
    color: var(--ok);
}

.requirement-item.bad span,
.pill.bad {
    color: var(--bad);
}

.pill.warn {
    color: var(--warn);
}

.full {
    grid-column: 1 / -1;
}

.check-line {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.check-line input {
    width: auto;
}

.admin-body {
    display: grid;
    grid-template-columns: 236px minmax(0, 1fr);
    background: #0b1024;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 18px;
    background: #0e1430;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.admin-sidebar nav {
    display: grid;
    gap: 6px;
}

.admin-sidebar nav a {
    padding: 11px 12px;
    border-radius: 8px;
    color: var(--muted);
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.admin-main {
    min-width: 0;
    padding: 22px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-topbar h1 {
    margin: 0;
}

.stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 16px;
}

.stat-card {
    padding: 18px;
}

.stat-card span {
    color: var(--muted);
}

.stat-card strong {
    display: block;
    margin-top: 10px;
    font-size: 28px;
}

.admin-card {
    padding: 18px;
    margin-bottom: 16px;
}

.admin-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.status-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

th,
td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--muted);
    font-size: 13px;
}

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

.actions form {
    display: inline;
}

.actions button,
.actions a {
    min-height: 30px;
    padding: 0 10px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--line);
}

.search-form {
    display: flex;
    gap: 8px;
    width: min(520px, 100%);
}

.admin-form textarea {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.code-block {
    white-space: pre-wrap;
    overflow-x: auto;
    padding: 14px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--line);
    color: #dfe7ff;
}

.login-shell {
    min-height: calc(100vh - 80px);
    display: grid;
    place-items: center;
    padding: 32px 16px;
}

.login-card {
    width: min(420px, 100%);
    padding: 28px;
}

@media (max-width: 920px) {
    .hero,
    .detail-shell {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 42px;
    }

    .detail-head {
        position: static;
    }

    .template-grid,
    .lucky-grid,
    .stat-grid,
    .status-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-body {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 14px 16px;
    }

    .site-header nav {
        display: none;
    }

    .hero-copy h1,
    .detail-head h1,
    .pay-card h1,
    .state-card h1 {
        font-size: 38px;
    }

    .template-grid,
    .requirement-grid,
    .form-grid,
    .detail-grid,
    .stat-grid,
    .status-row,
    .lucky-grid {
        grid-template-columns: 1fr;
    }

    .template-card-footer,
    .admin-card-head,
    .admin-topbar,
    .search-form {
        align-items: stretch;
        flex-direction: column;
    }

    .wizard-card,
    .pay-card,
    .state-card,
    .install-card,
    .login-card,
    .admin-card {
        padding: 18px;
    }

    .report-section {
        padding-left: 18px;
        padding-top: 78px;
    }

    .section-score {
        left: 18px;
        top: 18px;
    }
}

@media (max-width: 640px) {
    .festival-body .site-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .festival-body .site-header nav {
        width: 100%;
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 2px;
        font-size: 13px;
    }

    .user-report-card {
        align-items: stretch;
        flex-direction: column;
    }

    .user-report-actions {
        justify-items: stretch;
    }
}

/* Red-gold conversion frontend */
.festival-body {
    --fest-red: #c80f08;
    --fest-red-dark: #5b0904;
    --fest-red-deep: #360603;
    --fest-gold: #ffd064;
    --fest-gold-2: #fff0ad;
    --fest-cream: #fff1c7;
    --fest-brown: #5b2109;
    color: #fff8dc;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 217, 113, 0.34), transparent 14rem),
        radial-gradient(circle at 88% 20%, rgba(255, 170, 56, 0.26), transparent 15rem),
        linear-gradient(180deg, #b60b06 0%, #e43014 36%, #7a0b05 70%, #2a0503 100%);
}

.festival-body .stars {
    background-image:
        radial-gradient(circle, rgba(255, 231, 155, 0.95) 0 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 247, 211, 0.85) 0 1px, transparent 1px);
    opacity: 0.44;
}

.festival-body .site-header {
    background: rgba(92, 8, 4, 0.72);
    border-bottom: 1px solid rgba(255, 218, 113, 0.28);
}

.festival-body .brand-mark {
    background: radial-gradient(circle at 30% 25%, #fff7c8, #ffd15d 38%, #c0190f 39%, #760600);
    box-shadow: 0 0 30px rgba(255, 204, 94, 0.78);
}

.festival-home {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.festival-hero {
    position: relative;
    min-height: calc(100vh - 72px);
    padding: 26px clamp(14px, 3vw, 42px) 32px;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 240, 169, 0.22), transparent 22rem),
        radial-gradient(circle at 50% 92%, rgba(255, 225, 150, 0.34), transparent 28rem);
}

.festival-hero::before,
.festival-hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 120px;
    bottom: 24px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 22% 80%, #ffd56d 0 12px, transparent 13px),
        radial-gradient(circle at 42% 56%, #ffe699 0 16px, transparent 17px),
        radial-gradient(circle at 64% 76%, #ffc44e 0 20px, transparent 21px),
        linear-gradient(180deg, rgba(255, 232, 154, 0.6), rgba(255, 161, 44, 0.08));
    opacity: 0.7;
}

.festival-hero::before {
    left: -64px;
    transform: rotate(-16deg);
}

.festival-hero::after {
    right: -64px;
    transform: rotate(16deg);
}

.festival-title {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto 22px;
}

.festival-title p {
    margin: 0 0 4px;
    color: var(--fest-gold-2);
    font-weight: 900;
    text-shadow: 0 2px 0 rgba(80, 0, 0, 0.5);
}

.festival-title h1 {
    margin: 0;
    font-size: clamp(46px, 8.5vw, 112px);
    line-height: 1;
    font-family: Georgia, "Songti SC", "STSong", serif;
    color: var(--fest-gold);
    text-shadow:
        0 3px 0 #8b430e,
        0 8px 0 rgba(91, 9, 4, 0.72),
        0 14px 24px rgba(66, 0, 0, 0.46);
}

.ribbon,
.festival-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 clamp(26px, 7vw, 86px);
    border: 2px solid #ffcc5b;
    border-radius: 8px;
    color: #fff7c4;
    background:
        linear-gradient(180deg, #f34321 0%, #c40e07 54%, #8d0904 100%);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.34),
        inset 0 -4px 0 rgba(84, 4, 2, 0.35),
        0 10px 28px rgba(73, 4, 2, 0.34);
    font-size: clamp(22px, 3.4vw, 42px);
    font-weight: 900;
    letter-spacing: 0;
}

.ribbon::before,
.ribbon::after {
    content: "";
    position: absolute;
    top: 12px;
    width: 76px;
    height: 32px;
    background: #9a0c07;
    border: 2px solid #d58c2a;
    z-index: -1;
}

.ribbon::before {
    left: -54px;
    transform: skewX(28deg);
}

.ribbon::after {
    right: -54px;
    transform: skewX(-28deg);
}

.lantern {
    position: absolute;
    top: 10px;
    width: 92px;
    height: 114px;
    border-radius: 45% 45% 48% 48%;
    background:
        linear-gradient(90deg, transparent 0 18%, rgba(255, 245, 167, 0.4) 19% 21%, transparent 22% 39%, rgba(255, 245, 167, 0.34) 40% 42%, transparent 43% 58%, rgba(255, 245, 167, 0.34) 59% 61%, transparent 62% 79%, rgba(255, 245, 167, 0.4) 80% 82%, transparent 83%),
        radial-gradient(circle at 50% 34%, #ff6947, #d6180c 62%, #8f0903);
    border: 3px solid #f5b23d;
    box-shadow: 0 0 28px rgba(255, 196, 78, 0.5);
}

.lantern::before,
.lantern::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #f6be4d;
}

.lantern::before {
    top: -13px;
    width: 54px;
    height: 13px;
    border-radius: 8px 8px 2px 2px;
}

.lantern::after {
    bottom: -48px;
    width: 4px;
    height: 48px;
    box-shadow: -13px 8px 0 #ca170b, 13px 8px 0 #ca170b;
}

.lantern-left {
    left: 18px;
    transform: rotate(-8deg);
}

.lantern-right {
    right: 18px;
    transform: rotate(8deg);
}

.festival-cloud {
    position: absolute;
    width: 180px;
    height: 86px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 20% 70%, #ffe3a5 0 34px, transparent 35px),
        radial-gradient(circle at 42% 42%, #fff0bd 0 48px, transparent 49px),
        radial-gradient(circle at 70% 66%, #ffd789 0 40px, transparent 41px);
    opacity: 0.72;
}

.cloud-a {
    left: -36px;
    top: 38%;
}

.cloud-b {
    right: -42px;
    top: 34%;
}

.phone-stage {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(230px, 0.85fr) minmax(260px, 1fr) minmax(230px, 0.85fr);
    align-items: end;
    gap: clamp(14px, 2.6vw, 34px);
    width: min(1180px, 100%);
    margin: 0 auto;
}

.phone-mock {
    position: relative;
    border: 9px solid #161616;
    border-radius: 38px;
    padding: 10px;
    background: linear-gradient(135deg, #1c1c1c, #4c4a45 45%, #050505);
    box-shadow:
        0 18px 36px rgba(28, 0, 0, 0.54),
        0 0 0 3px #e5b45a,
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.phone-main {
    transform: translateY(8px);
}

.phone-side {
    transform: translateY(24px);
}

.phone-notch {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 13px;
    width: 104px;
    height: 25px;
    transform: translateX(-50%);
    border-radius: 0 0 16px 16px;
    background: #050505;
}

.phone-screen {
    position: relative;
    overflow: hidden;
    min-height: 570px;
    border-radius: 26px;
    padding: 54px 20px 20px;
    color: #5c1606;
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 229, 117, 0.52), transparent 9rem),
        linear-gradient(180deg, #dc1f12 0%, #941006 52%, #5a0904 100%);
}

.phone-screen::before {
    content: "9:41";
    position: absolute;
    left: 22px;
    top: 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.phone-screen::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 20px;
    width: 42px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fff 0 9px, transparent 10px 14px, #fff 15px 24px, transparent 25px 29px, #fff 30px);
    opacity: 0.95;
}

.zodiac-screen h2 {
    margin: 12px 0 18px;
    text-align: center;
    color: var(--fest-gold-2);
    font-family: Georgia, "Songti SC", serif;
    font-size: clamp(28px, 3vw, 40px);
    text-shadow: 0 3px 0 #7b1a05, 0 6px 16px rgba(0, 0, 0, 0.3);
}

.year-badge {
    display: block;
    width: 108px;
    margin: 0 auto;
    padding: 7px 0;
    border: 2px solid #f6c65b;
    border-radius: 8px;
    text-align: center;
    color: #c4160b;
    background: #fff1c1;
    font-weight: 900;
}

.zodiac-wheel {
    position: relative;
    width: min(260px, 86%);
    aspect-ratio: 1;
    margin: 0 auto 16px;
    border: 14px solid #ffe3a0;
    border-radius: 50%;
    background:
        repeating-conic-gradient(from 0deg, #b80d08 0 20deg, #fff1bc 20deg 40deg),
        radial-gradient(circle, #d3190d 0 42%, #f5c65c 43% 47%, #8f0a04 48%);
    box-shadow: inset 0 0 0 10px #b40d07, 0 12px 22px rgba(52, 0, 0, 0.36);
}

.wheel-core {
    position: absolute;
    inset: 31%;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff4c4;
    background: radial-gradient(circle, #ec2b13, #8c0804);
    border: 4px solid #ffd56a;
    font-size: 46px;
    font-weight: 900;
}

.horse-card {
    position: absolute;
    right: 18px;
    top: 220px;
    width: 120px;
    height: 150px;
}

.horse-head {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 78px;
    height: 96px;
    border-radius: 58% 42% 48% 52%;
    background: linear-gradient(145deg, #fff9e5, #e8c687);
    transform: rotate(-19deg);
    border: 3px solid #c79035;
}

.horse-head::before {
    content: "";
    position: absolute;
    left: 12px;
    top: -20px;
    width: 26px;
    height: 42px;
    border-radius: 90% 10% 50% 50%;
    background: #fff3ce;
    border: 3px solid #c79035;
    transform: rotate(-18deg);
}

.horse-head::after {
    content: "";
    position: absolute;
    right: 17px;
    top: 32px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #21120b;
    box-shadow: 22px 28px 0 -2px #c60d06;
}

.horse-neck {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 82px;
    height: 88px;
    border-radius: 60% 30% 45% 35%;
    background: linear-gradient(145deg, #fff4d0, #d8a858);
    border: 3px solid #c79035;
    transform: rotate(18deg);
}

.mini-form {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 24px;
    display: grid;
    gap: 9px;
    padding: 14px;
    border-radius: 8px;
    background: #ffe6c1;
    border: 3px solid #ffbd74;
    box-shadow: inset 0 0 0 2px #fff3d8;
}

.mini-form div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff7e8;
}

.mini-form span {
    color: #aa7a55;
    font-size: 13px;
}

.pay-preview {
    background:
        linear-gradient(180deg, rgba(78, 18, 4, 0.25), rgba(78, 18, 4, 0.65)),
        linear-gradient(180deg, #b2210f 0%, #681005 100%);
}

.pay-preview > p {
    margin: 0 0 14px;
    color: #fff1b9;
    text-align: center;
    font-weight: 900;
}

.tab-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-bottom: 12px;
}

.tab-strip span {
    min-height: 72px;
    writing-mode: vertical-rl;
    display: grid;
    place-items: center;
    color: #a40d06;
    background: linear-gradient(180deg, #fff1be, #f8ba3e);
    border: 2px solid #ffd779;
    border-radius: 8px;
    font-weight: 900;
    font-size: 13px;
}

.gold-panel,
.info-box {
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    color: #5d2108;
    background: linear-gradient(180deg, #fff1bb, #ffd784);
    border: 3px solid #d38c25;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.46);
}

.gold-panel strong {
    display: block;
    color: #c11109;
    font-size: 17px;
    text-align: center;
}

.gold-panel p {
    margin: 8px 0 0;
    color: #6c2a0c;
    line-height: 1.6;
}

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

.countdown {
    color: #fff1bd;
    text-align: center;
    font-weight: 900;
    margin: 8px 0 12px;
}

.countdown span {
    color: #ffe05e;
    font-size: 22px;
}

.wechat-btn,
.alipay-btn {
    display: grid;
    place-items: center;
    min-height: 46px;
    margin-bottom: 10px;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
}

.wechat-btn {
    background: linear-gradient(180deg, #23c63b, #08a422);
}

.alipay-btn {
    background: linear-gradient(180deg, #27c1ff, #0b91dc);
}

.result-preview {
    background: linear-gradient(180deg, #b2210f 0%, #4c0903 100%);
}

.email-panel button {
    width: 100%;
    min-height: 42px;
    margin-top: 10px;
    border: 0;
    border-radius: 999px;
    color: #fff4d2;
    background: linear-gradient(180deg, #f34120, #d0160b);
    font-weight: 900;
}

.input-line {
    margin-top: 12px;
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 999px;
    background: #fff8e8;
    color: #b08a6a;
}

.report-tabs {
    display: flex;
    gap: 10px;
    overflow: hidden;
    color: #ffe5a1;
    font-size: 13px;
    margin: 16px 0 12px;
}

.report-tabs span:first-child {
    color: #fff;
    border-bottom: 3px solid #ffd56a;
}

.result-card {
    height: 140px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 211, 90, 0.75), transparent 4rem),
        linear-gradient(180deg, #d41b0e, #6e0b04);
    border: 3px solid #d28b23;
}

.benefit-bar {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    width: min(1120px, 100%);
    margin: 34px auto 20px;
    padding: 0 10px;
}

.benefit-bar div {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    column-gap: 10px;
    color: #c51208;
}

.benefit-bar span {
    grid-row: span 2;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff1bd;
    background: linear-gradient(180deg, #d5170c, #850703);
    border: 3px solid #ffd36d;
    font-weight: 900;
    box-shadow: 0 6px 14px rgba(99, 5, 0, 0.28);
}

.benefit-bar strong {
    font-size: 20px;
    line-height: 1.1;
    color: #c51208;
    text-shadow: 0 1px 0 #fff0b9;
}

.benefit-bar small {
    color: #882108;
    font-weight: 800;
}

.festival-cta {
    z-index: 3;
    width: min(760px, calc(100% - 28px));
    margin: 0 auto;
    display: flex;
    font-size: clamp(24px, 4vw, 40px);
}

.festival-templates {
    position: relative;
    z-index: 2;
    padding: 44px clamp(16px, 3vw, 46px) 72px;
    background:
        linear-gradient(180deg, rgba(255, 225, 158, 0.96), #fff1c6 18%, #7a0b05 18%, #2d0503 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 22px;
}

.section-title p {
    margin: 0;
    color: #c9190d;
    font-weight: 900;
}

.section-title h2 {
    margin: 4px 0 0;
    color: #ffd15e;
    font-size: clamp(34px, 5vw, 58px);
    font-family: Georgia, "Songti SC", serif;
    text-shadow: 0 3px 0 #7b1a05, 0 8px 18px rgba(0, 0, 0, 0.38);
}

.festival-templates .template-grid {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding-bottom: 0;
}

.festival-templates .template-card {
    position: relative;
    overflow: hidden;
    color: #642109;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 241, 188, 0.9)),
        linear-gradient(135deg, #ffe8a6, #ffc862);
    border: 3px solid #dc9c31;
    box-shadow: 0 16px 30px rgba(48, 0, 0, 0.28);
}

.festival-templates .template-card::before {
    content: "";
    position: absolute;
    right: -28px;
    top: -28px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(204, 20, 10, 0.15);
}

.card-seal {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 50%;
    color: #fff1bd;
    background: linear-gradient(180deg, #d7190d, #820703);
    border: 3px solid #ffd56a;
    font-size: 24px;
    font-weight: 900;
}

.festival-templates .template-category {
    color: #c7190d !important;
    font-weight: 900;
}

.festival-templates .template-card h2 {
    color: #b70f07;
    font-family: Georgia, "Songti SC", serif;
    font-size: 30px;
}

.festival-templates .template-card p {
    color: #6d2e13;
    font-weight: 700;
    line-height: 1.7;
}

.festival-templates .template-card-footer strong {
    color: #c7190d;
}

.festival-body .gold-btn {
    color: #6b1605;
    background: linear-gradient(180deg, #fff5ba, #ffd15d 48%, #f0a524);
    border-color: #b86913;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.72), 0 8px 18px rgba(111, 18, 0, 0.24);
}

.festival-detail {
    align-items: start;
}

.festival-detail-head {
    padding: 26px;
    border-radius: 8px;
    color: #fff5ca;
    background:
        radial-gradient(circle at 80% 12%, rgba(255, 223, 108, 0.24), transparent 12rem),
        linear-gradient(180deg, rgba(111, 7, 3, 0.84), rgba(52, 5, 3, 0.92));
    border: 2px solid rgba(255, 212, 101, 0.38);
    box-shadow: 0 18px 38px rgba(45, 2, 1, 0.34);
}

.festival-detail-head h1 {
    color: var(--fest-gold);
    font-family: Georgia, "Songti SC", serif;
    text-shadow: 0 3px 0 #7b1a05, 0 8px 18px rgba(0, 0, 0, 0.28);
}

.festival-detail-head p {
    color: #ffe9aa;
}

.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.detail-badges span {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: #6f1807;
    background: #ffe6a2;
    border: 1px solid #d99327;
    font-weight: 900;
}

.festival-body .wizard-card {
    color: #5b2109;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 237, 178, 0.92)),
        linear-gradient(135deg, #ffdf8a, #fff4c6);
    border: 3px solid #d9952b;
}

.festival-body .wizard-step-head span {
    color: #c5170c;
}

.festival-body .wizard-step-head h2 {
    color: #9c0c05;
    font-family: Georgia, "Songti SC", serif;
}

.festival-body .field,
.festival-body .form-grid label {
    color: #6b2c10;
}

.festival-body input,
.festival-body textarea,
.festival-body select {
    color: #5a2109;
    background: #fff8e8;
    border-color: #e2a04c;
}

.festival-body input:focus,
.festival-body textarea:focus,
.festival-body select:focus {
    border-color: #c9160b;
    box-shadow: 0 0 0 3px rgba(201, 22, 11, 0.12);
}

.festival-body .primary-btn {
    color: #fff6c8;
    background: linear-gradient(180deg, #ef2e17, #ba0e07);
    border-color: #ffd064;
}

.festival-body .wizard-card .ghost-btn,
.festival-body .user-login-card .ghost-btn {
    color: #9b160b;
    background: #fff7df;
    border: 1px solid #d9942c;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.festival-body .wizard-card .ghost-btn:hover,
.festival-body .user-login-card .ghost-btn:hover {
    color: #6c0f06;
    background: #ffe8a6;
}

.festival-body .wizard-login-actions .primary-btn,
.festival-body .wizard-login-actions .ghost-btn {
    min-width: 112px;
}

@media (max-width: 1040px) {
    .phone-stage {
        grid-template-columns: 1fr 1fr;
    }

    .phone-stage .phone-side:last-child {
        display: none;
    }

    .benefit-bar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .lantern,
    .festival-cloud {
        opacity: 0.45;
        transform: scale(0.72);
    }

    .ribbon {
        min-height: 46px;
        padding: 0 18px;
        font-size: 21px;
    }

    .ribbon::before,
    .ribbon::after {
        display: none;
    }

    .phone-stage {
        grid-template-columns: 1fr;
        width: min(390px, 100%);
    }

    .phone-side {
        display: none;
    }

    .phone-main {
        transform: none;
    }

    .phone-screen {
        min-height: 560px;
    }

    .benefit-bar {
        grid-template-columns: 1fr;
        width: min(420px, 100%);
        margin-top: 22px;
    }

    .benefit-bar div {
        padding: 10px 12px;
        border-radius: 8px;
        background: rgba(255, 240, 188, 0.72);
    }

    .festival-hero {
        padding-top: 18px;
    }
}

.festival-body .pay-card,
.festival-body .state-card,
.festival-body .report-cover,
.festival-body .report-section,
.festival-body .lucky-panel,
.festival-body .suggestion-panel,
.festival-body .report-footer-note {
    color: #5b2109;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 237, 178, 0.96)),
        linear-gradient(135deg, #fff0b4, #ffd477);
    border: 2px solid #d69b38;
    box-shadow: 0 16px 34px rgba(51, 4, 1, 0.28);
}

.festival-body .pay-card h1,
.festival-body .state-card h1,
.festival-body .report-cover h1,
.festival-body .report-section h2,
.festival-body .lucky-panel h2,
.festival-body .suggestion-panel h2 {
    color: #b81208;
    font-family: Georgia, "Songti SC", serif;
}

.festival-body .pay-card p,
.festival-body .state-card p,
.festival-body .report-section p,
.festival-body .report-disclaimer,
.festival-body .report-footer-note p,
.festival-body .suggestion-panel li {
    color: #6d2e13;
}

.festival-body .order-summary div,
.festival-body .lucky-grid div {
    background: #fff8df;
    border-color: #e0a44d;
}

.festival-body .order-summary dt,
.festival-body .detail-grid span,
.festival-body .status-row span {
    color: #8a4a1f;
}

.festival-body .order-summary dd,
.festival-body .score-ring span,
.festival-body .template-card-footer strong {
    color: #b81208;
}

.festival-body .score-ring {
    background: #fff2bd;
    border-color: #d69b38;
}

.festival-body .section-score {
    color: #fff6c8;
    background: linear-gradient(180deg, #d7190d, #820703);
    border: 2px solid #ffd56a;
}

/* Premium phone shell */
.phone-mock {
    border: 0;
    padding: 9px;
    border-radius: 38px;
    background:
        linear-gradient(145deg, #3a3b3f 0%, #111216 22%, #050507 52%, #2c2d31 76%, #070709 100%);
    box-shadow:
        0 26px 42px rgba(38, 0, 0, 0.42),
        0 6px 14px rgba(255, 218, 130, 0.16),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.72);
}

.phone-mock::before {
    content: "";
    position: absolute;
    inset: 3px;
    z-index: 1;
    pointer-events: none;
    border-radius: 34px;
    border: 1px solid rgba(255, 235, 184, 0.2);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.8),
        inset 0 0 22px rgba(255, 255, 255, 0.05);
}

.phone-mock::after {
    content: "";
    position: absolute;
    left: -3px;
    top: 104px;
    width: 3px;
    height: 62px;
    border-radius: 999px;
    background: linear-gradient(180deg, #3b3c40, #0a0b0d);
    box-shadow: 0 92px 0 #141519;
}

.phone-main {
    box-shadow:
        0 28px 48px rgba(39, 0, 0, 0.5),
        0 0 0 1px rgba(255, 219, 139, 0.22),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.phone-main::after {
    right: -3px;
    left: auto;
    top: 132px;
    height: 86px;
    box-shadow: none;
}

.phone-notch {
    top: 18px;
    width: 88px;
    height: 24px;
    border-radius: 999px;
    background: #030407;
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.06);
}

.phone-screen {
    z-index: 0;
    border: 1px solid rgba(255, 231, 165, 0.12);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.45),
        inset 0 18px 34px rgba(255, 255, 255, 0.03);
}

@media (max-width: 760px) {
    .phone-mock,
    .phone-main {
        border: 0;
        padding: 8px;
        border-radius: 36px;
    }

    .phone-mock::before {
        border-radius: 32px;
    }

    .phone-notch {
        top: 16px;
    }
}

/* Polished festival redesign overrides */
.festival-body {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 220, 134, 0.26), transparent 18rem),
        radial-gradient(circle at 6% 28%, rgba(255, 198, 96, 0.16), transparent 13rem),
        radial-gradient(circle at 96% 34%, rgba(255, 198, 96, 0.16), transparent 13rem),
        linear-gradient(180deg, #7d0603 0%, #c7190d 34%, #ed4823 64%, #7f0a05 100%);
}

.festival-body .site-header {
    min-height: 58px;
    padding: 12px clamp(18px, 4vw, 52px);
    background: rgba(92, 7, 4, 0.88);
}

.festival-hero {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 24px;
}

.festival-title {
    width: min(980px, 100%);
    margin-bottom: 18px;
    padding: 0 18px;
}

.festival-title p {
    font-size: clamp(15px, 2vw, 20px);
    letter-spacing: 0;
}

.festival-title h1 {
    font-size: clamp(42px, 8vw, 86px);
    line-height: 1.02;
    text-shadow:
        0 2px 0 #9b4a11,
        0 5px 0 rgba(88, 7, 3, 0.7),
        0 12px 22px rgba(58, 0, 0, 0.38);
}

.ribbon {
    min-height: 48px;
    margin-top: 10px;
    padding: 0 clamp(24px, 6vw, 68px);
    border-radius: 12px;
    font-size: clamp(19px, 3vw, 32px);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.35),
        0 8px 22px rgba(73, 4, 2, 0.28);
}

.phone-stage {
    grid-template-columns: minmax(220px, 0.86fr) minmax(290px, 1fr) minmax(220px, 0.86fr);
    gap: clamp(18px, 2.4vw, 28px);
    width: min(1060px, 100%);
}

.phone-mock {
    width: min(100%, 318px);
    margin: 0 auto;
    border-width: 6px;
    border-radius: 34px;
    padding: 7px;
    background:
        linear-gradient(135deg, #080808, #34302b 42%, #050505);
    box-shadow:
        0 18px 34px rgba(38, 0, 0, 0.42),
        0 0 0 2px #e1af4e,
        0 0 0 5px rgba(255, 226, 144, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.phone-main {
    width: min(100%, 348px);
    transform: translateY(4px);
}

.phone-side {
    transform: translateY(20px) scale(0.96);
}

.phone-notch {
    top: 10px;
    width: 96px;
    height: 22px;
    border-radius: 0 0 14px 14px;
}

.phone-screen {
    min-height: 500px;
    padding: 48px 16px 18px;
    border-radius: 25px;
    background:
        radial-gradient(circle at 50% 10%, rgba(255, 212, 111, 0.22), transparent 10rem),
        linear-gradient(180deg, #9f271c 0%, #64130e 100%);
}

.phone-screen::before {
    left: 18px;
    top: 15px;
    font-size: 12px;
}

.phone-screen::after {
    right: 18px;
    top: 19px;
}

.pay-preview > p {
    margin-bottom: 12px;
    color: #fff2be;
    font-size: 15px;
    letter-spacing: 0;
}

.tab-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 12px;
}

.tab-strip span {
    min-height: 62px;
    padding: 6px 4px;
    writing-mode: initial;
    border-radius: 8px;
    color: #9d160c;
    background: linear-gradient(180deg, #fff4c8 0%, #ffd777 100%);
    border: 1px solid rgba(145, 75, 12, 0.36);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 4px 8px rgba(72, 9, 3, 0.16);
    font-size: 12px;
    line-height: 1.25;
}

.gold-panel,
.info-box {
    margin-bottom: 12px;
    padding: 13px 14px;
    border-width: 2px;
    border-color: #d69b38;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff5d0 0%, #ffe09a 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 5px 10px rgba(76, 10, 3, 0.14);
}

.gold-panel strong {
    color: #bc1a10;
    font-size: 16px;
    line-height: 1.35;
}

.gold-panel p {
    margin-top: 8px;
    color: #693016;
    font-size: 14px;
    line-height: 1.65;
}

.info-box {
    gap: 5px;
    color: #4e2514;
    font-size: 15px;
    line-height: 1.65;
}

.countdown {
    margin: 10px 0 12px;
    color: #fff3bf;
    font-size: 15px;
}

.countdown span {
    color: #ffe681;
    font-size: 23px;
    letter-spacing: 1px;
}

.wechat-btn,
.alipay-btn {
    min-height: 44px;
    margin-bottom: 10px;
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 8px 14px rgba(39, 4, 1, 0.22);
}

.wechat-btn {
    background: linear-gradient(180deg, #24c86a 0%, #10a743 100%);
}

.alipay-btn {
    background: linear-gradient(180deg, #42c8ff 0%, #168fe0 100%);
}

.benefit-bar {
    width: min(1000px, 100%);
    margin-top: 28px;
    padding: 16px 18px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 243, 196, 0.96), rgba(255, 216, 137, 0.95));
    border: 2px solid rgba(199, 115, 24, 0.42);
    box-shadow: 0 12px 30px rgba(78, 5, 1, 0.24);
}

.benefit-bar div {
    min-width: 0;
}

.benefit-bar strong {
    font-size: 18px;
}

.festival-cta {
    min-height: 58px;
    margin-top: 16px;
    border-radius: 12px;
    font-size: clamp(22px, 3.4vw, 34px);
}

.festival-templates {
    padding-top: 54px;
    background:
        linear-gradient(180deg, rgba(255, 225, 158, 0.98) 0 126px, #7a0b05 126px, #2d0503 100%);
}

.festival-templates .template-card {
    min-height: 236px;
    border-width: 2px;
    border-radius: 8px;
}

@media (max-width: 760px) {
    .festival-body .site-header {
        min-height: 52px;
    }

    .festival-hero {
        min-height: auto;
        padding: 18px 14px 28px;
    }

    .festival-title {
        padding: 0;
        margin-bottom: 16px;
    }

    .festival-title p {
        font-size: 15px;
    }

    .festival-title h1 {
        white-space: nowrap;
        font-size: clamp(34px, 8vw, 44px);
        text-shadow:
            0 2px 0 #9b4a11,
            0 5px 0 rgba(88, 7, 3, 0.64),
            0 9px 16px rgba(58, 0, 0, 0.32);
    }

    .ribbon {
        width: min(360px, 100%);
        min-height: 42px;
        padding: 0 14px;
        font-size: clamp(18px, 5vw, 24px);
    }

    .phone-stage {
        grid-template-columns: 1fr;
        width: min(344px, calc(100vw - 42px));
    }

    .phone-mock,
    .phone-main {
        width: 100%;
        border-width: 5px;
        border-radius: 31px;
        padding: 6px;
    }

    .phone-screen {
        min-height: 438px;
        padding: 42px 13px 14px;
        border-radius: 23px;
    }

    .tab-strip span {
        min-height: 44px;
        font-size: 12px;
    }

    .gold-panel,
    .info-box {
        padding: 10px 12px;
    }

    .gold-panel p,
    .info-box {
        font-size: 13px;
    }

    .gold-panel strong {
        font-size: 15px;
    }

    .countdown span {
        font-size: 20px;
    }

    .wechat-btn,
    .alipay-btn {
        min-height: 40px;
        margin-bottom: 8px;
    }

    .benefit-bar {
        width: min(360px, 100%);
        padding: 12px;
        gap: 8px;
    }

    .festival-cta {
        width: min(360px, 100%);
        min-height: 50px;
        margin-top: 14px;
        padding: 0 14px;
        font-size: 20px;
    }
}

/* Final phone-frame override: keep this at the end. */
.phone-mock {
    border: 0 !important;
    padding: 9px !important;
    border-radius: 38px !important;
    background:
        linear-gradient(145deg, #3a3b3f 0%, #111216 22%, #050507 52%, #2c2d31 76%, #070709 100%) !important;
    box-shadow:
        0 26px 42px rgba(38, 0, 0, 0.42),
        0 6px 14px rgba(255, 218, 130, 0.16),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.72) !important;
}

.phone-mock::before {
    content: "";
    position: absolute;
    inset: 3px;
    z-index: 1;
    pointer-events: none;
    border-radius: 34px;
    border: 1px solid rgba(255, 235, 184, 0.2);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.82),
        inset 0 0 22px rgba(255, 255, 255, 0.05);
}

.phone-mock::after {
    content: "";
    position: absolute;
    left: -3px;
    top: 104px;
    width: 3px;
    height: 62px;
    border-radius: 999px;
    background: linear-gradient(180deg, #3b3c40, #0a0b0d);
    box-shadow: 0 92px 0 #141519;
}

.phone-main::after {
    right: -3px;
    left: auto;
    top: 132px;
    height: 86px;
    box-shadow: none;
}

.phone-notch {
    top: 18px !important;
    width: 88px !important;
    height: 24px !important;
    border-radius: 999px !important;
    background: #030407 !important;
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.phone-screen {
    border: 1px solid rgba(255, 231, 165, 0.12);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.45),
        inset 0 18px 34px rgba(255, 255, 255, 0.03);
}

@media (max-width: 760px) {
    .phone-mock,
    .phone-main {
        padding: 8px !important;
        border-radius: 36px !important;
    }

    .phone-mock::before {
        border-radius: 32px;
    }

    .phone-notch {
        top: 16px !important;
    }
}

/* Comfort pass: slimmer mobile hero phone. */
@media (max-width: 760px) {
    .festival-title {
        margin-bottom: 14px;
    }

    .festival-title h1 {
        font-size: clamp(31px, 7.3vw, 39px);
    }

    .ribbon {
        width: min(328px, 100%);
        min-height: 38px;
        font-size: clamp(17px, 4.5vw, 21px);
    }

    .phone-stage {
        width: min(292px, calc(100vw - 92px));
        margin-top: 12px;
    }

    .phone-mock,
    .phone-main {
        padding: 7px !important;
        border-radius: 32px !important;
    }

    .phone-mock::before {
        border-radius: 29px;
    }

    .phone-screen {
        min-height: 404px;
        padding: 38px 11px 12px;
        border-radius: 21px;
    }

    .phone-notch {
        top: 14px !important;
        width: 74px !important;
        height: 20px !important;
    }

    .phone-screen::before {
        left: 15px;
        top: 14px;
        font-size: 11px;
    }

    .phone-screen::after {
        right: 15px;
        top: 18px;
        transform: scale(0.82);
        transform-origin: right center;
    }

    .pay-preview > p {
        margin-bottom: 9px;
        font-size: 13px;
    }

    .tab-strip {
        gap: 5px;
        margin-bottom: 9px;
    }

    .tab-strip span {
        min-height: 38px;
        padding: 5px 3px;
        font-size: 10px;
        line-height: 1.2;
    }

    .gold-panel,
    .info-box {
        margin-bottom: 9px;
        padding: 9px 10px;
    }

    .gold-panel strong {
        font-size: 14px;
    }

    .gold-panel p,
    .info-box {
        font-size: 12px;
        line-height: 1.55;
    }

    .countdown {
        margin: 8px 0 9px;
        font-size: 13px;
    }

    .countdown span {
        font-size: 18px;
    }

    .wechat-btn,
    .alipay-btn {
        min-height: 36px;
        margin-bottom: 7px;
        font-size: 14px;
    }

    .benefit-bar,
    .festival-cta {
        width: min(328px, calc(100vw - 42px));
    }
}

/* Premium clean homepage redesign */
.festival-body {
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 210, 124, 0.18), transparent 18rem),
        radial-gradient(circle at 82% 4%, rgba(255, 180, 92, 0.14), transparent 18rem),
        linear-gradient(180deg, #640704 0%, #9d0e08 42%, #4c0503 100%);
}

.premium-home {
    position: relative;
    z-index: 1;
    color: #fff6d7;
    overflow: hidden;
}

.premium-home::before {
    content: "";
    position: fixed;
    inset: 52px 0 auto;
    height: 520px;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0 8%, rgba(255, 212, 115, 0.08) 8% 8.2%, transparent 8.2% 91.8%, rgba(255, 212, 115, 0.08) 92% 92.2%, transparent 92.2%),
        radial-gradient(circle at 50% 12%, rgba(255, 232, 166, 0.16), transparent 20rem);
}

.premium-hero {
    padding: clamp(28px, 5vw, 64px) clamp(18px, 4vw, 56px) 34px;
}

.premium-shell {
    width: min(1080px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
    align-items: center;
    gap: clamp(24px, 5vw, 58px);
}

.premium-kicker {
    width: fit-content;
    margin: 0 0 16px;
    padding: 7px 13px;
    border-radius: 999px;
    color: #7d1807;
    background: linear-gradient(180deg, #fff5c6, #f5c768);
    font-size: 13px;
    font-weight: 900;
}

.premium-copy h1 {
    max-width: 720px;
    margin: 0;
    color: #ffd86f;
    font-family: Georgia, "Songti SC", "STSong", serif;
    font-size: clamp(44px, 7vw, 88px);
    line-height: 1.04;
    letter-spacing: 0;
    text-shadow: 0 2px 0 #8d3a09, 0 8px 22px rgba(40, 0, 0, 0.35);
}

.premium-lead {
    max-width: 610px;
    margin: 18px 0 0;
    color: #ffe7ad;
    font-size: 18px;
    line-height: 1.85;
}

.premium-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.premium-primary,
.premium-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 8px;
    font-weight: 900;
}

.premium-primary {
    color: #6e1506;
    background: linear-gradient(180deg, #fff3b4 0%, #ffd05d 54%, #eaa735 100%);
    box-shadow: 0 10px 22px rgba(77, 3, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.premium-secondary {
    color: #fff0bc;
    border: 1px solid rgba(255, 216, 128, 0.5);
    background: rgba(255, 255, 255, 0.07);
}

.premium-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 520px;
    margin-top: 30px;
}

.premium-trust div {
    padding: 13px 14px;
    border-radius: 8px;
    background: rgba(255, 243, 207, 0.09);
    border: 1px solid rgba(255, 225, 150, 0.2);
}

.premium-trust strong {
    display: block;
    color: #ffd86f;
    font-size: 20px;
}

.premium-trust span {
    color: #ffdf9f;
    font-size: 13px;
}

.premium-report-card {
    position: relative;
    min-height: 520px;
    padding: 24px;
    border-radius: 8px;
    color: #5c210a;
    background:
        linear-gradient(180deg, rgba(255, 252, 234, 0.92), rgba(255, 224, 145, 0.96)),
        linear-gradient(135deg, #fff4c4, #f4b64d);
    border: 1px solid rgba(255, 230, 160, 0.78);
    box-shadow: 0 28px 70px rgba(44, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    overflow: hidden;
}

.premium-report-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 8px;
    border: 1px solid rgba(169, 78, 14, 0.18);
    pointer-events: none;
}

.premium-report-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #9c2b0e;
    font-weight: 900;
}

.premium-report-top span {
    font-size: 12px;
    letter-spacing: 0.08em;
}

.premium-report-top strong {
    color: #c21b10;
    font-size: 28px;
}

.premium-orbit {
    position: relative;
    z-index: 1;
    width: 210px;
    aspect-ratio: 1;
    margin: 26px auto 24px;
    display: grid;
    place-items: center;
}

.premium-orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        repeating-conic-gradient(from -10deg, #b5150b 0 16deg, #fff1bc 16deg 32deg),
        radial-gradient(circle, transparent 0 48%, rgba(122, 18, 6, 0.08) 49%);
    border: 10px solid #d89b32;
    box-shadow: inset 0 0 0 8px #fff3bf, 0 16px 28px rgba(121, 25, 5, 0.18);
}

.premium-orbit-core {
    position: relative;
    z-index: 2;
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff7d0;
    background: linear-gradient(180deg, #d42012, #7b0803);
    border: 4px solid #ffd368;
    font-size: 48px;
    font-weight: 900;
    font-family: Georgia, "Songti SC", serif;
}

.premium-panel {
    position: relative;
    z-index: 1;
    padding: 16px;
    border-radius: 8px;
    background: #fff8df;
    border: 1px solid rgba(183, 94, 24, 0.28);
}

.premium-panel p {
    margin: 0;
    color: #b21a0e;
    font-weight: 900;
}

.premium-panel h2 {
    margin: 4px 0 8px;
    color: #7b1d09;
    font-size: 28px;
}

.premium-panel span {
    color: #76401e;
    line-height: 1.7;
}

.premium-score-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 14px;
}

.premium-score-grid div {
    min-height: 64px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #7a260d;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(190, 104, 28, 0.18);
}

.premium-score-grid span {
    font-size: 12px;
}

.premium-score-grid strong {
    color: #c21b10;
    font-size: 22px;
}

.premium-benefits {
    width: min(1080px, calc(100% - 36px));
    margin: 0 auto 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.premium-benefits div,
.premium-template-card {
    border-radius: 8px;
    background: rgba(255, 244, 213, 0.1);
    border: 1px solid rgba(255, 226, 155, 0.2);
    box-shadow: 0 16px 34px rgba(42, 0, 0, 0.16);
}

.premium-benefits div {
    padding: 18px;
}

.premium-benefits span {
    color: #ffd86f;
    font-weight: 900;
}

.premium-benefits strong {
    display: block;
    margin: 8px 0 5px;
    color: #fff3c4;
    font-size: 20px;
}

.premium-benefits p {
    margin: 0;
    color: #ffdca0;
    line-height: 1.65;
}

.premium-template-section {
    padding: 48px clamp(18px, 4vw, 56px) 72px;
    background: linear-gradient(180deg, rgba(255, 232, 164, 0.95) 0 150px, #4c0503 150px 100%);
}

.premium-section-head {
    text-align: center;
    margin-bottom: 26px;
}

.premium-section-head p {
    margin: 0;
    color: #9e170b;
    font-weight: 900;
}

.premium-section-head h2 {
    margin: 6px 0 0;
    color: #7c1608;
    font-size: clamp(34px, 5vw, 52px);
    font-family: Georgia, "Songti SC", serif;
}

.premium-template-grid {
    width: min(1080px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.premium-template-card {
    min-height: 244px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    color: #64240c;
    background: linear-gradient(180deg, #fff6d4, #ffd985);
    border-color: rgba(210, 146, 45, 0.62);
}

.premium-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff5c5;
    background: linear-gradient(180deg, #ca1c10, #780803);
    border: 2px solid #ffd56a;
    font-weight: 900;
}

.premium-template-card p {
    margin: 14px 0 6px;
    color: #b51a0e;
    font-weight: 900;
}

.premium-template-card h3 {
    margin: 0 0 10px;
    color: #7e1d08;
    font-size: 25px;
}

.premium-template-card > span {
    color: #72401d;
    line-height: 1.7;
}

.premium-card-foot {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.premium-card-foot strong {
    color: #bd1a0e;
    font-size: 24px;
}

.premium-card-foot a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 8px;
    color: #711606;
    background: linear-gradient(180deg, #fff4b7, #f1b638);
    font-weight: 900;
}

@media (max-width: 900px) {
    .premium-shell {
        grid-template-columns: 1fr;
    }

    .premium-report-card {
        width: min(440px, 100%);
        min-height: auto;
        margin: 0 auto;
    }

    .premium-benefits,
    .premium-template-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .premium-hero {
        padding: 24px 18px 28px;
    }

    .premium-copy h1 {
        font-size: 42px;
    }

    .premium-lead {
        font-size: 15px;
        line-height: 1.75;
    }

    .premium-actions {
        margin-top: 22px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .premium-primary,
    .premium-secondary {
        width: 100%;
    }

    .premium-trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 16px;
    }

    .premium-trust div {
        min-height: 66px;
        padding: 10px 6px;
        text-align: center;
    }

    .premium-trust strong {
        font-size: 18px;
    }

    .premium-trust span {
        font-size: 11px;
        line-height: 1.25;
    }

    .premium-report-card {
        padding: 18px;
    }

    .premium-orbit {
        width: 168px;
        margin: 20px auto;
    }

    .premium-orbit-core {
        width: 78px;
        height: 78px;
        font-size: 40px;
    }

    .premium-score-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-benefits {
        margin-bottom: 30px;
    }

    .premium-template-section {
        padding: 36px 18px 56px;
        background: linear-gradient(180deg, rgba(255, 232, 164, 0.95) 0 118px, #4c0503 118px 100%);
    }
}

@media (max-width: 430px) {
    .premium-actions {
        grid-template-columns: 1fr;
    }
}

/* Animated report-card effect replacing the old zodiac icon */
.aura-orbit {
    isolation: isolate;
}

.premium-report-card .aura-orbit {
    width: 216px;
    margin: 24px auto 24px;
}

.aura-orbit::before {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 247, 204, 0.94) 0 12%, rgba(255, 212, 101, 0.44) 13% 28%, rgba(195, 26, 14, 0.12) 29% 52%, transparent 53%),
        conic-gradient(from 0deg, transparent 0 18deg, rgba(255, 218, 104, 0.85) 19deg 24deg, transparent 25deg 58deg, rgba(190, 26, 15, 0.72) 59deg 66deg, transparent 67deg 360deg);
    filter: drop-shadow(0 14px 24px rgba(142, 38, 8, 0.24));
    animation: auraSpin 18s linear infinite;
}

.aura-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.aura-ring-one {
    inset: 0;
    border: 2px solid rgba(194, 122, 33, 0.42);
    background:
        radial-gradient(circle at 50% 50%, transparent 0 56%, rgba(255, 225, 126, 0.28) 57% 58%, transparent 59%),
        conic-gradient(from 120deg, rgba(255, 255, 255, 0), rgba(255, 217, 97, 0.72), rgba(255, 255, 255, 0) 34%, rgba(188, 25, 14, 0.4), rgba(255, 255, 255, 0) 68%);
    box-shadow: inset 0 0 28px rgba(255, 202, 91, 0.26), 0 18px 34px rgba(134, 31, 8, 0.16);
    animation: auraSpin 14s linear infinite;
}

.aura-ring-two {
    inset: 30px;
    border: 12px solid rgba(186, 128, 47, 0.24);
    background:
        repeating-conic-gradient(from -12deg, rgba(190, 24, 13, 0.88) 0 10deg, transparent 10deg 22deg),
        radial-gradient(circle, rgba(255, 244, 192, 0.72), rgba(255, 225, 137, 0.2));
    animation: auraSpinReverse 22s linear infinite;
}

.aura-sweep {
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0 72%, rgba(255, 255, 255, 0.72), rgba(255, 222, 111, 0.58), transparent 86% 100%);
    mix-blend-mode: screen;
    animation: auraSpin 5.8s linear infinite;
}

.aura-core {
    position: absolute;
    inset: 66px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 36% 28%, #fff9ce 0 12%, #ffd86e 13% 34%, #d9992f 35% 54%, #8e1c0a 55% 100%);
    border: 3px solid rgba(255, 240, 174, 0.92);
    box-shadow:
        0 0 0 8px rgba(255, 215, 108, 0.22),
        0 0 38px rgba(255, 201, 87, 0.78),
        inset 0 2px 8px rgba(255, 255, 255, 0.45);
    animation: auraPulse 2.8s ease-in-out infinite;
}

.aura-core span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff8d2;
    box-shadow:
        0 0 22px rgba(255, 255, 255, 0.96),
        0 0 42px rgba(255, 219, 92, 0.92);
}

.aura-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff5ba;
    box-shadow: 0 0 16px rgba(255, 233, 141, 0.94);
}

.dot-one {
    left: 26px;
    top: 70px;
    animation: auraFloat 3.4s ease-in-out infinite;
}

.dot-two {
    right: 32px;
    top: 56px;
    animation: auraFloat 3.8s ease-in-out 0.4s infinite;
}

.dot-three {
    right: 54px;
    bottom: 32px;
    animation: auraFloat 3.2s ease-in-out 0.8s infinite;
}

@keyframes auraSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes auraSpinReverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes auraPulse {
    0%, 100% {
        transform: scale(0.96);
    }
    50% {
        transform: scale(1.04);
    }
}

@keyframes auraFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.62;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .premium-report-card .aura-orbit {
        width: 172px;
    }

    .aura-ring-two {
        inset: 24px;
        border-width: 10px;
    }

    .aura-core {
        inset: 54px;
    }
}
