@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Kanit:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #05070b;
    --bg-2: #080d13;
    --panel: #111722;
    --panel-2: #161d2a;
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(240, 185, 11, 0.42);
    --gold: #f0b90b;
    --gold-2: #fcd535;
    --green: #08b891;
    --red: #f23645;
    --text: #f2f5f9;
    --muted: #a7b0bf;
    --soft: #6f7a8a;
    --shadow: 0 24px 90px rgba(0, 0, 0, 0.5);
    --radius: 8px;
    --radius-sm: 8px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-color: rgba(252, 213, 53, 0.78) rgba(5, 7, 11, 0.86);
    scrollbar-width: thin;
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: rgba(5, 7, 11, 0.86);
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
    border: 2px solid rgba(5, 7, 11, 0.86);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

*::-webkit-scrollbar-corner {
    background: rgba(5, 7, 11, 0.86);
}

input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #05070b 0%, #070b10 46%, #080a0d 100%);
    color: var(--text);
    font-family: Inter, Kanit, system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 75%);
    opacity: 0.55;
    z-index: -1;
}

img {
    max-width: 100%;
    display: block;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1rem clamp(1rem, 3vw, 2.5rem);
    background: rgba(5, 7, 11, 0.82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: fit-content;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #090b0f;
    font-weight: 900;
    letter-spacing: 0;
    box-shadow: 0 0 28px rgba(240, 185, 11, 0.32);
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 1rem;
    letter-spacing: 0;
}

.brand-text small {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.72rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.2vw, 2rem);
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 600;
}

.desktop-nav a {
    position: relative;
    padding: 0.45rem 0;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--text);
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.auth-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 900;
}

.auth-link:hover,
.auth-link.register {
    border-color: rgba(240, 185, 11, 0.5);
    color: var(--gold-2);
    background: rgba(240, 185, 11, 0.08);
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 46px;
    border-radius: 8px;
    font-weight: 800;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-cta,
.btn.primary {
    border: 1px solid rgba(252, 213, 53, 0.7);
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #080a0d;
    box-shadow: 0 14px 40px rgba(240, 185, 11, 0.22);
}

.header-cta {
    padding: 0 1.2rem;
    font-size: 0.92rem;
}

.btn {
    padding: 0.95rem 1.35rem;
    font-size: 1rem;
    max-width: 100%;
    text-align: center;
}

.btn.secondary {
    color: var(--text);
    border: 1px solid rgba(8, 184, 145, 0.6);
    background: rgba(8, 184, 145, 0.08);
}

.header-cta:hover,
.btn:hover {
    transform: translateY(-2px);
}

.btn.secondary:hover {
    border-color: var(--green);
    box-shadow: 0 14px 38px rgba(8, 184, 145, 0.12);
}

.btn.is-disabled {
    cursor: not-allowed;
    opacity: 0.42;
    transform: none;
    box-shadow: none;
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 1.1rem;
}

.mobile-nav {
    display: none;
    position: sticky;
    top: 75px;
    z-index: 45;
    padding: 0.75rem 1rem 1rem;
    background: rgba(5, 7, 11, 0.96);
    border-bottom: 1px solid var(--line);
}

.mobile-nav a {
    display: block;
    padding: 0.8rem 0.2rem;
    color: var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-shell {
    width: min(var(--max), calc(100% - 2rem));
    margin: 0 auto;
}

.hero {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    padding: clamp(3rem, 6vw, 5.25rem) 0 4rem;
}

.hero-copy,
.hero-product {
    min-width: 0;
}

.label {
    color: var(--gold);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.label-xl {
    font-size: clamp(1.1rem, 1.75vw, 1.4rem);
    line-height: 1.12;
    text-transform: none;
}

.label.danger {
    color: var(--red);
}

.label.success {
    color: var(--green);
}

h1,
h2,
h3 {
    font-family: Kanit, Inter, sans-serif;
    line-height: 1.08;
}

h1 {
    margin-top: 1.1rem;
    font-size: clamp(3rem, 6.2vw, 5.45rem);
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

h1 span {
    display: block;
}

h1::first-line {
    color: var(--gold-2);
}

.hero-lead {
    max-width: 610px;
    margin-top: 1.4rem;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    overflow-wrap: anywhere;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 2.3rem;
}

.hero-points div {
    min-height: 126px;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.hero-points i {
    color: var(--gold);
    font-size: 1.5rem;
}

.hero-points strong,
.hero-points span {
    display: block;
}

.hero-points strong {
    margin-top: 0.7rem;
    font-size: 0.95rem;
}

.hero-points span {
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.hero-product {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(360px, 48vw, 560px);
    isolation: isolate;
}

.hero-product img {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    max-height: 560px;
    object-fit: contain;
    filter: drop-shadow(0 38px 80px rgba(0, 0, 0, 0.72));
}

.product-glow {
    position: absolute;
    inset: 12% 4% 4%;
    z-index: 0;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.24), rgba(8, 184, 145, 0.08), transparent 68%);
    filter: blur(54px);
    opacity: 0.9;
}

.problem-band,
.features,
.faq {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
    border-top: 1px solid var(--line);
}

.solution,
.examples,
.access {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.plans {
    padding: 0 0 clamp(3.5rem, 7vw, 6rem);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 2rem;
}

.section-heading.split {
    max-width: none;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: end;
}

.section-heading h2 {
    margin-top: 0.65rem;
    font-size: clamp(2rem, 4vw, 3.6rem);
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.section-heading p:not(.label) {
    color: var(--muted);
    font-size: 1.05rem;
}

.problem-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 410px;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(17, 23, 34, 0.94), rgba(8, 13, 19, 0.92));
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.plan-card.featured {
    border-color: var(--line-strong);
    box-shadow: var(--shadow), 0 0 0 1px rgba(240, 185, 11, 0.12) inset;
}

.plan-kicker {
    color: var(--gold);
    font-weight: 800;
}

.plan-card h3 {
    margin-top: 0.7rem;
    font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.price {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.25rem 0.75rem;
    align-items: end;
    margin-top: 0.85rem;
    padding: 0.85rem 0 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-old {
    grid-column: 1 / -1;
    width: fit-content;
    color: #8791a2;
    font-size: 0.92rem;
    font-weight: 900;
    text-decoration: line-through;
    text-decoration-color: var(--red);
    text-decoration-thickness: 2px;
}

.price strong {
    color: var(--gold-2);
    font-size: clamp(2.9rem, 4.7vw, 4.25rem);
    line-height: 0.92;
    text-shadow: 0 0 30px rgba(252, 213, 53, 0.24);
}

.price-unit {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 900;
    align-self: center;
}

.save-badge {
    grid-column: 1 / -1;
    width: fit-content;
    margin-top: 0.35rem;
    padding: 0.28rem 0.62rem;
    border: 1px solid rgba(8, 184, 145, 0.55);
    border-radius: 999px;
    background: rgba(8, 184, 145, 0.12);
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 900;
}

.plan-card p {
    min-height: 3.3rem;
    margin-top: 0.65rem;
    color: var(--muted);
}

.plan-card ul {
    display: grid;
    gap: 0.8rem;
    margin: 1.3rem 0 1.6rem;
    list-style: none;
}

.plan-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--text);
}

.plan-card li i {
    margin-top: 0.25rem;
    color: var(--gold);
}

.plan-card .btn {
    margin-top: auto;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: var(--gold-2);
    color: #080a0d;
    font-size: 0.78rem;
    font-weight: 900;
}

.plan-note {
    margin-top: 1rem;
    color: var(--soft);
    font-size: 0.88rem;
    text-align: center;
}

.problem-grid article,
.feature-grid article,
.workflow-grid article,
.example-grid article,
.faq details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 23, 34, 0.82);
    box-shadow: 0 12px 42px rgba(0, 0, 0, 0.18);
}

.problem-grid article,
.feature-grid article {
    padding: 1.25rem;
}

.problem-grid i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 8px;
    color: var(--red);
    background: rgba(242, 54, 69, 0.12);
}

.feature-grid i {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
    border-radius: 8px;
    color: var(--gold);
    background: rgba(240, 185, 11, 0.1);
    font-size: 1.35rem;
}

.problem-grid h3,
.feature-grid h3,
.workflow-grid h3,
.example-grid h3 {
    font-size: 1.25rem;
}

.problem-grid p,
.feature-grid p,
.workflow-grid p,
.example-grid p {
    margin-top: 0.65rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 0.8fr;
    gap: 1rem;
}

.workflow-grid article {
    position: relative;
    overflow: hidden;
    padding: 1rem;
}

.workflow-grid img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
    margin-bottom: 1rem;
}

.step {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #05070b;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-weight: 900;
}

.result-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-color: var(--line-strong) !important;
    background: linear-gradient(180deg, rgba(240, 185, 11, 0.12), rgba(17, 23, 34, 0.8)) !important;
}

.result-card i {
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.text-link {
    justify-self: end;
    color: var(--gold);
    font-weight: 800;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.example-grid article {
    overflow: hidden;
}

.example-grid img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
}

.example-grid h3,
.example-grid p {
    padding-left: 1rem;
    padding-right: 1rem;
}

.example-grid h3 {
    padding-top: 1rem;
}

.example-grid p {
    padding-bottom: 1.2rem;
}

.product-box {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(17, 23, 34, 0.95), rgba(8, 13, 19, 0.96));
    box-shadow: var(--shadow);
}

.box-art img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(240, 185, 11, 0.34);
}

.access-copy h2 {
    margin-top: 0.6rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.access-copy > p:not(.label):not(.risk-note) {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.check-list {
    display: grid;
    gap: 0.7rem;
    margin: 1.5rem 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
}

.check-list i {
    color: var(--gold);
}

.access-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.risk-note {
    margin-top: 1rem;
    color: var(--soft);
    font-size: 0.86rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.faq details {
    padding: 1.1rem 1.2rem;
}

.faq summary {
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

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

.faq summary::after {
    content: "+";
    float: right;
    color: var(--gold);
}

.faq details[open] summary::after {
    content: "−";
}

.faq p {
    margin-top: 0.8rem;
    color: var(--muted);
}

.checkout-main {
    padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.checkout-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: end;
    padding: clamp(3rem, 6vw, 5.25rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.checkout-copy,
.checkout-summary {
    min-width: 0;
    overflow-wrap: anywhere;
}

.checkout-summary,
.checkout-panel,
.checkout-form-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(17, 23, 34, 0.94), rgba(8, 13, 19, 0.92));
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.checkout-summary {
    padding: clamp(1.25rem, 3vw, 2rem);
    border-color: var(--line-strong);
}

.summary-label {
    color: var(--gold);
    font-weight: 900;
}

.checkout-summary h2 {
    margin-top: 0.8rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.checkout-summary p {
    margin-top: 0.8rem;
    color: var(--muted);
}

.summary-price {
    margin-top: 1.2rem;
    color: var(--gold-2);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 1rem;
}

.checkout-panel,
.checkout-form-card {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.checkout-plan-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.checkout-plan {
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.checkout-plan:hover,
.checkout-plan.is-selected {
    border-color: var(--line-strong);
    background: rgba(240, 185, 11, 0.08);
}

.checkout-plan span {
    color: var(--gold);
    font-weight: 900;
}

.checkout-plan strong {
    font-size: 1.5rem;
}

.checkout-plan small {
    color: var(--muted);
}

.steps-card {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.steps-card ol {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
    padding-left: 1.2rem;
    color: var(--muted);
}

.checkout-form {
    display: grid;
    gap: 1rem;
}

.checkout-form-card .section-heading h2 {
    font-size: clamp(2rem, 3.4vw, 3.25rem);
}

.checkout-form label {
    display: grid;
    gap: 0.45rem;
}

.checkout-form label span {
    color: var(--text);
    font-weight: 800;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 11, 0.72);
    color: var(--text);
    font: inherit;
    padding: 0.95rem 1rem;
    outline: none;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    border-color: var(--line-strong);
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.12);
}

.terms-box {
    padding: 1rem;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: rgba(240, 185, 11, 0.06);
}

.terms-check {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: flex-start;
    gap: 0.8rem !important;
}

.terms-check input {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-top: 0.2rem;
    accent-color: var(--gold);
}

.terms-check span {
    color: var(--text);
    font-weight: 800;
}

.terms-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--gold-2);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 0.22em;
}

.terms-box p {
    margin-top: 0.65rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.checkout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.payment-step {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: rgba(240, 185, 11, 0.06);
}

.payment-step.is-free .payment-method-grid,
.payment-step.is-free .slip-upload {
    display: none;
}

.payment-step-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.payment-step-head h3 {
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.2;
}

.payment-step-head strong {
    flex: 0 0 auto;
    color: var(--gold-2);
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.2;
}

.payment-method-grid {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 0.85rem;
}

.payment-qr,
.payment-bank {
    min-width: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 11, 0.55);
}

.payment-qr {
    display: grid;
    place-items: center;
    gap: 0.35rem;
    text-align: center;
}

.payment-qr i {
    color: var(--gold-2);
    font-size: 3rem;
}

.payment-qr span,
.payment-bank span {
    color: var(--gold);
    font-weight: 900;
}

.payment-bank strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1.25rem;
}

.payment-qr small,
.payment-bank small {
    color: var(--muted);
}

.slip-upload input {
    cursor: pointer;
}

.checkout-form-card.is-credit-checkout .section-heading,
.checkout-form-card.is-credit-checkout .profile-field {
    display: none;
}

.agreement-main {
    padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.agreement-cover {
    max-width: 980px;
    padding: clamp(3rem, 6vw, 5.25rem) 0 clamp(2rem, 4vw, 3rem);
}

.agreement-cover h1 {
    font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.agreement-card {
    padding: clamp(1.25rem, 4vw, 3rem);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(17, 23, 34, 0.94), rgba(8, 13, 19, 0.92));
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.agreement-card section,
.agreement-parties {
    padding-top: 1.4rem;
    margin-top: 1.4rem;
    border-top: 1px solid var(--line);
}

.agreement-card h2 {
    color: var(--gold-2);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.agreement-card p,
.agreement-card li {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.85;
}

.agreement-card p + p {
    margin-top: 0.7rem;
}

.agreement-card strong {
    color: var(--text);
}

.agreement-confirm {
    border-color: var(--line-strong) !important;
}

.agreement-confirm ul {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-left: 1.25rem;
}

.agreement-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.activation-main {
    padding: clamp(3rem, 7vw, 6rem) 0;
}

.activation-card {
    max-width: 980px;
    padding: clamp(1.25rem, 4vw, 3rem);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(17, 23, 34, 0.94), rgba(8, 13, 19, 0.92));
    box-shadow: var(--shadow);
}

.activation-card h1 span {
    display: block;
}

.activation-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 2rem;
}

.activation-summary div {
    min-width: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.activation-summary span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.activation-summary strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--gold-2);
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.activation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.wallet-main {
    padding: clamp(3rem, 7vw, 6rem) 0;
}

.wallet-card {
    padding: clamp(1.25rem, 4vw, 3rem);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(17, 23, 34, 0.94), rgba(8, 13, 19, 0.92));
    box-shadow: var(--shadow);
}

.wallet-heading {
    max-width: 820px;
}

.wallet-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.wallet-tab {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    font-weight: 900;
}

.wallet-tab.is-selected {
    border-color: var(--line-strong);
    background: rgba(240, 185, 11, 0.12);
    color: var(--gold-2);
}

.wallet-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
    gap: 1rem;
}

.wallet-form,
.promptpay-card {
    min-width: 0;
    padding: clamp(1.1rem, 3vw, 1.6rem);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.wallet-form {
    display: grid;
    gap: 1rem;
}

.wallet-form label,
.wallet-slip,
.withdraw-fields {
    display: grid;
    gap: 0.45rem;
}

.withdraw-fields {
    gap: 1rem;
}

.wallet-form label span,
.wallet-slip span {
    color: var(--text);
    font-weight: 800;
}

.wallet-form input,
.wallet-form select,
.wallet-slip input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 11, 0.72);
    color: var(--text);
    font: inherit;
    padding: 0.95rem 1rem;
    outline: none;
}

.wallet-form input[type="number"]::-webkit-outer-spin-button,
.wallet-form input[type="number"]::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.wallet-form input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.wallet-form input:focus {
    border-color: var(--line-strong);
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.12);
}

.wallet-form select:focus {
    border-color: var(--line-strong);
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.12);
}

.wallet-result {
    padding: 1rem;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: rgba(240, 185, 11, 0.08);
}

.wallet-result span {
    color: var(--muted);
    font-weight: 800;
}

.wallet-result strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--gold-2);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.promptpay-card {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 0.9rem;
    text-align: center;
}

.promptpay-frame {
    padding: 0.8rem;
    border-radius: 8px;
    background: #fff;
}

.promptpay-frame img {
    width: min(220px, 62vw);
    aspect-ratio: 1;
}

.promptpay-card strong {
    color: var(--gold-2);
    font-size: 1.8rem;
}

.promptpay-card small {
    color: var(--muted);
}

.auth-main {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.8fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    padding: clamp(3rem, 7vw, 6rem) 0;
}

.auth-copy,
.auth-card {
    min-width: 0;
}

.auth-benefits {
    display: grid;
    gap: 0.8rem;
    margin-top: 2rem;
}

.auth-benefits div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--muted);
    font-weight: 800;
}

.auth-benefits i {
    color: var(--gold);
}

.auth-card {
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(17, 23, 34, 0.94), rgba(8, 13, 19, 0.92));
    box-shadow: var(--shadow);
}

.auth-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.auth-tab {
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    text-align: center;
    font-weight: 900;
}

.auth-tab.is-active {
    border-color: var(--line-strong);
    background: rgba(240, 185, 11, 0.12);
    color: var(--gold-2);
}

.auth-form {
    display: none;
    gap: 1rem;
}

.auth-form.is-active {
    display: grid;
}

.auth-form h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.auth-form label {
    display: grid;
    gap: 0.45rem;
}

.auth-form label span {
    font-weight: 800;
}

.auth-form label small {
    color: var(--soft);
    font-size: 0.8rem;
}

.auth-form input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 11, 0.72);
    color: var(--text);
    font: inherit;
    padding: 0.95rem 1rem;
    outline: none;
}

.auth-form input:focus {
    border-color: var(--line-strong);
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.12);
}

.auth-form input[readonly] {
    color: var(--gold-2);
    border-color: rgba(240, 185, 11, 0.26);
    background: rgba(240, 185, 11, 0.07);
}

.inline-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    align-items: stretch;
}

.mini-btn {
    min-height: 100%;
    padding-inline: 1rem;
    white-space: nowrap;
}

.auth-form button.btn {
    border: 0;
}

.auth-form button.btn:disabled {
    cursor: not-allowed;
}

#register-step-1-container {
    display: grid;
    gap: 1rem;
}

#register-step-2-container {
    display: grid;
    gap: 1rem;
    animation: authStepFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.otp-info-card {
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.08), rgba(240, 185, 11, 0.02));
    padding: 1.25rem;
    box-shadow: 0 0 25px rgba(240, 185, 11, 0.05);
}

@keyframes authStepFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.99);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dashboard-main {
    padding: clamp(3rem, 7vw, 6rem) 0;
}

.dashboard-hero {
    max-width: 900px;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.dashboard-hero h1 span {
    display: block;
}

.account-status-card,
.dashboard-card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(17, 23, 34, 0.94), rgba(8, 13, 19, 0.92));
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.account-status-card {
    padding: clamp(1.25rem, 3vw, 2rem);
    border-color: var(--line-strong);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.85rem;
    border-radius: 8px;
    font-weight: 900;
    font-size: 0.9rem;
}

.status-pill.active {
    background: rgba(8, 184, 145, 0.14);
    color: #25e6bd;
    border: 1px solid rgba(8, 184, 145, 0.44);
}

.status-pill.expired {
    background: rgba(242, 54, 69, 0.14);
    color: #ff7d88;
    border: 1px solid rgba(242, 54, 69, 0.44);
}

.status-pill.pending {
    background: rgba(240, 185, 11, 0.14);
    color: var(--gold-2);
    border: 1px solid rgba(240, 185, 11, 0.44);
}

.account-status-card h2 {
    margin-top: 1rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.account-status-card p {
    margin-top: 0.35rem;
    color: var(--muted);
}

.account-status-card p strong {
    color: var(--text);
}

.renewal-note {
    width: fit-content;
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(240, 185, 11, 0.28);
    border-radius: 8px;
    background: rgba(240, 185, 11, 0.07);
}

.status-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.status-meta div {
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.status-meta span,
.dashboard-list span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.status-meta strong,
.dashboard-list strong {
    display: block;
    margin-top: 0.18rem;
    color: var(--text);
}

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

.dashboard-quick-credit {
    margin: 0 0 1rem;
}

.dashboard-card {
    padding: clamp(1.15rem, 3vw, 1.7rem);
}

.dashboard-card.wide {
    grid-column: 1 / -1;
}

.dashboard-card-head {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    margin-bottom: 1.2rem;
}

.dashboard-card-head i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #080a0d;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.dashboard-card-head h2 {
    font-size: clamp(1.45rem, 2.6vw, 2.2rem);
    line-height: 1.15;
}

.dashboard-list {
    display: grid;
    gap: 0.75rem;
    list-style: none;
}

.dashboard-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-top: 1px solid var(--line);
}

.dashboard-list.compact {
    margin-top: 1rem;
}

.account-profile-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.15rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--line);
}

.account-profile-form label {
    min-width: 0;
    display: grid;
    gap: 0.42rem;
}

.account-profile-form label span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.account-profile-form input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 11, 0.72);
    color: var(--text);
    font: inherit;
    padding: 0.82rem 0.9rem;
    outline: none;
}

.account-profile-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 11, 0.72);
    color: var(--text);
    font: inherit;
    padding: 0.82rem 0.9rem;
    outline: none;
}

.account-profile-form input:focus,
.account-profile-form select:focus {
    border-color: var(--line-strong);
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.12);
}

.account-profile-form.is-locked input,
.account-profile-form.is-locked select {
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.025);
    color: var(--muted);
}

.account-profile-actions {
    grid-column: 1 / -1;
    display: grid;
    gap: 0.65rem;
    margin-top: 0.15rem;
}

.dashboard-actions {
    display: grid;
    gap: 0.75rem;
}

.plan-actions {
    margin-top: 1.2rem;
}

.plan-panel {
    display: none;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.plan-panel.is-open {
    display: grid;
    gap: 1rem;
}

.plan-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.plan-choice {
    min-width: 0;
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.plan-choice.is-selected {
    border-color: var(--line-strong);
    background: rgba(240, 185, 11, 0.1);
}

.plan-choice span {
    color: var(--gold);
    font-weight: 900;
}

.plan-choice strong {
    font-size: 1.1rem;
    line-height: 1.2;
}

.plan-choice small {
    color: var(--muted);
}

.plan-deduct-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.plan-deduct-preview div {
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.plan-deduct-preview span {
    display: block;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.plan-deduct-preview strong {
    display: block;
    margin-top: 0.25rem;
    color: var(--gold-2);
    overflow-wrap: anywhere;
}

.credit-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    gap: 1rem;
}

.credit-balance-card,
.credit-affiliate-card {
    min-width: 0;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.credit-balance-card span,
.credit-affiliate-card > span {
    color: var(--muted);
    font-weight: 800;
}

.credit-balance-card strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--gold-2);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}

.credit-balance-card small,
.credit-affiliate-card small {
    display: block;
    margin-top: 1rem;
    color: var(--muted);
}

.credit-affiliate-card {
    display: grid;
    gap: 0.75rem;
}

.wallet-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.payment-table {
    display: grid;
    gap: 0.45rem;
}

.payment-row {
    display: grid;
    grid-template-columns: 1fr 1.35fr 0.85fr 0.85fr;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.payment-row.head {
    color: var(--soft);
    font-size: 0.86rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.015);
}

.status-text.paid {
    color: #25e6bd;
}

.status-text.pending {
    color: var(--gold-2);
}

.status-text.danger {
    color: #ff7d88;
}

.admin-main {
    padding: clamp(3rem, 7vw, 6rem) 0;
}

.admin-login-card,
.admin-dashboard {
    min-width: 0;
}

.admin-login-card {
    max-width: 760px;
    padding: clamp(1.25rem, 4vw, 3rem);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(17, 23, 34, 0.94), rgba(8, 13, 19, 0.92));
    box-shadow: var(--shadow);
}

.admin-login-form {
    display: grid;
    gap: 1rem;
    max-width: 460px;
    margin-top: 1.5rem;
}

.admin-login-form label {
    display: grid;
    gap: 0.45rem;
}

.admin-login-form span {
    color: var(--muted);
    font-weight: 800;
}

.admin-login-form input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 11, 0.72);
    color: var(--text);
    font: inherit;
    padding: 0.95rem 1rem;
    outline: none;
}

.admin-login-form input:focus {
    border-color: var(--line-strong);
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.12);
}

.admin-dashboard {
    display: none;
    gap: 1rem;
}

.admin-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.admin-hero h1 span {
    display: block;
}

.admin-metrics,
.admin-member-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.admin-metrics article,
.admin-member-grid div {
    min-width: 0;
    padding: 1.1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.admin-metrics span,
.admin-member-grid span {
    display: block;
    color: var(--muted);
    font-weight: 800;
}

.admin-metrics strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--gold-2);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1;
}

.admin-member-grid strong {
    display: block;
    margin-top: 0.25rem;
    color: var(--text);
    overflow-wrap: anywhere;
}

.admin-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.admin-toolbar .btn {
    min-height: 40px;
    padding: 0.65rem 1rem;
    font-size: 0.92rem;
}

.admin-toolbar .is-selected {
    border-color: var(--line-strong);
    color: var(--gold-2);
}

.admin-table {
    display: grid;
    gap: 0.75rem;
}

.admin-order-card {
    display: grid;
    grid-template-columns: 0.9fr 1.15fr 1.15fr 0.7fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.admin-order-card h3 {
    margin-top: 0.25rem;
    font-size: 1.15rem;
}

.admin-order-card p,
.admin-order-card small,
.admin-order-card span {
    color: var(--muted);
}

.admin-order-card strong {
    display: block;
    color: var(--text);
    overflow-wrap: anywhere;
}

.admin-order-actions {
    display: grid;
    gap: 0.5rem;
}

.admin-order-actions .btn {
    min-height: 38px;
    padding: 0.55rem 0.85rem;
}

.admin-reviewed-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(8, 184, 145, 0.28);
    border-radius: 8px;
    background: rgba(8, 184, 145, 0.08);
    color: var(--green);
    font-weight: 900;
}

.admin-empty {
    padding: 1.25rem;
    border: 1px dashed var(--line);
    border-radius: 8px;
    color: var(--muted);
    text-align: center;
}

/* ==========================================================================
   Admin Control Center
   ========================================================================== */

.admin-control-body {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    background:
        radial-gradient(circle at 82% 0%, rgba(240, 185, 11, 0.12), transparent 26rem),
        linear-gradient(135deg, #05070b 0%, #070b10 48%, #05070b 100%);
}

.admin-shell-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 1rem;
    padding: 1.25rem 0.75rem;
    border-right: 1px solid var(--line);
    background: rgba(5, 7, 11, 0.86);
    backdrop-filter: blur(18px);
}

.admin-shell-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.35rem 0.45rem 1rem;
}

.admin-shell-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #07090c;
    font-weight: 1000;
    box-shadow: 0 14px 34px rgba(240, 185, 11, 0.28);
}

.admin-shell-logo strong,
.admin-shell-logo small {
    display: block;
}

.admin-shell-logo strong {
    font-size: 0.95rem;
}

.admin-shell-logo small {
    color: var(--muted);
    font-size: 0.72rem;
}

.admin-shell-nav {
    display: grid;
    align-content: start;
    gap: 0.45rem;
}

.admin-shell-nav a {
    min-height: 44px;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.7rem;
    padding: 0 0.8rem;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--muted);
    font-weight: 850;
}

.admin-shell-nav a:hover,
.admin-shell-nav a.is-active {
    border-color: rgba(240, 185, 11, 0.46);
    background: rgba(240, 185, 11, 0.12);
    color: var(--gold-2);
}

.admin-shell-nav i {
    color: currentColor;
    text-align: center;
}

.admin-shell-nav b,
.admin-alert-button span {
    min-width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--gold-2);
    color: #07090c;
    font-size: 0.75rem;
    font-weight: 1000;
}

.admin-system-card {
    display: grid;
    gap: 0.45rem;
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--muted);
    font-size: 0.82rem;
}

.admin-system-card strong {
    color: var(--gold-2);
}

.admin-system-card i {
    color: var(--green);
    font-size: 0.65rem;
}

.admin-shell-main {
    min-width: 0;
    padding: 0.75rem;
    display: grid;
    gap: 0.75rem;
}

.admin-shell-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 11, 0.88);
    backdrop-filter: blur(18px);
}

.admin-shell-topbar p,
.admin-panel-head p {
    color: var(--gold-2);
    font-weight: 950;
    font-size: 0.78rem;
}

.admin-shell-topbar h1 {
    font-size: clamp(1.08rem, 1.65vw, 1.45rem);
    line-height: 1.1;
}

.admin-topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.admin-icon-button,
.admin-alert-button {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    position: relative;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--gold-2);
}

.admin-alert-button span {
    position: absolute;
    top: -8px;
    right: -8px;
}

.admin-user-chip {
    display: grid;
    gap: 0.1rem;
    padding: 0.4rem 0.8rem;
    border-left: 1px solid var(--line);
}

.admin-user-chip span {
    font-weight: 900;
}

.admin-user-chip small {
    color: var(--gold-2);
}

.admin-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.85rem;
}

.admin-kpi-grid article,
.admin-panel {
    min-width: 0;
    border: 1px solid rgba(240, 185, 11, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(17, 23, 34, 0.94), rgba(8, 13, 19, 0.92));
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.admin-kpi-grid article {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 0.25rem 0.8rem;
    align-items: center;
    padding: 0.82rem;
}

.admin-kpi-grid i {
    grid-row: span 3;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(240, 185, 11, 0.35);
    border-radius: 999px;
    color: var(--gold-2);
    background: rgba(240, 185, 11, 0.1);
}

.admin-kpi-grid span,
.admin-kpi-grid small {
    color: var(--muted);
    font-weight: 800;
}

.admin-kpi-grid strong {
    font-size: clamp(1.25rem, 2.1vw, 1.78rem);
    line-height: 1;
}

.admin-work-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
}

.admin-members-panel {
    grid-column: 1 / -1;
}

.admin-lower-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1.35fr) minmax(260px, 1fr);
    gap: 0.85rem;
}

#commission {
    grid-column: 1 / -1;
}

.admin-panel {
    padding: 0.75rem;
}

.admin-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.65rem;
}

.admin-panel-head h2 {
    font-size: 1.25rem;
}

.admin-panel-head.compact h2 {
    font-size: 1.05rem;
}

.admin-table-tools {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    flex-wrap: wrap;
}

.admin-search {
    min-width: 320px;
    height: 42px;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    gap: 0.55rem;
    padding: 0 0.8rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 11, 0.72);
}

.admin-search input,
.admin-table-tools select,
.admin-action-form input,
.admin-action-form select,
.admin-action-form textarea,
.admin-allocation-card input {
    width: 100%;
    border: 1px solid rgba(240, 185, 11, 0.22);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(5, 7, 11, 0.88), rgba(10, 15, 22, 0.82));
    color: var(--text);
    font: inherit;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.admin-search input:focus,
.admin-table-tools select:focus,
.admin-action-form input:focus,
.admin-action-form select:focus,
.admin-action-form textarea:focus,
.admin-allocation-card input:focus {
    border-color: var(--gold-2);
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.14), inset 0 0 0 1px rgba(252, 213, 53, 0.12);
}

.admin-table-tools select {
    color-scheme: dark;
}

.admin-search input {
    border: 0;
    background: transparent;
}

.admin-table-tools select {
    height: 42px;
    padding: 0 0.8rem;
}

.admin-data-table,
.admin-ledger-table {
    display: grid;
    gap: 0.35rem;
    overflow-x: auto;
    padding-right: 0.35rem;
    scroll-padding-right: 0.7rem;
}

.admin-data-head,
.admin-data-row {
    min-width: 880px;
    display: grid;
    grid-template-columns: minmax(165px, 1.35fr) minmax(112px, 0.95fr) minmax(70px, 0.58fr) minmax(78px, 0.62fr) minmax(138px, 1fr) minmax(118px, 0.88fr) minmax(98px, 0.72fr) minmax(78px, 0.52fr);
    gap: 0.5rem;
    align-items: center;
}

.admin-data-head,
.admin-ledger-head {
    padding: 0.5rem 0.65rem;
    color: var(--soft);
    border-bottom: 1px solid var(--line);
    font-size: 0.78rem;
    font-weight: 900;
}

.admin-data-row,
.admin-ledger-row,
.admin-access-job {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
}

.admin-data-row {
    min-height: 50px;
    padding: 0.46rem 0.65rem;
    font-size: 0.82rem;
    padding-right: 0.8rem;
}

.admin-data-row.is-editing {
    border-color: rgba(252, 213, 53, 0.5);
    background:
        linear-gradient(180deg, rgba(17, 23, 34, 0.9), rgba(8, 13, 19, 0.88)),
        radial-gradient(circle at 92% 50%, rgba(240, 185, 11, 0.1), transparent 28%);
}

.admin-data-row > span,
.admin-data-row > strong {
    min-width: 0;
    overflow-wrap: anywhere;
}

.admin-inline-input {
    width: 100%;
    min-width: 0;
    height: 38px;
    padding: 0 0.55rem;
    border: 1px solid rgba(240, 185, 11, 0.24);
    border-radius: 8px;
    background: rgba(5, 7, 11, 0.78);
    color: var(--text);
    font: inherit;
    font-weight: 800;
    outline: none;
    color-scheme: dark;
}

.admin-inline-input:focus {
    border-color: var(--gold-2);
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.14);
}

.admin-data-row small,
.admin-expiry small,
.admin-access-job small {
    display: block;
    color: var(--muted);
}

.admin-credit,
.admin-expiry {
    color: var(--gold-2);
    font-weight: 900;
}

.admin-danger,
.admin-status.expired,
.admin-status.inactive,
.admin-ledger-row .out {
    color: #ff7d88;
}

.admin-status {
    justify-self: start;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    font-size: 0.74rem;
    background: rgba(255, 255, 255, 0.06);
}

.admin-status.active {
    color: var(--green);
    background: rgba(8, 184, 145, 0.12);
}

.admin-status.expiring {
    color: var(--gold-2);
    background: rgba(240, 185, 11, 0.12);
}

.admin-row-actions {
    display: flex;
    gap: 0.35rem;
    justify-content: flex-end;
    min-width: 78px;
}

.admin-row-actions button,
.admin-link-button,
.admin-access-job button,
.admin-action-tabs button {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    font-weight: 900;
}

.admin-row-actions button {
    width: 34px;
    height: 34px;
}

.admin-row-actions [data-save-member] {
    color: var(--green);
    border-color: rgba(8, 184, 145, 0.35);
}

.admin-row-actions [data-cancel-member-edit] {
    color: #ff7d88;
    border-color: rgba(255, 125, 136, 0.35);
}

.admin-link-button {
    min-height: 34px;
    padding: 0 0.75rem;
    color: var(--gold-2);
}

.admin-access-list {
    display: grid;
    gap: 0.65rem;
}

.admin-access-job {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) 82px;
    gap: 0.75rem;
    align-items: start;
    padding: 0.75rem;
}

.admin-access-job > div:nth-of-type(2) {
    grid-column: 2;
}

.admin-access-job .admin-job-actions {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.admin-access-job strong,
.admin-access-job span,
.admin-access-job small {
    overflow-wrap: anywhere;
}

.admin-access-job > b {
    justify-self: start;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.68rem;
    color: #08100d;
    background: var(--green);
}

.admin-access-job.extend > b {
    background: #4697ff;
    color: #fff;
}

.admin-access-job.remove > b {
    background: #ff5f61;
    color: #fff;
}

.admin-access-job.review_expired > b {
    background: var(--gold-2);
}

.admin-job-actions {
    display: grid;
    gap: 0.35rem;
}

.admin-job-actions button {
    min-height: 34px;
    padding: 0 0.7rem;
    white-space: nowrap;
}

.admin-job-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-2)) !important;
    color: #07090c !important;
    border-color: rgba(252, 213, 53, 0.7) !important;
}

.admin-network-board {
    min-height: 260px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 0.5rem;
}

.admin-network-root,
.admin-network-node {
    min-width: 112px;
    display: grid;
    justify-items: center;
    gap: 0.2rem;
    padding: 0.65rem;
    border: 1px solid rgba(240, 185, 11, 0.5);
    border-radius: 8px;
    background: rgba(240, 185, 11, 0.08);
}

.admin-network-root i,
.admin-network-node i {
    color: var(--gold-2);
}

.admin-network-root span,
.admin-network-node span {
    color: var(--muted);
    font-size: 0.75rem;
}

.admin-network-node.is-selected {
    box-shadow: 0 0 0 2px rgba(240, 185, 11, 0.24);
}

.admin-network-line {
    width: 2px;
    height: 26px;
    background: rgba(240, 185, 11, 0.55);
}

.admin-network-children {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.admin-network-children.small .admin-network-node {
    min-width: 86px;
    font-size: 0.78rem;
}

.admin-ledger-head,
.admin-ledger-row {
    min-width: 780px;
    display: grid;
    grid-template-columns: 0.9fr 0.8fr 1.5fr 0.65fr 0.65fr 0.8fr;
    gap: 0.6rem;
    align-items: center;
}

.admin-ledger-row {
    padding: 0.6rem 0.75rem;
    font-size: 0.82rem;
}

.admin-ledger-row b {
    justify-self: start;
    padding: 0.22rem 0.45rem;
    border-radius: 6px;
    font-size: 0.68rem;
}

.admin-ledger-row .deposit,
.admin-ledger-row .commission {
    color: var(--green);
    background: rgba(8, 184, 145, 0.12);
}

.admin-ledger-row .purchase {
    color: #ff7d88;
    background: rgba(242, 54, 69, 0.12);
}

.admin-ledger-row .adjustment {
    color: var(--gold-2);
    background: rgba(240, 185, 11, 0.12);
}

.admin-ledger-row .in {
    color: var(--green);
}

.admin-action-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    margin-bottom: 0.8rem;
}

.admin-action-tabs button {
    min-height: 42px;
    padding: 0 0.5rem;
    font-size: 0.78rem;
}

.admin-action-tabs button.is-active {
    border-color: rgba(240, 185, 11, 0.6);
    background: rgba(240, 185, 11, 0.12);
    color: var(--gold-2);
}

.admin-action-form {
    display: none;
    gap: 0.75rem;
}

.admin-action-form.is-active {
    display: grid;
}

.admin-action-form label {
    display: grid;
    gap: 0.35rem;
}

.admin-action-form label span {
    color: var(--muted);
    font-weight: 900;
}

.admin-action-form input,
.admin-action-form select,
.admin-action-form textarea {
    padding: 0.78rem 0.85rem;
}

.admin-action-note {
    color: var(--muted);
    font-size: 0.82rem;
}

.admin-allocation-list {
    display: grid;
    gap: 1rem;
}

.admin-allocation-card {
    display: grid;
    grid-template-columns: minmax(170px, 1.05fr) repeat(4, minmax(110px, 1fr)) minmax(140px, 0.75fr);
    gap: 0.75rem;
    align-items: end;
    padding: 1rem;
    min-width: 0;
    border: 1px solid rgba(240, 185, 11, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(17, 23, 34, 0.88), rgba(8, 13, 19, 0.9)),
        radial-gradient(circle at 8% 20%, rgba(240, 185, 11, 0.12), transparent 32%);
}

.admin-allocation-card > div,
.admin-allocation-card label {
    display: grid;
    gap: 0.35rem;
    min-width: 0;
}

.admin-allocation-card strong {
    color: var(--text);
}

.admin-allocation-card small,
.admin-allocation-card span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
}

.admin-allocation-card input {
    padding: 0.78rem 0.85rem;
    color-scheme: dark;
}

.admin-allocation-card input:disabled {
    cursor: not-allowed;
    color: var(--gold-2);
    border-color: rgba(240, 185, 11, 0.14);
    background: rgba(5, 7, 11, 0.58);
    opacity: 1;
}

.admin-allocation-card.is-editing {
    border-color: rgba(252, 213, 53, 0.62);
    box-shadow: 0 0 28px rgba(240, 185, 11, 0.1);
}

.admin-allocation-actions {
    display: grid;
    gap: 0.45rem;
}

.admin-allocation-actions [hidden] {
    display: none !important;
}

.admin-allocation-card .admin-action-note {
    grid-column: 1 / -1;
}

.affiliate-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
}

.affiliate-box code {
    min-width: 0;
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 11, 0.72);
    color: var(--gold-2);
    overflow-wrap: anywhere;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem clamp(1rem, 3vw, 2.5rem);
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a:hover {
    color: var(--gold);
}

@media (max-width: 1100px) {
    .admin-control-body {
        grid-template-columns: 1fr;
    }

    .admin-shell-sidebar {
        position: static;
        height: auto;
        grid-template-rows: auto auto;
    }

    .admin-shell-nav {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .admin-system-card {
        display: none;
    }

    .admin-work-grid,
    .admin-lower-grid {
        grid-template-columns: 1fr;
    }

    .admin-allocation-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-product {
        max-width: 820px;
    }

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

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

    .plan-grid {
        grid-template-columns: 1fr;
    }

    .checkout-hero,
    .checkout-grid,
    .auth-main,
    .dashboard-hero,
    .dashboard-grid,
    .wallet-grid,
    .admin-order-card {
        grid-template-columns: 1fr;
    }

    .result-card {
        min-height: 260px;
    }
}

@media (max-width: 1280px) {
    .admin-work-grid,
    .admin-lower-grid {
        grid-template-columns: 1fr;
    }

    .admin-access-job {
        grid-template-columns: 86px minmax(0, 1fr) auto;
    }
}

@media (max-width: 840px) {
    .admin-shell-main {
        padding: 0.75rem;
    }

    .admin-shell-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-shell-topbar {
        align-items: start;
        flex-direction: column;
    }

    .admin-topbar-actions {
        width: 100%;
        justify-content: space-between;
    }

    .admin-kpi-grid,
    .admin-access-job,
    .admin-allocation-card,
    .admin-action-tabs {
        grid-template-columns: 1fr;
    }

    .admin-panel-head,
    .admin-table-tools {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-search {
        min-width: 0;
        width: 100%;
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .menu-button {
        display: inline-grid;
        place-items: center;
    }

    .mobile-nav.is-open {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 2.4rem;
    }

    .hero-points,
    .feature-grid,
    .plan-grid,
    .faq-grid,
    .product-box,
    .section-heading.split {
        grid-template-columns: 1fr;
    }

    .text-link {
        justify-self: start;
    }
}

@media (max-width: 620px) {
    .section-shell {
        width: calc(100% - 2.5rem);
    }

    .brand-text small {
        display: none;
    }

    h1 {
        font-size: 2rem;
        line-height: 1.12;
    }

    .hero-lead {
        font-size: 0.98rem;
        word-break: break-word;
    }

    .hero-product {
        min-height: auto;
        padding: 1.5rem 0 0.5rem;
    }

    .hero-product img {
        width: min(82vw, 320px);
    }

    .hero-actions,
    .access-actions,
    .checkout-actions,
    .agreement-actions,
    .activation-actions {
        display: grid;
        width: 100%;
    }

    .hero-actions .btn,
    .access-actions .btn,
    .checkout-actions .btn,
    .agreement-actions .btn,
    .activation-actions .btn {
        width: 100%;
    }

    .checkout-form-card .section-heading h2 {
        font-size: 1.45rem;
        line-height: 1.22;
        overflow-wrap: anywhere;
    }

    .checkout-panel,
    .checkout-form-card,
    .checkout-summary,
    .account-status-card,
    .dashboard-card {
        padding: 1.1rem;
    }

    .status-meta,
    .affiliate-box,
    .credit-grid,
    .admin-metrics,
    .admin-member-grid,
    .payment-method-grid,
    .activation-summary,
    .wallet-actions,
    .account-profile-form,
    .plan-choice-grid,
    .plan-deduct-preview {
        grid-template-columns: 1fr;
    }

    .account-profile-actions {
        grid-column: auto;
    }

    .payment-step-head {
        display: grid;
    }

    .admin-hero {
        align-items: stretch;
        flex-direction: column;
    }

    .dashboard-list li {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }

    .payment-row,
    .payment-row.head {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .payment-row.head {
        display: none;
    }

    .problem-grid,
    .workflow-grid,
    .example-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

.admin-summary-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0.5rem 0;
}

.admin-summary-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.admin-summary-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.admin-summary-card .info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.admin-summary-card .info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-summary-card .info strong {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.admin-summary-card .value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.admin-summary-card.admin-revenue {
    border-left: 4px solid #00c8ff;
}
.admin-summary-card.admin-revenue .value {
    color: #00c8ff;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.3);
}

.admin-summary-card.bonus-revenue {
    border-left: 4px solid #e040fb;
}
.admin-summary-card.bonus-revenue .value {
    color: #e040fb;
    text-shadow: 0 0 10px rgba(224, 64, 251, 0.3);
}

.admin-summary-card.company-revenue {
    border-left: 4px solid #4caf50;
}
.admin-summary-card.company-revenue .value {
    color: #4caf50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.admin-summary-card.commission-pool {
    border-left: 4px solid #ff9800;
}
.admin-summary-card.commission-pool .value {
    color: #ff9800;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.3);
}

#admin-logout-btn:hover {
    background: rgba(239, 83, 80, 0.15) !important;
    border-color: #ef5350 !important;
    color: #ef5350 !important;
    box-shadow: 0 0 10px rgba(239, 83, 80, 0.2);
}

.renewal-warning-box {
    background: rgba(255, 207, 47, 0.1);
    border: 1px solid rgba(255, 207, 47, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-top: 12px;
    margin-bottom: 12px;
    color: #ffcf2f;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 10px rgba(255, 207, 47, 0.1);
    animation: warningPulseGlow 2s infinite alternate;
}
.renewal-warning-box i {
    font-size: 16px;
    flex-shrink: 0;
}
@keyframes warningPulseGlow {
    from { box-shadow: 0 0 8px rgba(255, 207, 47, 0.1); }
    to { box-shadow: 0 0 15px rgba(255, 207, 47, 0.2); }
}

/* Custom scrollbar for ledger table container matching the theme */
.admin-ledger-table-container::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.admin-ledger-table-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}
.admin-ledger-table-container::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
.admin-ledger-table-container::-webkit-scrollbar-thumb:hover {
    background: var(--gold-2);
}
#admin-reset-btn:hover {
    background: rgba(239, 83, 80, 0.2) !important;
    border-color: #ef5350 !important;
    box-shadow: 0 0 10px rgba(239, 83, 80, 0.15);
}

