:root {
    --bg: #06121f;
    --bg-soft: #0a1a2b;
    --panel: rgba(255, 255, 255, .07);
    --panel-strong: rgba(255, 255, 255, .12);
    --text: #f2fbff;
    --muted: #9db5c4;
    --line: rgba(173, 235, 255, .09);
    --primary: #1cc7d0;
    --primary-dark: #0c8390;
    --accent: #5dffd0;
    --gold: #ffd166;
    --danger: #ff5a74;
    --ok: #5dffd0;
    --warning: #ffd166;
    --radius: 26px;
    --radius-sm: 18px;
    --radius-xs: 12px;
    --glow: 0 0 0 1px rgba(93, 255, 208, .08), 0 16px 42px rgba(78, 220, 213, .08);
    --shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(28, 199, 208, .2), transparent 28rem),
        radial-gradient(circle at 86% 14%, rgba(93, 255, 208, .15), transparent 24rem),
        linear-gradient(135deg, #06121f 0%, #081b2f 48%, #04101d 100%);
    background-attachment: fixed;
    background-size: 120% 120%, 120% 120%, auto;
    animation: pageAuraShift 18s ease-in-out infinite alternate;
}

.customer-body {
    padding-top: 90px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 20%, rgba(93,255,208,.045), transparent 16rem),
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: auto, 56px 56px, 56px 56px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 82%);
    animation: pageGridDrift 22s linear infinite;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        linear-gradient(115deg, transparent 0 28%, rgba(93,255,208,.045) 35%, transparent 48% 100%),
        linear-gradient(70deg, transparent 0 52%, rgba(255,209,102,.035) 58%, transparent 72% 100%);
    background-size: 260% 100%, 220% 100%;
    opacity: .8;
    animation: pageLightSweep 20s ease-in-out infinite;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #fff; }

.topbar {
    display: grid;
    grid-template-columns: auto minmax(240px, 340px) minmax(0, 1fr);
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 86px;
    padding: 16px 2.6vw;
    background: rgba(6, 18, 31, .78);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.customer-body .topbar {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 900;
    font-size: 19px;
    letter-spacing: .2px;
}

.brand span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1cc7d0, #123b66 62%, #5dffd0);
    box-shadow: 0 10px 28px rgba(48, 224, 211, .25);
    font-size: 12px;
}

.brand-logo span {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(0,0,0,.24);
    border: 1px solid rgba(173,235,255,.12);
    box-shadow: 0 12px 28px rgba(28,199,208,.16);
    overflow: hidden;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.brand strong {
    white-space: nowrap;
}

.customer-body .topbar .brand strong {
    display: none;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    height: 48px;
    padding: 0 14px;
    border-radius: 13px;
    border: 1px solid rgba(173, 235, 255, .12);
    background: rgba(255,255,255,.075);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.header-search span {
    color: #24d7ff;
    font-size: 22px;
    font-weight: 950;
}

.header-search input {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0 0 0 8px;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    box-shadow: none;
    font-size: 15px;
}

.header-search input:focus {
    box-shadow: none;
}

.header-search input::placeholder {
    color: rgba(242,251,255,.56);
}

.main-nav,
.topbar nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: nowrap;
}

.main-nav a:not(.btn),
.topbar nav a:not(.btn) {
    color: var(--muted);
    padding: 8px 7px;
    border-radius: 999px;
    font-weight: 850;
    font-size: 15px;
}

.main-nav a:not(.btn):hover,
.topbar nav a:not(.btn):hover {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.main-nav .nav-profile-icon,
.topbar nav .nav-profile-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 999px;
    color: #06121f !important;
    background: linear-gradient(135deg, #5dffd0, #1cc7d0);
    border: 1px solid rgba(173, 235, 255, .22);
    box-shadow: 0 12px 26px rgba(28, 199, 208, .2);
    font-size: 14px;
    font-weight: 950;
}

.main-nav .nav-profile-icon:hover,
.topbar nav .nav-profile-icon:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #c6ffd9, #24d7ff);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link::before {
    display: inline-grid;
    place-items: center;
    width: 18px;
    color: rgba(242,251,255,.86);
    font-size: 15px;
    font-weight: 950;
}

.nav-home::before { content: "⌂"; }
.nav-products::before { content: "▰"; }
.nav-recharge::before { content: "≋"; }
.nav-cart::before { content: "▾"; transform: rotate(-90deg); }
.nav-admin::before { content: "●"; }
.nav-account::before { content: "▦"; }
.nav-exit::before { content: "↪"; }

.balance-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    color: #ffd166 !important;
    background: rgba(24, 200, 255, .12) !important;
    box-shadow: 0 10px 24px rgba(24, 200, 255, .08);
    border: 1px solid rgba(24, 200, 255, .08);
    font-weight: 950 !important;
}

.balance-pill::before {
    content: "▣";
    color: #ffa90d;
}

.container {
    position: relative;
    width: min(1140px, 92vw);
    margin: 34px auto;
}

.customer-body .container {
    width: min(1760px, 94vw);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, .98fr);
    gap: 34px;
    align-items: center;
    min-height: 640px;
    padding: 54px 0 34px;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(38px, 6vw, 76px);
    line-height: .96;
    margin: 10px 0 18px;
    letter-spacing: 0;
}

.hero p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 660px;
}

.home-carousel {
    position: relative;
    display: grid;
    align-items: center;
    min-height: min(820px, calc(100vh - 86px));
    width: 100vw;
    margin: -34px calc(50% - 50vw) 44px;
    padding: clamp(28px, 7vw, 76px);
    border-radius: 0;
    overflow: hidden;
    isolation: isolate;
    contain: paint;
    box-shadow: 0 26px 70px rgba(0,0,0,.34);
}

.home-carousel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(2, 10, 18, .62) 0%, rgba(2, 10, 18, .42) 48%, rgba(2, 10, 18, .2) 100%),
        radial-gradient(circle at 24% 24%, rgba(93,255,208,.08), transparent 22rem);
    pointer-events: none;
}

.home-carousel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(6,18,31,.58), transparent 45%);
    pointer-events: none;
}

.home-carousel.is-changing::after {
    animation: carouselLightWash 1900ms ease;
}

.carousel-effect-layer {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
}

.carousel-effect-layer span {
    position: absolute;
    top: -15%;
    bottom: -15%;
    width: 42%;
    transform: skewX(-14deg) translateX(-130%);
    background:
        linear-gradient(90deg, transparent, rgba(93,255,208,.1), rgba(255,255,255,.18), rgba(28,199,208,.09), transparent);
    filter: blur(10px);
}

.carousel-effect-layer span:nth-child(2) {
    width: 24%;
    background:
        linear-gradient(90deg, transparent, rgba(255,209,102,.1), rgba(255,255,255,.2), transparent);
    animation-delay: 220ms;
}

.home-carousel.is-changing .carousel-effect-layer {
    opacity: 1;
}

.home-carousel.is-changing .carousel-effect-layer span {
    animation: carouselCurtainSweep 1900ms cubic-bezier(.19, 1, .22, 1) both;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: #020a12;
    transform-origin: center;
    will-change: opacity, transform;
    opacity: 0;
    transform: scale(1.045);
    filter: saturate(.95) brightness(.9);
    transition:
        opacity 1900ms cubic-bezier(.22, .61, .36, 1),
        transform 7200ms cubic-bezier(.22, .61, .36, 1),
        filter 1900ms ease;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1.04) brightness(1);
    animation: carouselSoftReveal 1900ms cubic-bezier(.22, .61, .36, 1) both;
}

.home-carousel-content {
    position: relative;
    z-index: 5;
    max-width: 760px;
    width: min(760px, 92vw);
    margin: 0 auto;
    text-align: center;
}

.home-carousel h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4.6vw, 58px);
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: balance;
    transition: opacity .35s ease, transform .35s ease;
}

.home-carousel p {
    max-width: 560px;
    margin: 0 auto 22px;
    color: rgba(215,232,239,.86);
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.55;
    transition: opacity .35s ease, transform .35s ease;
}

.home-carousel-content .actions {
    justify-content: center;
}

.home-carousel.is-changing .home-carousel-content h1,
.home-carousel.is-changing .home-carousel-content p {
    opacity: .82;
    transform: translateY(4px);
}

.carousel-dots {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-dots button {
    width: 32px;
    height: 5px;
    padding: 0;
    min-height: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.35);
    box-shadow: 0 0 18px rgba(93,255,208,.15);
    cursor: pointer;
    transition: width .35s ease, background .35s ease, box-shadow .35s ease, transform .35s ease;
}

.carousel-dots button.active {
    width: 46px;
    background: #5dffd0;
    box-shadow: 0 0 18px rgba(93,255,208,.42);
    transform: translateY(-1px);
}

.home-promo-image {
    position: relative;
    width: 100vw;
    min-height: min(760px, calc(100vh - 86px));
    margin: -34px calc(50% - 50vw) 44px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 40%, rgba(28,199,208,.08), transparent 28rem),
        #020a12;
}

.home-promo-image img {
    display: block;
    width: 100%;
    height: 100%;
}

.home-promo-image img {
    position: absolute;
    inset: 0;
    object-fit: contain;
    object-position: center;
    padding: 18px;
}

.promo-buy-button {
    position: absolute;
    left: 50%;
    bottom: clamp(28px, 6vw, 70px);
    z-index: 2;
    transform: translateX(-50%);
    min-width: 180px;
    justify-content: center;
    border-radius: 999px;
    font-size: 17px;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: rgba(255,255,255,.1);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--ok);
    box-shadow: 0 0 16px var(--ok);
}

.muted { color: var(--muted); }

.panel,
.card,
table {
    background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.045));
    border: 1px solid rgba(173, 235, 255, .085);
    box-shadow: var(--shadow), var(--glow);
    backdrop-filter: blur(16px);
}

.panel {
    padding: 26px;
    border-radius: var(--radius);
}

.card {
    padding: 20px;
    border-radius: var(--radius);
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(93, 255, 208, .18);
    background: linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.055));
    box-shadow: 0 20px 54px rgba(0,0,0,.3), 0 0 0 1px rgba(93,255,208,.08), 0 12px 34px rgba(93,255,208,.075);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.btn,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #1cc7d0, #128ea7 55%, #0d5578);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(28, 199, 208, .18);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn:hover,
button:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-1px);
    text-decoration: none;
}

.btn.small {
    min-height: 34px;
    padding: 7px 11px;
}

.btn.secondary {
    background: rgba(255,255,255,.055);
    color: var(--text);
    border: 1px solid rgba(173, 235, 255, .1);
    box-shadow: 0 10px 24px rgba(0,0,0,.14);
}

.btn.danger { background: var(--danger); }

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: "";
    position: absolute;
    inset: -60% auto -60% -45%;
    width: 42%;
    transform: rotate(18deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
    animation: shine 3.4s ease-in-out infinite;
}

.trust-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.trust-strip span {
    color: var(--muted);
    background: rgba(255,255,255,.08);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 12px;
    font-weight: 800;
}

.stream-showcase {
    position: relative;
    min-height: 460px;
    display: grid;
    place-items: center;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: .86;
}

.orb-one {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(28,199,208,.78), transparent 68%);
    top: 28px;
    left: 22px;
    animation: float 6s ease-in-out infinite;
}

.orb-two {
    width: 210px;
    height: 210px;
    background: radial-gradient(circle, rgba(36,215,255,.62), transparent 68%);
    right: 10px;
    bottom: 34px;
    animation: float 7s ease-in-out infinite reverse;
}

.showcase-card {
    position: relative;
    width: min(380px, 92%);
    padding: 30px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.07));
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 30px 90px rgba(0,0,0,.42);
    backdrop-filter: blur(18px);
    z-index: 2;
}

.showcase-card h2 {
    font-size: 34px;
    margin: 28px 0 10px;
}

.showcase-card p {
    color: var(--muted);
    line-height: 1.6;
}

.showcase-card strong {
    display: block;
    font-size: 44px;
    margin-top: 22px;
}

.live-dot {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 15px;
    height: 15px;
    border-radius: 999px;
    background: var(--ok);
    box-shadow: 0 0 0 8px rgba(53,231,161,.12), 0 0 26px var(--ok);
}

.mini-service {
    position: absolute;
    z-index: 3;
    border-radius: var(--radius);
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-weight: 950;
    box-shadow: 0 18px 42px rgba(0,0,0,.3);
    animation: bob 5s ease-in-out infinite;
}

.mini-service.netflix {
    left: 8px;
    top: 78px;
    background: linear-gradient(135deg, #1cc7d0, #0a3158);
}

.mini-service.disney {
    right: 0;
    top: 142px;
    background: linear-gradient(135deg, #113ccf, #22c1ff);
    animation-delay: .5s;
}

.mini-service.prime {
    left: 56px;
    bottom: 70px;
    background: linear-gradient(135deg, #00a8e1, #102a43);
    animation-delay: 1s;
}

.section-head {
    margin: 42px 0 24px;
    max-width: 760px;
}

.home-section-spaced {
    margin-top: 64px;
}

.home-featured-products {
    margin-bottom: 74px;
}

.account-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
    margin: 22px 0 38px;
}

.account-showcase-card {
    overflow: hidden;
    border: 1px solid rgba(173,235,255,.16);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(34,52,70,.94), rgba(13,31,48,.96));
    box-shadow: 0 22px 58px rgba(0,0,0,.28);
}

.account-showcase-card img {
    display: block;
    width: 100%;
    height: 178px;
    object-fit: cover;
}

.account-showcase-card > div {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.account-showcase-card h3,
.account-showcase-card p {
    margin: 0;
}

.account-showcase-card h3 {
    font-size: 20px;
    line-height: 1.18;
}

.account-showcase-card p {
    color: var(--muted);
    line-height: 1.55;
}

.account-showcase-card .btn {
    justify-self: start;
    margin-top: 4px;
}

.streaming-promise-section {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr) auto;
    gap: 18px;
    align-items: center;
    margin: 40px 0 52px;
    padding: clamp(20px, 3vw, 30px);
    border: 1px solid rgba(173,235,255,.18);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(35,63,82,.95), rgba(10,30,48,.98)),
        radial-gradient(circle at 12% 10%, rgba(45,212,191,.18), transparent 34%);
    box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.streaming-promise-section h2,
.streaming-promise-section p {
    margin: 10px 0 0;
}

.streaming-promise-list {
    display: grid;
    gap: 10px;
}

.streaming-promise-list span {
    border: 1px solid rgba(173,235,255,.14);
    border-radius: 14px;
    padding: 10px 12px;
    color: #dff5ff;
    background: rgba(255,255,255,.06);
    font-weight: 800;
}

.streaming-promise-section > .btn {
    white-space: nowrap;
}

.home-story-stack {
    display: grid;
    gap: 64px;
    margin: 30px 0 62px;
    counter-reset: story-section;
}

.home-story-section {
    counter-increment: story-section;
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, .92fr) minmax(0, 1.08fr);
    gap: clamp(22px, 4vw, 48px);
    align-items: center;
    min-height: 460px;
    padding: clamp(10px, 2vw, 20px) 0 58px;
    border-bottom: 1px solid rgba(173,235,255,.12);
}

.home-story-section.is-reversed {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
}

.home-story-section.is-reversed .home-story-media {
    grid-column: 2;
}

.home-story-section.is-reversed .home-story-copy {
    grid-column: 1;
    grid-row: 1;
}

.home-story-media {
    position: relative;
    min-height: 390px;
    border-radius: 28px;
    overflow: hidden;
    background: #06121f;
    box-shadow: 0 28px 74px rgba(0,0,0,.38);
    transform: rotate(-1.25deg);
}

.home-story-section.is-reversed .home-story-media {
    transform: rotate(1.25deg);
}

.home-story-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to top, rgba(4,14,24,.58), transparent 54%),
        linear-gradient(135deg, rgba(45,212,191,.2), transparent 36%, rgba(255,209,102,.12));
    border: 1px solid rgba(173,235,255,.18);
    border-radius: inherit;
}

.home-story-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
}

.home-story-copy {
    position: relative;
    display: grid;
    gap: 18px;
    align-content: center;
    padding-left: clamp(18px, 3vw, 34px);
}

.home-story-copy::before {
    content: "0" counter(story-section);
    position: absolute;
    left: 0;
    top: 4px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: rgba(93,255,208,.7);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 3px;
}

.home-story-copy::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 56px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(93,255,208,.8), transparent);
}

.home-story-copy h3 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: .98;
}

.home-story-copy p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.home-story-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 680px;
}

.home-story-pills span {
    position: relative;
    min-height: 54px;
    border: 0;
    border-bottom: 1px solid rgba(173,235,255,.18);
    border-radius: 0;
    padding: 12px 0 12px 26px;
    color: #e9f8ff;
    background: transparent;
    font-weight: 850;
    line-height: 1.3;
}

.home-story-pills span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #5dffd0;
    box-shadow: 0 0 18px rgba(93,255,208,.72);
}

.home-story-copy .btn {
    justify-self: start;
    margin-top: 4px;
}

.section-head h2,
.work-method-section h2,
.final-contact-section h2 {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.05;
    margin: 12px 0;
}

.feature-card span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--accent), #0f6ea3);
    font-weight: 950;
}

.feature-card h3 { margin-bottom: 8px; }

.services-head {
    margin-top: 78px;
}

.services-head,
.service-editorial-row,
.work-method-section,
.final-contact-section {
    scroll-margin-top: 132px;
}

.service-editorial-stack {
    display: grid;
    gap: 56px;
    margin: 34px 0 86px;
}

.service-editorial-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(290px, .92fr) minmax(0, 1.08fr);
    gap: clamp(26px, 4.2vw, 58px);
    align-items: center;
    min-height: 520px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.9,.2,1);
}

.service-editorial-row::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 0;
    bottom: -20px;
    height: 1px;
    background:
        linear-gradient(90deg, transparent, rgba(173,235,255,.16), transparent);
    pointer-events: none;
}

.service-editorial-row.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--service-index) * 120ms);
}

.service-editorial-row.is-reversed {
    grid-template-columns: minmax(0, 1.08fr) minmax(290px, .92fr);
}

.service-editorial-row.is-reversed .service-editorial-media {
    grid-column: 2;
}

.service-editorial-row.is-reversed .service-editorial-copy {
    grid-column: 1;
    grid-row: 1;
}

.service-editorial-media {
    position: relative;
    min-height: 500px;
    margin: 0;
    overflow: hidden;
    border-radius: 26px;
    background: #06121f;
    box-shadow: 0 24px 60px rgba(0,0,0,.34);
    isolation: isolate;
}

.service-editorial-media::before,
.service-editorial-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.service-editorial-media::before {
    z-index: 1;
    background:
        linear-gradient(to top, rgba(2,10,18,.74), transparent 54%),
        linear-gradient(120deg, rgba(93,255,208,.18), transparent 38%, rgba(255,209,102,.11));
}

.service-editorial-media::after {
    z-index: 2;
    border: 1px solid rgba(173,235,255,.12);
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
}

.service-editorial-media img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.02);
    transition: transform .7s ease, filter .7s ease;
}

.service-editorial-row:hover .service-editorial-media img {
    transform: scale(1.06);
    filter: saturate(1.1) contrast(1.04);
}

.service-editorial-media figcaption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 3;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.service-editorial-media figcaption span {
    color: rgba(255,255,255,.9);
    font-size: clamp(48px, 8vw, 92px);
    line-height: .78;
    font-weight: 950;
}

.service-editorial-media figcaption strong {
    max-width: 220px;
    text-align: right;
    color: #f8fffb;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.service-tag {
    display: inline-flex;
    width: fit-content;
    padding: 7px 11px;
    border-radius: 999px;
    color: #062019;
    background: linear-gradient(135deg, #5dffd0, #1cc7d0);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.service-editorial-copy {
    position: relative;
    display: grid;
    gap: 18px;
    padding: clamp(10px, 1.8vw, 24px) 0;
}

.service-editorial-copy h3 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    text-wrap: balance;
}

.service-lead {
    max-width: 720px;
    margin: 0;
    color: rgba(222,244,249,.9);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.55;
}

.service-narrative {
    display: grid;
    gap: 10px;
    max-width: 740px;
}

.service-narrative p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.service-checkline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 760px;
}

.service-checkline span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #eafff8;
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(173,235,255,.1);
    font-weight: 850;
}

.service-checkline span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 14px rgba(255,209,102,.32);
}

.service-process-line {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 800px;
    margin-top: 4px;
    border-top: 1px solid rgba(173,235,255,.14);
}

.service-process-line span {
    position: relative;
    display: grid;
    gap: 8px;
    padding: 18px 18px 0 0;
    color: #d9fff3;
    font-weight: 850;
    line-height: 1.35;
}

.service-process-line span::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #5dffd0;
    box-shadow: 0 0 18px rgba(93,255,208,.4);
}

.service-process-line strong {
    color: var(--gold);
    font-size: 13px;
}

.service-deliverables {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    max-width: 760px;
}

.service-deliverables small {
    color: #5dffd0;
    font-weight: 950;
    text-transform: uppercase;
}

.service-deliverables span {
    color: rgba(242,251,255,.84);
    font-size: 14px;
}

.service-deliverables span + span::before {
    content: "/";
    margin-right: 10px;
    color: rgba(173,235,255,.32);
}

.service-actions {
    justify-content: flex-start;
    gap: 16px;
    padding-top: 8px;
}

.service-note {
    color: var(--muted);
    font-weight: 850;
}

.work-method-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: start;
    margin: 10px 0 76px;
    padding: 14px 0 0;
}

.work-method-section::before {
    content: "";
    position: absolute;
    inset: -28px calc(50% - 50vw);
    z-index: -1;
    background:
        linear-gradient(90deg, transparent, rgba(93,255,208,.035), transparent),
        linear-gradient(to bottom, transparent, rgba(255,255,255,.025), transparent);
}

.work-method-section h2 {
    margin: 12px 0;
    max-width: 560px;
}

.work-method-copy p,
.work-method-flow p,
.final-contact-section p {
    color: var(--muted);
    line-height: 1.65;
}

.work-method-flow {
    position: relative;
    display: grid;
    gap: 0;
    padding-top: 10px;
}

.work-method-flow::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 18px;
    bottom: 12px;
    width: 1px;
    background: linear-gradient(to bottom, #5dffd0, rgba(173,235,255,.16), #ffd166);
}

.work-method-flow article {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 20px;
    padding: 0 0 30px;
}

.work-method-flow article:last-child {
    padding-bottom: 0;
}

.work-method-flow article span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    color: #06121f;
    background: linear-gradient(135deg, #5dffd0, #ffd166);
    box-shadow: 0 16px 34px rgba(28,199,208,.18);
    font-size: 14px;
    font-weight: 950;
}

.work-method-flow article strong {
    align-self: end;
    color: #f4fffb;
    font-size: 20px;
}

.work-method-flow article p {
    grid-column: 2;
    margin: 6px 0 0;
    max-width: 620px;
}

.final-contact-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    margin: 28px 0 28px;
    padding: clamp(28px, 4vw, 46px) 0 0;
    border-top: 1px solid rgba(173,235,255,.12);
}

.final-contact-section::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: min(360px, 54vw);
    height: 1px;
    background: linear-gradient(90deg, #5dffd0, transparent);
}

.final-contact-copy h2 {
    max-width: 760px;
    margin: 12px 0;
}

.final-contact-copy p {
    max-width: 620px;
}

.final-contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    max-width: 520px;
}

.final-contact-actions span {
    flex-basis: 100%;
    color: var(--muted);
    text-align: right;
    font-weight: 850;
}

.page-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 34px 0 22px;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(173, 235, 255, .085);
    background:
        radial-gradient(circle at 92% 12%, rgba(93,255,208,.09), transparent 18rem),
        linear-gradient(135deg, rgba(12, 47, 78, .5), rgba(255,255,255,.035));
    box-shadow: 0 18px 48px rgba(0,0,0,.26), 0 0 0 1px rgba(93,255,208,.045);
}

.page-hero p {
    max-width: 680px;
    line-height: 1.65;
}

.page-hero.compact h1 {
    font-size: clamp(34px, 5vw, 58px);
}

.product-grid {
    align-items: stretch;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    justify-content: start;
}

.product-card {
    position: relative;
    display: grid;
    grid-template-rows: auto auto minmax(50px, auto) minmax(40px, 1fr) auto auto;
    gap: 10px;
    overflow: hidden;
    width: 100%;
    height: 640px;
    min-height: 0;
    padding: 14px;
    align-self: stretch;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 10%, rgba(255,255,255,.2), transparent 12rem);
    pointer-events: none;
}

.product-card > * {
    position: relative;
}

.product-art {
    display: grid;
    place-items: center;
    width: 100%;
    height: 345px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.36), transparent 26%),
        linear-gradient(135deg, #1cc7d0, #0f6ea3 52%, #5dffd0);
    box-shadow: inset 0 0 40px rgba(255,255,255,.14);
    overflow: hidden;
}

.product-art img,
.category-peliculas .product-art.has-image img,
.category-series .product-art.has-image img,
.category-peliculas_series .product-art.has-image img,
.category-vpns .product-art.has-image img,
.category-ia .product-art.has-image img,
.category-deportes .product-art.has-image img,
.category-software .product-art.has-image img,
.category-musica .product-art.has-image img {
    width: auto;
    height: auto;
    max-width: calc(100% - 2px);
    max-height: calc(100% - 2px);
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 0;
}

.product-art.has-image {
    background:
        radial-gradient(circle at 50% 35%, rgba(93, 255, 208, .08), transparent 14rem),
        rgba(0,0,0,.28);
    box-shadow: inset 0 0 26px rgba(93, 255, 208, .035);
}

.product-art span {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border-radius: 20px;
    background: rgba(8,9,20,.62);
    border: 1px solid rgba(255,255,255,.25);
    font-size: 38px;
    font-weight: 950;
}

.product-card h2 {
    margin: 4px 0 0;
    font-size: 26px;
}

.store-hero,
.support-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 28px;
    align-items: center;
    margin: 34px 0 24px;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(93, 255, 208, .09);
    border-radius: 34px;
    background:
        radial-gradient(circle at 18% 20%, rgba(28, 199, 208, .36), transparent 22rem),
        radial-gradient(circle at 88% 18%, rgba(93, 255, 208, .16), transparent 18rem),
        linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    box-shadow: 0 24px 70px rgba(0,0,0,.32), 0 0 0 1px rgba(93,255,208,.045);
    overflow: hidden;
}

.store-hero h1,
.support-hero h1 {
    max-width: 780px;
    margin: 12px 0 16px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: .96;
}

.store-hero p,
.support-hero p {
    max-width: 660px;
    line-height: 1.7;
    font-size: 17px;
}

.store-pulse,
.support-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 28px;
    background: rgba(0,0,0,.32);
    border: 1px solid rgba(93, 255, 208, .24);
    box-shadow: inset 0 0 28px rgba(93, 255, 208, .045), 0 18px 44px rgba(0,0,0,.26);
}

.store-pulse::before {
    content: "";
    position: absolute;
    width: 96px;
    height: 96px;
    right: 18px;
    top: 18px;
    transform: none;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(93, 255, 208, .18), transparent 70%);
}

.store-pulse span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #bfffd8;
    font-weight: 950;
    text-transform: uppercase;
}

.store-pulse span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--ok);
    box-shadow: 0 0 18px var(--ok);
}

.store-pulse strong {
    display: block;
    margin: 18px 0 10px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: .95;
}

.support-btn {
    border: 1px solid rgba(93, 255, 208, .34) !important;
    background: linear-gradient(135deg, #28d9c2, #0c8390) !important;
    box-shadow: 0 12px 26px rgba(93, 255, 208, .14) !important;
}

.category-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 18px 0 28px;
    padding: 10px;
    border-radius: 999px;
    border: 1px solid rgba(173, 235, 255, .08);
    background: rgba(255,255,255,.035);
}

.category-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 950;
    border: 1px solid transparent;
}

.category-tabs a:hover,
.category-tabs a.active {
    color: #fff;
    background: rgba(93, 255, 208, .105);
    border-color: rgba(93, 255, 208, .16);
}

.category-tabs span {
    display: grid;
    place-items: center;
    min-width: 25px;
    height: 25px;
    padding: 0 7px;
    color: #08150d;
    border-radius: 999px;
    background: var(--ok);
    font-size: 12px;
}

.category-section {
    margin: 30px 0 38px;
}

.category-section .section-title {
    align-items: end;
}

.category-section h2 {
    margin: 10px 0 0;
    font-size: clamp(28px, 4vw, 44px);
}

.store-board {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin: 28px 0 52px;
    min-height: 560px;
}

.store-sidebar {
    position: sticky;
    top: 104px;
    padding: 20px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 0%, rgba(28, 199, 208, .08), transparent 12rem),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.032));
}

.store-sidebar h2 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 16px;
    font-size: 20px;
}

.sidebar-filter {
    width: 18px;
    height: 16px;
    clip-path: polygon(0 0, 100% 0, 64% 46%, 64% 100%, 36% 100%, 36% 46%);
    background: #fff;
}

.store-sidebar nav {
    display: grid;
    gap: 8px;
}

.store-sidebar a {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 45px;
    padding: 9px 12px;
    border-radius: 9px;
    color: var(--text);
    border: 1px solid transparent;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.store-sidebar a:hover,
.store-sidebar a.active {
    color: #18c8ff;
    background: rgba(28, 199, 208, .14);
    border-color: rgba(93, 255, 208, .09);
    box-shadow: inset 3px 0 0 rgba(255, 169, 13, .95);
}

.store-sidebar a:hover {
    transform: translateX(3px);
}

.store-sidebar strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
}

.store-sidebar small {
    color: var(--muted);
    font-weight: 850;
}

.category-mark {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    color: #d7fff6;
    background: rgba(93, 255, 208, .1);
    border: 1px solid rgba(93, 255, 208, .12);
    font-size: 11px;
    font-weight: 950;
}

.store-content {
    min-width: 0;
}

.store-content-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 14px 0 34px;
}

.store-content-head > div {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.store-title-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #06111d;
    background: linear-gradient(135deg, #f3f7ff, #9cfde6);
    box-shadow: 0 0 24px rgba(93, 255, 208, .12);
    font-weight: 950;
}

.store-content-head h1 {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
}

.product-count-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 13px;
    border-radius: 999px;
    color: #18c8ff;
    background: rgba(24, 200, 255, .12);
    font-size: 13px;
    font-weight: 950;
    white-space: nowrap;
}

.store-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.store-empty-state {
    display: grid;
    place-items: center;
    gap: 14px;
    min-height: 320px;
    text-align: center;
    color: var(--muted);
}

.empty-box-icon {
    position: relative;
    width: 56px;
    height: 42px;
    border-radius: 10px 10px 14px 14px;
    background: linear-gradient(135deg, #18c8ff, #0098ff);
    box-shadow: 0 14px 32px rgba(0, 152, 255, .18);
}

.empty-box-icon::before,
.empty-box-icon::after {
    content: "";
    position: absolute;
    top: -8px;
    width: 27px;
    height: 16px;
    border-radius: 5px;
    background: #18c8ff;
}

.empty-box-icon::before {
    left: 2px;
    transform: rotate(13deg);
}

.empty-box-icon::after {
    right: 2px;
    transform: rotate(-13deg);
}

.store-empty-state p {
    margin: 0;
    font-size: 16px;
}

.store-empty-state a {
    color: #18c8ff;
    font-weight: 950;
}

.product-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-card h3 {
    margin: 4px 0 0;
    font-size: 23px;
    line-height: 1.08;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.product-card p:empty {
    visibility: hidden;
}

.product-card h4 {
    margin: 0;
    font-size: 28px;
}

.product-card {
    border-color: rgba(93, 255, 208, .1);
    background:
        radial-gradient(circle at 84% 0%, rgba(93, 255, 208, .09), transparent 12rem),
        linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.038));
}

.product-card:hover {
    border-color: rgba(93, 255, 208, .18);
    box-shadow: 0 20px 52px rgba(0, 0, 0, .28), 0 0 0 1px rgba(93,255,208,.08), 0 12px 34px rgba(93, 255, 208, .08);
}

.product-art {
    background:
        radial-gradient(circle at 30% 20%, rgba(93, 255, 208, .24), transparent 26%),
        linear-gradient(135deg, #061827, #1cc7d0 55%, #28d9c2);
}

.category-peliculas .product-art:not(.has-image),
.category-peliculas_series .product-art:not(.has-image) {
    background: linear-gradient(135deg, #071d32, #1cc7d0 62%, #061827);
}

.category-series .product-art:not(.has-image) {
    background: linear-gradient(135deg, #071d32, #0c8390 50%, #5dffd0);
}

.category-vpns .product-art:not(.has-image) {
    background: linear-gradient(135deg, #02140a, #28d9c2, #092015);
}

.category-ia .product-art:not(.has-image) {
    background: linear-gradient(135deg, #071d32, #1cc7d0, #5dffd0);
}

.category-deportes .product-art:not(.has-image) {
    background: linear-gradient(135deg, #082b35, #5dffd0, #1cc7d0);
}

.category-software .product-art:not(.has-image) {
    background: linear-gradient(135deg, #081a32, #24d7ff, #5dffd0);
}

.category-musica .product-art:not(.has-image) {
    background: linear-gradient(135deg, #111d3a, #1cc7d0 48%, #5dffd0);
}

.empty-store {
    text-align: center;
}

.admin-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.admin-promo-card {
    display: grid;
    gap: 12px;
}

.admin-promo-card img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: contain;
    background: #020a12;
    border-radius: 18px;
    border: 1px solid rgba(173, 235, 255, .1);
}

.admin-promo-card h2 {
    margin: 0;
}

.support-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.support-list span {
    padding: 11px;
    border-radius: var(--radius-sm);
    background: rgba(93, 255, 208, .09);
    border: 1px solid rgba(93, 255, 208, .18);
    color: #caffdc;
    font-weight: 850;
}

.auth-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 34px;
    align-items: center;
    min-height: calc(100vh - 190px);
    padding: 36px 0;
}

.auth-copy {
    position: relative;
    min-width: 0;
    padding: clamp(24px, 5vw, 54px);
    border-radius: 34px;
    border: 1px solid rgba(93, 255, 208, .09);
    background:
        radial-gradient(circle at 16% 16%, rgba(28, 199, 208, .34), transparent 18rem),
        radial-gradient(circle at 88% 20%, rgba(93, 255, 208, .14), transparent 16rem),
        rgba(255,255,255,.045);
    box-shadow: 0 20px 54px rgba(0,0,0,.28), 0 0 0 1px rgba(93,255,208,.04);
    overflow: hidden;
}

.auth-copy::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    transform: none;
    background: radial-gradient(circle, rgba(93,255,208,.16), transparent 70%);
}

.auth-copy h1 {
    max-width: 700px;
    margin: 16px 0;
    font-size: clamp(38px, 6vw, 70px);
    line-height: .96;
    overflow-wrap: anywhere;
}

.auth-copy p {
    max-width: 620px;
    line-height: 1.7;
    font-size: 17px;
}

.auth-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.auth-points span {
    padding: 10px 12px;
    border-radius: 999px;
    color: #d9ffe6;
    background: rgba(93,255,208,.075);
    border: 1px solid rgba(93,255,208,.12);
    font-weight: 900;
}

.auth-card {
    min-width: 0;
    padding: 30px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 90% 0%, rgba(93,255,208,.07), transparent 12rem),
        linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.052)),
        rgba(0,0,0,.18);
}

.auth-mark {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1cc7d0, #0a3158 60%, #5dffd0);
    color: #fff;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(28,199,208,.18), 0 0 18px rgba(93,255,208,.1);
}

.auth-mark.logo-mark {
    width: 118px;
    height: 118px;
    border-radius: 24px;
    padding: 0;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(173,235,255,.14);
    box-shadow: 0 18px 40px rgba(0,0,0,.28), 0 0 28px rgba(28,199,208,.12);
    overflow: hidden;
}

.auth-mark.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.auth-card h2 {
    margin: 18px 0 6px;
    font-size: 34px;
}

.auth-link {
    display: inline-flex;
    margin-top: 16px;
    color: #caffdc;
    font-weight: 900;
}

.price-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-top: 2px;
}

.price-row h3 {
    margin: 0;
    font-size: 32px;
}

.price-row span {
    color: var(--muted);
    font-weight: 800;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.stat {
    color: var(--muted);
}

.stat strong {
    display: block;
    color: var(--text);
    font-size: 30px;
    margin-top: 8px;
}

.admin-hero {
    background: linear-gradient(135deg, rgba(255, 209, 102, .18), rgba(36,215,255,.1));
}

.admin-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: -6px 0 20px;
}

.admin-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--muted);
    background: rgba(255,255,255,.08);
    border: 1px solid var(--line);
    font-weight: 900;
}

.admin-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,.13);
}

.admin-body {
    background:
        radial-gradient(circle at 12% 6%, rgba(28, 199, 208, .18), transparent 24rem),
        radial-gradient(circle at 88% 10%, rgba(93, 255, 208, .1), transparent 22rem),
        linear-gradient(135deg, #06121f 0%, #071827 55%, #04101d 100%);
}

.admin-shell {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 272px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 20px;
    background:
        radial-gradient(circle at 30% 0%, rgba(28,199,208,.2), transparent 16rem),
        linear-gradient(180deg, rgba(8,35,58,.9), rgba(3,13,24,.96));
    border-right: 1px solid rgba(93,255,208,.075);
    box-shadow: 14px 0 42px rgba(0,0,0,.26);
    overflow-y: auto;
    z-index: 20;
}

.admin-sidebar-brand {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.admin-sidebar-brand span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1cc7d0, #0a3158 65%, #5dffd0);
    color: #fff;
    font-weight: 950;
    grid-row: 1 / 3;
    overflow: hidden;
}

.admin-sidebar-brand span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.admin-sidebar-brand strong,
.admin-sidebar-brand small {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-sidebar-brand small {
    grid-column: 2;
    color: var(--muted);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.admin-sidebar-brand strong {
    grid-column: 2;
    align-self: end;
}

.admin-sidebar nav {
    display: grid;
    gap: 8px;
}

.admin-sidebar nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 11px 12px;
    border-radius: 18px;
    color: var(--muted);
    font-weight: 950;
    border: 1px solid transparent;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
    color: #fff;
    background: rgba(93, 255, 208, .085);
    border-color: rgba(93, 255, 208, .12);
}

.admin-sidebar-actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.admin-main {
    width: calc(100% - 272px);
    max-width: none;
    margin-left: 272px;
    padding: 24px 28px 34px;
    min-height: 100vh;
}

.admin-body .admin-nav {
    display: none;
}

.admin-body .topbar {
    border-bottom-color: rgba(28, 199, 208, .24);
}

.admin-body .page-hero {
    background:
        linear-gradient(135deg, rgba(13, 49, 82, .72), rgba(255,255,255,.045)),
        radial-gradient(circle at 95% 10%, rgba(93, 255, 208, .12), transparent 18rem);
    border-color: rgba(93,255,208,.09);
}

.admin-body .page-hero {
    margin-top: 0;
    margin-bottom: 16px;
    padding: 20px;
    min-height: auto;
}

.admin-body .page-hero.compact h1,
.admin-body .page-hero h1 {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
    margin: 8px 0;
}

.admin-body .page-hero p {
    margin: 0;
    max-width: 760px;
}

.admin-body .page-hero .actions {
    justify-content: flex-end;
}

.admin-body .stats {
    gap: 12px;
    margin-bottom: 16px;
}

.admin-body .stat {
    padding: 16px;
}

.admin-body .stat strong {
    font-size: 24px;
}

.admin-body .panel {
    padding: 18px;
}

.admin-body .section-title {
    margin-bottom: 10px;
}

.admin-body .section-title h2 {
    font-size: 20px;
}

.admin-stats {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.dashboard-module {
    position: relative;
    min-height: 116px;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(93, 255, 208, .16);
    background:
        radial-gradient(circle at 85% 12%, rgba(93, 255, 208, .14), transparent 9rem),
        linear-gradient(145deg, rgba(12, 47, 78, .72), rgba(255,255,255,.045));
    box-shadow: 0 16px 42px rgba(0,0,0,.24), 0 0 0 1px rgba(93, 255, 208, .045);
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.dashboard-module:hover {
    transform: translateY(-4px);
    border-color: rgba(93, 255, 208, .16);
    background:
        radial-gradient(circle at 85% 12%, rgba(93, 255, 208, .2), transparent 9rem),
        linear-gradient(145deg, rgba(28,199,208,.15), rgba(255,255,255,.06));
}

.dashboard-module span,
.dashboard-module small {
    display: block;
    color: var(--muted);
    font-weight: 900;
}

.dashboard-module strong {
    display: block;
    margin: 10px 0 12px;
    color: var(--text);
    font-size: 21px;
    line-height: 1;
}

.dashboard-hero {
    align-items: stretch;
}

.dashboard-hero-summary {
    display: grid;
    place-items: center;
    min-width: 180px;
    padding: 16px 20px;
    border: 1px solid rgba(93, 255, 208, .18);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    text-align: center;
}

.dashboard-hero-summary span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.dashboard-hero-summary strong {
    color: var(--text);
    font-size: 38px;
    line-height: 1;
}

.dashboard-priority-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.dashboard-priority-card {
    display: grid;
    gap: 8px;
    min-height: 132px;
    padding: 16px;
    border: 1px solid rgba(173, 235, 255, .14);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.dashboard-priority-card:hover {
    transform: translateY(-3px);
    border-color: rgba(93, 255, 208, .28);
    background: rgba(255,255,255,.075);
}

.dashboard-priority-card span,
.dashboard-priority-card small,
.dashboard-metric-card span,
.dashboard-metric-card small,
.dashboard-action span {
    color: var(--muted);
    font-weight: 900;
}

.dashboard-priority-card strong {
    color: var(--text);
    font-size: 34px;
    line-height: 1;
}

.dashboard-priority-card.ok {
    border-color: rgba(93, 255, 208, .18);
}

.dashboard-priority-card.warn {
    border-color: rgba(255, 199, 95, .32);
}

.dashboard-priority-card.danger {
    border-color: rgba(255, 90, 116, .35);
}

.dashboard-overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 14px;
    margin-bottom: 14px;
}

.dashboard-main-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.dashboard-metric-card {
    min-height: 132px;
    padding: 16px;
    border: 1px solid rgba(173, 235, 255, .13);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
}

.dashboard-metric-card strong {
    display: block;
    margin: 12px 0 8px;
    color: var(--text);
    font-size: 26px;
    line-height: 1.05;
}

.dashboard-inventory-card {
    display: grid;
    gap: 14px;
}

.dashboard-ring {
    width: 148px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    justify-self: center;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(7, 23, 41, .96) 0 56%, transparent 57%),
        conic-gradient(var(--accent) var(--value), rgba(255,255,255,.09) 0);
}

.dashboard-ring strong,
.dashboard-ring span {
    grid-area: 1 / 1;
    display: block;
    text-align: center;
}

.dashboard-ring strong {
    color: var(--text);
    font-size: 30px;
    transform: translateY(-8px);
}

.dashboard-ring span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    transform: translateY(18px);
}

.dashboard-inventory-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.dashboard-inventory-numbers span {
    display: grid;
    gap: 4px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255,255,255,.055);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.dashboard-inventory-numbers strong {
    color: var(--text);
    font-size: 18px;
}

.dashboard-action-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 16px;
}

.dashboard-action {
    display: grid;
    gap: 5px;
    padding: 13px 14px;
    border: 1px solid rgba(93, 255, 208, .15);
    border-radius: 14px;
    background: rgba(93, 255, 208, .055);
}

.dashboard-action strong {
    color: var(--text);
}

.dashboard-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .85fr);
    gap: 14px;
    align-items: start;
}

.dashboard-panel-large {
    min-height: 300px;
}

.dashboard-stock-item {
    display: grid;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.dashboard-stock-item:last-child {
    border-bottom: 0;
}

.dashboard-stock-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dashboard-stock-head strong {
    color: var(--text);
}

.dashboard-progress {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}

.dashboard-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), #bff4ff);
}

.dashboard-stock-item small {
    color: var(--muted);
    font-weight: 900;
}

.view-site-btn {
    border-color: rgba(93, 255, 208, .35) !important;
    color: #d9ffe6 !important;
}

.admin-grid {
    align-items: start;
    margin-bottom: 18px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.section-title h2 {
    margin: 0;
}

.section-title a {
    color: #bff4ff;
    font-weight: 900;
}

.stock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.stock-row:last-child {
    border-bottom: 0;
}

.stock-row strong,
.stock-row span {
    display: block;
}

.dashboard-stock-scroll {
    max-height: 360px;
    overflow-y: auto;
    padding-right: 8px;
}

.dashboard-stock-scroll::-webkit-scrollbar {
    width: 8px;
}

.dashboard-stock-scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(173, 235, 255, .22);
}

.dashboard-stock-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,.04);
    border-radius: 999px;
}

.danger-row {
    border-color: rgba(255,90,116,.28);
}

.admin-form {
    margin-bottom: 20px;
}

.form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid .wide {
    grid-column: 1 / -1;
}

.filter-panel {
    margin: 18px 0;
}

.filters {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    align-items: end;
}

.inline-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.short-input {
    min-width: 96px;
    max-width: 130px;
}

.admin-body td input,
.admin-body td select {
    min-width: 112px;
}

.account-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.account-card h2 {
    margin: 10px 0;
    font-size: 22px;
    overflow-wrap: anywhere;
}

.profile-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.profile-list > div {
    display: grid;
    grid-template-columns: minmax(90px, 1fr) minmax(140px, 1.2fr) auto;
    gap: 10px;
    align-items: center;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(0,0,0,.18);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 18px 0;
}

.payment-method-card {
    padding: 14px;
    border: 1px solid rgba(93, 255, 208, .2);
    border-radius: var(--radius);
    background: rgba(93, 255, 208, .07);
}

.payment-method-card strong,
.payment-method-card span {
    display: block;
    margin-bottom: 6px;
}

.method-admin-thumb {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: contain;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(173,235,255,.12);
    color: var(--accent);
    font-weight: 950;
}

.method-admin-thumb.placeholder {
    background: rgba(28,199,208,.14);
}

.recharge-shell {
    margin: 28px 0;
}

.recharge-head {
    margin-bottom: 20px;
}

.recharge-head h1 {
    margin: 12px 0 8px;
    font-size: clamp(34px, 5vw, 58px);
}

.recharge-layout {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
    gap: 18px;
    align-items: start;
    min-width: 0;
}

.recharge-methods {
    display: grid;
    gap: 12px;
    min-height: 520px;
    min-width: 0;
    overflow: hidden;
}

.recharge-method-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(173, 235, 255, .11);
    background: rgba(255,255,255,.045);
    cursor: pointer;
    min-width: 0;
    width: 100%;
}

.recharge-method-card:has(input:checked) {
    border-color: rgba(28, 199, 208, .85);
    background: rgba(28, 199, 208, .14);
    box-shadow: 0 0 0 1px rgba(93,255,208,.14), 0 14px 34px rgba(28,199,208,.12);
}

.recharge-method-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.recharge-method-card > span:last-child {
    min-width: 0;
}

.method-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(28,199,208,.16);
    color: var(--accent);
    font-weight: 950;
    overflow: hidden;
}

.method-icon.has-image {
    background: rgba(0,0,0,.2);
    border: 1px solid rgba(173,235,255,.12);
}

.method-icon img {
    display: block;
    width: auto;
    height: auto;
    max-width: calc(100% - 6px);
    max-height: calc(100% - 6px);
    object-fit: contain;
}

.recharge-method-card strong,
.recharge-method-card small,
.recharge-method-card em {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: anywhere;
}

.recharge-method-card small,
.recharge-method-card em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.recharge-side {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.amount-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 14px;
}

.amount-chips button {
    min-height: 34px;
    padding: 7px 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(173,235,255,.11);
    box-shadow: none;
}

.voucher-drop {
    position: relative;
    min-height: 120px;
    display: grid;
    place-items: center;
    gap: 7px;
    text-align: center;
    border: 1px dashed rgba(173,235,255,.3);
    border-radius: 18px;
    padding: 22px;
    background: rgba(0,0,0,.16);
    cursor: pointer;
}

.voucher-drop input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.voucher-drop span {
    color: var(--muted);
    font-size: 12px;
}

.method-detail-card {
    min-height: 0;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 18px;
    border-radius: 22px;
    background: rgba(0,0,0,.16);
    gap: 10px;
    overflow: visible;
}

.method-detail.has-method-image-panel {
    width: min(540px, 100%);
    justify-self: center;
    padding: 24px;
}

.method-detail.has-method-image-panel h2 {
    text-align: center;
}

.method-detail-card.has-method-image {
    align-content: center;
    grid-template-rows: auto auto auto;
    gap: 10px;
    padding: 10px;
    width: fit-content;
    max-width: min(460px, 100%);
    margin-inline: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.method-detail-icon {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(28,199,208,.18), rgba(93,255,208,.08));
    color: var(--accent);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .08em;
    overflow: hidden;
}

.method-detail-icon.method-detail-image {
    width: min(420px, 84vw);
    height: auto;
    border-radius: 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.method-detail-icon img {
    display: block;
    width: auto;
    height: auto;
    max-width: calc(100% - 12px);
    max-height: calc(100% - 12px);
    object-fit: contain;
}

.method-detail-icon.method-detail-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    border-radius: 14px;
}

.selected-method-name,
.selected-method-holder,
.selected-method-number {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.selected-method-name {
    color: var(--text);
    font-size: 20px;
}

.selected-method-holder,
.selected-method-instructions {
    color: var(--muted);
}

.selected-method-number {
    margin-top: 8px;
    padding: 9px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.055);
    color: #d8fff3;
}

.recharge-submit {
    width: 100%;
}

.recharge-shell {
    max-width: 1180px;
    margin: 30px auto 42px;
}

.recharge-head {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.recharge-head h1 {
    margin: 10px 0 0;
    font-size: clamp(32px, 4vw, 48px);
}

.recharge-head .muted {
    max-width: 740px;
}

.recharge-overview {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 12px;
    margin-top: 4px;
}

.recharge-overview div {
    padding: 16px;
    border: 1px solid rgba(173,235,255,.12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

.recharge-overview span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.recharge-overview strong {
    display: block;
    margin-top: 6px;
    font-size: 20px;
}

.recharge-layout {
    grid-template-columns: minmax(300px, .82fr) minmax(360px, 1.18fr);
    gap: 20px;
}

.recharge-methods,
.recharge-amount,
.voucher-panel,
.method-detail {
    border-radius: 20px;
}

.recharge-methods {
    min-height: 0;
    align-content: start;
    position: sticky;
    top: 96px;
}

.recharge-methods h2,
.recharge-amount h2,
.voucher-panel h2,
.method-detail h2 {
    margin-top: 0;
}

.recharge-method-card {
    border-radius: 16px;
    background: rgba(9, 24, 36, .54);
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.recharge-method-card:hover {
    transform: translateY(-1px);
    border-color: rgba(93,255,208,.24);
}

.recharge-method-card:has(input:checked) {
    background: linear-gradient(135deg, rgba(28,199,208,.2), rgba(93,255,208,.08));
}

.method-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
}

.recharge-side {
    gap: 16px;
}

.recharge-amount {
    background:
        linear-gradient(135deg, rgba(28,199,208,.1), rgba(255,255,255,.045)),
        linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}

.amount-chips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.amount-chips button {
    min-height: 42px;
    border-radius: 14px;
    font-weight: 950;
}

.amount-chips button:hover {
    background: rgba(28,199,208,.18);
}

.recharge-amount input[name="amount"] {
    font-size: 26px;
    font-weight: 950;
    padding: 18px;
}

.voucher-drop {
    min-height: 150px;
    border-radius: 20px;
    border-color: rgba(93,255,208,.32);
    background:
        linear-gradient(135deg, rgba(93,255,208,.08), rgba(28,199,208,.06)),
        rgba(0,0,0,.14);
}

.voucher-drop strong {
    font-size: 18px;
}

.method-detail-card {
    grid-template-columns: auto minmax(0, 1fr);
    place-items: initial;
    text-align: left;
    align-items: center;
    border: 1px solid rgba(173,235,255,.11);
    background: rgba(8, 22, 34, .52);
}

.selected-method-instructions {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.recharge-submit {
    min-height: 54px;
    border-radius: 18px;
    font-size: 16px;
}

@media (max-width: 760px) {
    .recharge-shell {
        margin-top: 18px;
    }

    .recharge-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .recharge-layout {
        grid-template-columns: 1fr;
    }

    .recharge-methods {
        position: static;
    }

    .amount-chips {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .method-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
        place-items: center;
    }
}

@media (max-width: 460px) {
    .recharge-overview {
        grid-template-columns: 1fr;
    }

    .recharge-method-card {
        grid-template-columns: 42px minmax(0, 1fr);
    }
}

.admin-recharge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 16px;
}

.recharge-money {
    font-size: 28px;
}

.recharge-admin-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0;
}

.recharge-admin-details span {
    padding: 10px;
    border-radius: 16px;
    background: rgba(255,255,255,.045);
    color: var(--muted);
}

.recharge-admin-details strong {
    display: block;
    color: var(--text);
    margin-top: 4px;
}

.voucher-preview {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    color: #caffdc;
    font-weight: 900;
}

.user-management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 16px;
}

.user-management-grid[hidden] {
    display: none !important;
}

.user-detail-panel,
.purchase-admin-card {
    display: grid;
    gap: 18px;
}

.purchase-admin-grid,
.account-profile-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.purchase-admin-card form,
.account-profile-admin-grid form {
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.purchase-table-panel {
    margin-top: 18px;
}

.purchase-admin-table {
    min-width: 1320px;
}

.purchase-admin-table td {
    vertical-align: top;
}

.purchase-admin-table td strong,
.purchase-admin-table td span {
    display: block;
}

.purchase-admin-table .badge {
    display: inline-flex;
    margin: 0 6px 6px 0;
}

.purchase-table-actions {
    min-width: 520px;
}

.purchase-table-form {
    display: grid;
    grid-template-columns: 120px minmax(145px, 1fr) minmax(170px, 1.2fr) auto;
    gap: 8px;
    align-items: end;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.purchase-table-form:first-child {
    padding-top: 0;
}

.purchase-table-form:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.purchase-table-form.compact {
    grid-template-columns: 92px minmax(145px, 1fr) minmax(170px, 1.2fr) auto;
}

.purchase-table-form label {
    min-width: 0;
    font-size: 12px;
}

.purchase-table-form input,
.purchase-table-form select {
    width: 100%;
}

.purchase-table-form button {
    min-height: 40px;
    white-space: nowrap;
}

.purchase-table-form.danger-action {
    grid-template-columns: 112px minmax(220px, 1fr) auto;
}

.dynamic-profiles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.user-admin-card h2 {
    margin: 10px 0 4px;
}

.user-table-panel {
    margin-top: 18px;
}

.user-admin-table {
    min-width: 1080px;
}

.user-admin-table th {
    white-space: nowrap;
}

.user-admin-table td {
    vertical-align: middle;
}

.user-admin-table td:first-child strong,
.user-admin-table td:first-child span {
    display: block;
}

.user-admin-table .muted {
    font-size: 13px;
}

.table-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.table-actions .inline-form {
    margin: 0;
}

.table-actions .btn,
.table-actions button {
    min-height: 32px;
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 12px;
}

.user-card-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.user-card-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(80px, 1fr));
    gap: 8px;
    min-width: 210px;
}

.user-card-metrics span {
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.06);
    color: var(--muted);
    font-weight: 800;
}

.user-card-metrics strong {
    display: block;
    margin-top: 4px;
    color: var(--text);
    font-size: 18px;
}

code {
    display: inline-flex;
    max-width: 220px;
    overflow-wrap: anywhere;
    white-space: normal;
    padding: 5px 8px;
    border-radius: var(--radius-sm);
    color: #dff8ff;
    background: rgba(0,0,0,.24);
    border: 1px solid var(--line);
}

form {
    display: grid;
    gap: 13px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--text);
    font-weight: 800;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.055);
}

.check-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    accent-color: var(--accent);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 13px;
    font: inherit;
    color: var(--text);
    background: rgba(255,255,255,.08);
    outline: none;
}

.password-field {
    position: relative;
    display: block;
    width: 100%;
}

.password-field input {
    padding-right: 52px;
}

.auth-single .password-field input:focus,
.password-field input:focus {
    transform: none;
}

.password-toggle {
    appearance: none;
    position: absolute;
    top: 50%;
    right: 8px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: var(--muted);
    box-shadow: none;
    transform: translateY(-50%);
    line-height: 1;
}

.password-toggle:hover {
    color: var(--text);
    filter: none;
    box-shadow: none;
    transform: translateY(-50%);
}

.password-toggle::before {
    display: none !important;
    content: none !important;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.password-toggle[aria-pressed="true"] {
    color: var(--accent);
    background: rgba(28,199,208,.14);
}

select option {
    color: #101426;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(36,215,255,.14);
}

textarea {
    min-height: 96px;
    resize: vertical;
}

.form-panel,
.purchase-panel {
    max-width: 620px;
    margin: 36px auto;
}

.checkout-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.checkout-summary div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.07);
}

.checkout-summary span {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 800;
}

.checkout-summary strong {
    font-size: 20px;
}

.modal-open {
    overflow: hidden;
}

.purchase-confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(3, 12, 18, .72);
    backdrop-filter: blur(12px);
}

.purchase-confirm-modal[hidden] {
    display: none;
}

.purchase-confirm-card {
    width: min(460px, 100%);
    padding: 24px;
    border: 1px solid rgba(93, 255, 208, .2);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(31, 54, 68, .98), rgba(15, 31, 42, .98));
    box-shadow: 0 28px 70px rgba(0,0,0,.42), 0 0 0 1px rgba(36,215,255,.08);
}

.purchase-result-card {
    text-align: left;
}

.success-check {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #8fffe0, #20d2b2 48%, #117a6f);
    box-shadow: 0 0 0 8px rgba(93,255,208,.1), 0 18px 38px rgba(32,210,178,.22);
    position: relative;
    animation: success-pop .42s cubic-bezier(.2, 1.35, .32, 1) both;
}

.success-check::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 15px;
    width: 16px;
    height: 26px;
    border: solid #06221f;
    border-width: 0 5px 5px 0;
    transform: rotate(45deg) scale(.7);
    transform-origin: center;
    animation: success-mark .28s ease .18s both;
}

.purchase-error-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ffe58f, #e0a928 52%, #936710);
    color: #1f1704;
    font-size: 34px;
    font-weight: 1000;
    box-shadow: 0 0 0 8px rgba(255,213,92,.1), 0 18px 38px rgba(224,169,40,.2);
    animation: success-pop .42s cubic-bezier(.2, 1.35, .32, 1) both;
}

@keyframes success-pop {
    from { opacity: 0; transform: scale(.72); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes success-mark {
    from { opacity: 0; transform: rotate(45deg) scale(.35); }
    to { opacity: 1; transform: rotate(45deg) scale(1); }
}

.purchase-confirm-card h2 {
    margin: 12px 0 8px;
    font-size: 24px;
    line-height: 1.18;
}

.purchase-confirm-card p {
    margin: 0 0 10px;
}

.purchase-confirm-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.purchase-confirm-actions .btn {
    min-width: 150px;
}

.stock-empty-action {
    position: relative;
    display: inline-flex;
    width: fit-content;
}

.stock-empty-action .btn {
    cursor: not-allowed;
    opacity: .68;
    filter: grayscale(.2);
}

.stock-empty-action::after {
    content: attr(data-empty-stock-message);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    width: max-content;
    max-width: min(240px, 80vw);
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    background: rgba(18, 33, 45, .98);
    color: var(--text);
    box-shadow: 0 16px 34px rgba(0,0,0,.32);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    transform: translate(-50%, 6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 5;
}

.stock-empty-action:hover::after,
.stock-empty-action:focus-visible::after,
.stock-empty-action:focus-within::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.product-card-actions {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 9px;
    margin-top: 12px;
}

.product-card-actions > .btn,
.product-card-actions > .stock-empty-action,
.product-card-actions > .stock-empty-action .btn {
    width: 100%;
}

.product-details-button {
    position: relative;
    width: 44px;
    min-width: 44px;
    padding: 0;
    border-radius: 12px;
}

.product-details-button span {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(93,255,208,.14);
    color: #9ffff0;
    font-size: 12px;
    font-weight: 1000;
}

.product-details-button::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    z-index: 4;
    width: max-content;
    max-width: 120px;
    padding: 6px 9px;
    border: 1px solid rgba(173, 235, 255, .15);
    border-radius: 8px;
    color: var(--text);
    background: #071725;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
    font-size: 11px;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 4px);
    transition: opacity .16s ease, transform .16s ease;
}

.product-details-button:hover::after,
.product-details-button:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.product-details-card {
    position: relative;
    width: min(560px, 100%);
    max-height: min(760px, calc(100vh - 34px));
    overflow: auto;
}

.product-details-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    box-shadow: none;
}

.product-details-media {
    margin: 6px 0 16px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0,0,0,.18);
}

.product-details-media[hidden] {
    display: none;
}

.product-details-media img {
    display: block;
    width: 100%;
    max-height: 240px;
    object-fit: cover;
}

.product-details-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0;
}

.product-details-facts span,
.product-details-specs p {
    padding: 12px;
    border: 1px solid rgba(173,235,255,.11);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
}

.product-details-facts small {
    display: block;
    color: var(--muted);
    font-weight: 850;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .05em;
}

.product-details-facts strong {
    display: block;
    margin-top: 5px;
}

.product-details-specs {
    display: grid;
    gap: 8px;
}

.product-details-specs p {
    margin: 0;
    color: var(--text);
    overflow-wrap: anywhere;
}

@media (max-width: 520px) {
    .purchase-confirm-card {
        padding: 20px;
        border-radius: 14px;
    }

    .purchase-confirm-card h2 {
        font-size: 21px;
    }

    .purchase-confirm-actions {
        display: grid;
    }

    .purchase-confirm-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .stock-empty-action,
    .stock-empty-action .btn {
        width: 100%;
    }

    .product-card-actions {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .product-details-facts {
        grid-template-columns: 1fr;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
}

th,
td {
    padding: 13px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: #dce7ff;
    background: rgba(255,255,255,.08);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

tr:last-child td { border-bottom: 0; }
tr:hover td { background: rgba(255,255,255,.035); }

.table-wrap {
    overflow-x: auto;
    margin: 14px 0 26px;
    border-radius: var(--radius);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(36, 215, 255, .14);
    color: #bff4ff;
    border: 1px solid rgba(36, 215, 255, .25);
    font-size: 12px;
    font-weight: 900;
}

.badge.ok {
    background: rgba(53, 231, 161, .14);
    color: #bfffe7;
    border-color: rgba(53, 231, 161, .28);
}

.badge.warn {
    background: rgba(255, 209, 102, .14);
    color: #ffe9a8;
    border-color: rgba(255, 209, 102, .3);
}

.badge.danger {
    background: rgba(255, 90, 116, .14);
    color: #ffc6d0;
    border-color: rgba(255, 90, 116, .3);
}

.alert {
    padding: 13px 15px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    background: rgba(53, 231, 161, .14);
    color: #d7ffee;
    border: 1px solid rgba(53, 231, 161, .32);
    box-shadow: var(--shadow);
}

.alert.error {
    background: rgba(255, 90, 116, .14);
    color: #ffd9df;
    border-color: rgba(255, 90, 116, .35);
}

.footer {
    display: grid;
    gap: 6px;
    padding: 32px 5vw;
    color: var(--muted);
    text-align: center;
}

.footer strong {
    color: var(--text);
}

.header-search span,
.nav-link::before,
.balance-pill::before {
    display: none !important;
    content: none !important;
}

.header-search input {
    padding-left: 0;
}

.auth-shell {
    grid-template-columns: minmax(220px, .58fr) minmax(340px, 520px);
    gap: 24px;
    align-items: center;
}

.auth-copy {
    padding: clamp(18px, 3vw, 30px);
    border-radius: 24px;
}

.auth-copy::after {
    width: 86px;
    height: 86px;
}

.auth-copy h1 {
    max-width: 420px;
    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.04;
}

.auth-copy p {
    max-width: 380px;
    font-size: 14px;
    line-height: 1.55;
}

.auth-points {
    margin-top: 16px;
}

.auth-points span {
    padding: 8px 10px;
    font-size: 12px;
}

.auth-card {
    padding: clamp(28px, 4vw, 40px);
}

.auth-single {
    display: grid;
    grid-template-columns: minmax(320px, 520px);
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 190px);
    padding: 28px 0 44px;
}

.auth-single .auth-card {
    width: 100%;
    max-width: 520px;
}

.auth-card-links {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.auth-card-links .auth-link {
    margin-top: 0;
}

.auth-card-links.single-link {
    justify-content: center;
}

.register-wizard fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.wizard-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 18px;
}

.wizard-steps span {
    display: grid;
    place-items: center;
    min-height: 34px;
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(173,235,255,.09);
    font-size: 12px;
    font-weight: 900;
}

.wizard-steps span.active {
    color: #062019;
    background: linear-gradient(135deg, #5dffd0, #1cc7d0);
    border-color: rgba(93,255,208,.3);
}

.wizard-step {
    display: none;
    gap: 13px;
}

.wizard-step.active {
    display: grid;
}

.wizard-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
}

.password-rules {
    display: grid;
    gap: 8px;
    margin: 2px 0 4px;
}

.password-rules span {
    color: var(--muted);
    padding: 9px 11px;
    border-radius: 12px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(173,235,255,.08);
    font-size: 13px;
    font-weight: 800;
}

.password-rules span.ok {
    color: #caffdc;
    background: rgba(93,255,208,.08);
    border-color: rgba(93,255,208,.2);
}

.register-submit:disabled {
    cursor: not-allowed;
    opacity: .48;
    filter: grayscale(.25);
    transform: none;
}

.category-mark,
.store-title-icon {
    color: #d7fff6;
}

.category-mark svg,
.store-title-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.store-title-icon svg {
    width: 24px;
    height: 24px;
}

.voucher-selected-preview {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(173,235,255,.14);
    background: rgba(0,0,0,.18);
}

.voucher-selected-preview[hidden] {
    display: none;
}

.voucher-selected-preview img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(0,0,0,.2);
}

.voucher-file-name {
    color: var(--muted);
    font-size: 13px;
    overflow-wrap: anywhere;
}

.account-settings {
    margin: 18px 0 28px;
}

.expiry-alert-panel {
    margin: 18px 0;
    border-color: rgba(255, 209, 102, .34);
    background:
        linear-gradient(135deg, rgba(255, 209, 102, .13), rgba(255, 255, 255, .06)),
        rgba(255, 255, 255, .07);
}

.expiry-alert-panel h2 {
    margin-top: 0;
}

.expiry-alert-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 209, 102, .16);
}

.expiry-alert-row strong,
.expiry-alert-row span {
    display: block;
}

.service-filter-panel {
    margin: 18px 0 10px;
}

.service-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-filter-tabs .btn {
    min-height: 38px;
}

.service-filter-tabs .btn span {
    display: inline-grid;
    place-items: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .2);
    font-size: 12px;
}

.brand-logo span,
.admin-sidebar-brand span {
    background: transparent !important;
    border: 0 !important;
    box-shadow: 0 12px 28px rgba(28,199,208,.12);
    overflow: visible !important;
}

.brand-logo img,
.admin-sidebar-brand span img {
    object-fit: contain !important;
}

.auth-single .auth-card {
    position: relative;
    display: grid;
    justify-items: center;
    text-align: center;
    overflow: hidden;
}

.auth-single .auth-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background:
        radial-gradient(circle at 50% 8%, rgba(255, 0, 180, .18), transparent 13rem),
        radial-gradient(circle at 15% 18%, rgba(28, 199, 208, .18), transparent 11rem),
        radial-gradient(circle at 85% 18%, rgba(93, 255, 208, .12), transparent 12rem);
    opacity: .9;
    pointer-events: none;
    animation: authAura 7s ease-in-out infinite;
}

.auth-single .auth-card > * {
    position: relative;
    z-index: 1;
}

.auth-single .auth-card form {
    width: 100%;
    text-align: left;
}

.auth-mark.logo-mark {
    width: 166px;
    height: 166px;
    margin: -4px auto 6px;
    border-radius: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    animation: authLogoFloat 4.8s ease-in-out infinite;
    filter: drop-shadow(0 20px 24px rgba(0,0,0,.26)) drop-shadow(0 0 18px rgba(28,199,208,.2));
}

.auth-mark.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

@keyframes shine {
    0%, 45% { left: -45%; }
    72%, 100% { left: 120%; }
}

@keyframes float {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(16px, -18px, 0) scale(1.06); }
}

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pageAuraShift {
    from { background-position: 0% 0%, 100% 0%, 0 0; }
    to { background-position: 8% 4%, 92% 8%, 0 0; }
}

@keyframes pageGridDrift {
    from { background-position: 0 0, 0 0, 0 0; }
    to { background-position: 0 0, 56px 56px, -56px 56px; }
}

@keyframes pageLightSweep {
    0%, 100% { background-position: -80% 0, 120% 0; opacity: .45; }
    50% { background-position: 120% 0, -60% 0; opacity: .8; }
}

@keyframes carouselFade {
    0% { opacity: 1; }
    33% { opacity: 1; }
    45% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes carouselSoftReveal {
    0% {
        opacity: 0;
        transform: scale(1.055);
        filter: blur(8px) saturate(.9) brightness(.82);
    }
    55% {
        opacity: 1;
        filter: blur(2px) saturate(1) brightness(.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0) saturate(1.04) brightness(1);
    }
}

@keyframes carouselLightWash {
    0% {
        background:
            linear-gradient(to top, rgba(6,18,31,.58), transparent 45%),
            linear-gradient(105deg, transparent 0%, transparent 28%, rgba(255,255,255,0) 38%, transparent 50%);
    }
    42% {
        background:
            linear-gradient(to top, rgba(6,18,31,.58), transparent 45%),
            linear-gradient(105deg, transparent 0%, rgba(93,255,208,.08) 34%, rgba(255,255,255,.14) 45%, transparent 62%);
    }
    100% {
        background:
            linear-gradient(to top, rgba(6,18,31,.58), transparent 45%),
            linear-gradient(105deg, transparent 48%, rgba(255,255,255,0) 68%, transparent 100%);
    }
}

@keyframes carouselCurtainSweep {
    0% {
        opacity: 0;
        transform: skewX(-14deg) translateX(-135%);
    }
    18% {
        opacity: .72;
    }
    70% {
        opacity: .5;
    }
    100% {
        opacity: 0;
        transform: skewX(-14deg) translateX(235%);
    }
}

@keyframes authLogoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-7px) scale(1.025); }
}

@keyframes authAura {
    0%, 100% {
        opacity: .72;
        filter: hue-rotate(0deg);
    }
    50% {
        opacity: 1;
        filter: hue-rotate(18deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .carousel-slide {
        animation: none !important;
        opacity: 0;
    }

    .carousel-slide:first-child {
        opacity: 1;
    }

    .home-carousel.is-changing::after {
        animation: carouselLightWash 1700ms ease !important;
    }

    .carousel-slide.active {
        animation: carouselSoftReveal 1700ms cubic-bezier(.22, .61, .36, 1) both !important;
    }

    .home-carousel.is-changing .carousel-effect-layer span {
        animation: carouselCurtainSweep 1500ms cubic-bezier(.19, 1, .22, 1) both !important;
    }
}

@media (max-width: 1180px) {
    .customer-body {
        padding-top: 122px;
    }

    .topbar {
        grid-template-columns: auto minmax(220px, 1fr);
    }

    .main-nav,
    .topbar nav {
        grid-column: 1 / -1;
        justify-content: center;
        flex-wrap: wrap;
    }

    .service-editorial-row,
    .service-editorial-row.is-reversed {
        grid-template-columns: minmax(260px, .86fr) minmax(0, 1.14fr);
        gap: 34px;
    }

    .service-editorial-media,
    .service-editorial-media img {
        min-height: 440px;
    }

    .streaming-promise-section {
        grid-template-columns: 1fr;
    }

    .streaming-promise-section > .btn {
        justify-self: start;
    }

    .home-story-section,
    .home-story-section.is-reversed {
        grid-template-columns: 1fr;
    }

    .home-story-section.is-reversed .home-story-media,
    .home-story-section.is-reversed .home-story-copy {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 760px) {
    .account-showcase-grid {
        grid-template-columns: 1fr;
    }

    .account-showcase-card img {
        height: 160px;
    }

    .streaming-promise-section {
        margin: 30px 0 40px;
        border-radius: 18px;
    }

    .streaming-promise-section > .btn {
        width: 100%;
    }

    .home-story-stack {
        gap: 42px;
    }

    .home-story-section {
        min-height: 0;
        padding: 0 0 40px;
    }

    .home-story-media,
    .home-story-section.is-reversed .home-story-media {
        border-radius: 20px;
        transform: none;
    }

    .home-story-media,
    .home-story-media img {
        min-height: 220px;
    }

    .home-story-copy {
        padding-left: 22px;
    }

    .home-story-copy h3 {
        font-size: clamp(30px, 10vw, 42px);
    }

    .home-story-copy p {
        font-size: 15.5px;
    }

    .home-story-pills {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .home-story-pills span {
        min-height: 0;
        padding: 10px 0 10px 24px;
        width: 100%;
    }

    .home-story-copy .btn {
        width: 100%;
    }
}

@media (max-width: 860px) {
    .admin-shell {
        display: block;
    }

    .admin-sidebar {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        padding: 16px;
    }

    .admin-sidebar nav {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }

    .admin-sidebar-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-main {
        width: 100%;
        margin-left: 0;
        padding: 18px;
    }

    .auth-shell {
        grid-template-columns: 1fr;
    }

    .user-card-head {
        flex-direction: column;
    }

    .user-card-metrics {
        width: 100%;
        min-width: 0;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 28px;
    }

    .home-carousel {
        min-height: 620px;
        border-radius: 0;
        margin-top: -18px;
    }

    .store-hero,
    .support-hero {
        grid-template-columns: 1fr;
    }

    .work-method-section,
    .final-contact-section {
        grid-template-columns: 1fr;
    }

    .final-contact-section {
        align-items: start;
    }

    .final-contact-actions {
        justify-content: flex-start;
        max-width: none;
    }

    .final-contact-actions span {
        text-align: left;
    }

    .service-editorial-row,
    .service-editorial-row.is-reversed {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 22px;
    }

    .service-editorial-row.is-reversed .service-editorial-media,
    .service-editorial-row.is-reversed .service-editorial-copy {
        grid-column: auto;
        grid-row: auto;
    }

    .service-editorial-media,
    .service-editorial-media img {
        min-height: 380px;
    }

    .service-process-line {
        grid-template-columns: 1fr;
        gap: 12px;
        border-top: 0;
    }

    .service-process-line span {
        padding: 0 0 0 22px;
    }

    .service-process-line span::before {
        top: 6px;
    }

    .store-board {
        grid-template-columns: 1fr;
        gap: 22px;
        min-height: auto;
    }

    .store-sidebar {
        position: relative;
        top: auto;
    }

    .store-sidebar nav {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .recharge-layout {
        grid-template-columns: 1fr;
    }

    .recharge-methods {
        min-height: auto;
    }

    .stream-showcase {
        min-height: 390px;
    }

    .page-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .checkout-summary {
        grid-template-columns: 1fr;
    }

    .support-list {
        grid-template-columns: 1fr;
    }

    .recharge-admin-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .customer-body {
        padding-top: 208px;
    }

    .topbar {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .main-nav,
    .topbar nav {
        grid-column: auto;
        width: 100%;
        justify-content: flex-start;
    }

    .main-nav a,
    .topbar nav a {
        flex: 1 1 auto;
    }

    .header-search {
        width: 100%;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 42px;
    }

    .home-carousel {
        min-height: 560px;
        padding: 26px;
        border-radius: 0;
    }

    .home-carousel h1 {
        font-size: 32px;
    }

    .product-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-editorial-stack {
        gap: 42px;
        margin-bottom: 62px;
    }

    .service-editorial-media,
    .service-editorial-media img {
        min-height: 300px;
    }

    .service-editorial-media figcaption {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .service-editorial-copy h3 {
        font-size: 34px;
    }

    .service-lead {
        font-size: 17px;
    }

    .service-deliverables span + span::before {
        content: "";
        margin-right: 0;
    }

    .store-board {
        margin-top: 18px;
    }

    .store-sidebar {
        padding: 16px;
    }

    .store-sidebar nav {
        display: flex;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
    }

    .store-sidebar a {
        min-width: 150px;
        scroll-snap-align: start;
    }

    .store-content-head {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 4px;
    }

    .store-content-head h1 {
        font-size: 34px;
    }

    .product-card {
        width: 100%;
        height: auto;
        min-height: 560px;
    }

    .product-art {
        height: min(360px, 92vw);
    }

    .carousel-dots {
        left: 50%;
        bottom: 22px;
    }

    .mini-service {
        position: relative;
        inset: auto !important;
        justify-self: stretch;
        text-align: center;
    }

    .stream-showcase {
        gap: 10px;
        min-height: auto;
    }

    .orb {
        display: none;
    }
}

/* Auth motion layer */
.auth-single {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.auth-single::before,
.auth-single::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.auth-single::before {
    background:
        linear-gradient(110deg, transparent 0 24%, rgba(28,199,208,.24) 25%, transparent 26% 52%, rgba(255,0,180,.18) 53%, transparent 54%),
        linear-gradient(70deg, transparent 0 38%, rgba(93,255,208,.16) 39%, transparent 40% 72%, rgba(36,215,255,.16) 73%, transparent 74%);
    background-size: 360px 100%, 460px 100%;
    opacity: .45;
    animation: authLightSweep 9s linear infinite;
}

.auth-single::after {
    background:
        repeating-linear-gradient(115deg, transparent 0 36px, rgba(28,199,208,.08) 37px 39px, transparent 40px 92px),
        repeating-linear-gradient(65deg, transparent 0 58px, rgba(255,0,180,.065) 59px 61px, transparent 62px 128px);
    opacity: .5;
    animation: authStreakDrift 14s linear infinite;
}

.auth-single .auth-card {
    animation: authCardIn .72s cubic-bezier(.2,.9,.2,1) both;
}

.auth-single .auth-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(120deg, rgba(93,255,208,.15), rgba(255,0,180,.42), rgba(28,199,208,.48), rgba(93,255,208,.15));
    background-size: 260% 260%;
    pointer-events: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: authBorderFlow 5s linear infinite;
}

.auth-mark.logo-mark {
    animation: authLogoFloat 4.8s ease-in-out infinite, authLogoGlow 2.8s ease-in-out infinite;
}

.auth-single input {
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease, transform .22s ease;
}

.auth-single input:focus {
    transform: translateY(-1px);
    background: rgba(255,255,255,.105);
}

.auth-single button:not(.password-toggle):not(:disabled),
.auth-single .btn:not(:disabled) {
    position: relative;
    overflow: hidden;
}

.auth-single button:not(.password-toggle):not(:disabled)::before,
.auth-single .btn:not(:disabled)::before {
    content: "";
    position: absolute;
    inset: -80% auto -80% -60%;
    width: 40%;
    transform: rotate(18deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
    pointer-events: none;
    animation: authButtonFlash 3.2s ease-in-out infinite;
}

.wizard-step.active {
    animation: wizardStepIn .34s ease both;
}

@keyframes authLogoGlow {
    0%, 100% {
        filter: drop-shadow(0 20px 24px rgba(0,0,0,.26)) drop-shadow(0 0 14px rgba(28,199,208,.18));
    }
    50% {
        filter: drop-shadow(0 24px 30px rgba(0,0,0,.32)) drop-shadow(0 0 30px rgba(255,0,180,.26)) drop-shadow(0 0 22px rgba(28,199,208,.28));
    }
}

@keyframes authCardIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.975);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes authLightSweep {
    from { background-position: 0 0, 0 0; }
    to { background-position: 720px 0, -920px 0; }
}

@keyframes authStreakDrift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 520px 0, -440px 0; }
}

@keyframes authBorderFlow {
    from { background-position: 0% 50%; }
    to { background-position: 260% 50%; }
}

@keyframes authButtonFlash {
    0%, 42% { left: -60%; }
    68%, 100% { left: 125%; }
}

@keyframes wizardStepIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .auth-single::before,
    .auth-single::after,
    .auth-single .auth-card,
    .auth-single .auth-card::before,
    .auth-single .auth-card::after,
    .auth-mark.logo-mark,
    .auth-single button:not(.password-toggle)::before,
    .auth-single .btn::before,
    .wizard-step.active {
        animation-play-state: running !important;
    }

    .auth-single::before { animation: authLightSweep 9s linear infinite !important; }
    .auth-single::after { animation: authStreakDrift 14s linear infinite !important; }
    .auth-single .auth-card { animation: authCardIn .72s cubic-bezier(.2,.9,.2,1) both !important; }
    .auth-single .auth-card::before { animation: authAura 7s ease-in-out infinite !important; }
    .auth-single .auth-card::after { animation: authBorderFlow 5s linear infinite !important; }
    .auth-mark.logo-mark { animation: authLogoFloat 4.8s ease-in-out infinite, authLogoGlow 2.8s ease-in-out infinite !important; }
    .auth-single button:not(.password-toggle):not(:disabled)::before,
    .auth-single .btn:not(:disabled)::before { animation: authButtonFlash 3.2s ease-in-out infinite !important; }
    .wizard-step.active { animation: wizardStepIn .34s ease both !important; }
}

/* Mobile-first rescue layer for the whole storefront/admin app */
img,
svg,
video,
canvas {
    max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
strong,
span,
a,
td,
th,
label,
input,
select,
textarea,
button,
.btn,
.badge {
    min-width: 0;
}

p,
h1,
h2,
h3,
h4,
.muted,
.badge,
.btn,
button,
code,
td {
    overflow-wrap: anywhere;
}

.btn,
button {
    text-align: center;
}

@media (max-width: 760px) {
    body {
        background-attachment: scroll;
    }

    .customer-body {
        padding-top: 0;
    }

    .customer-body .topbar {
        position: sticky;
    }

    .topbar {
        top: 0;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 10px;
        min-height: 0;
        padding: 10px 12px;
    }

    .brand-logo span {
        width: 46px;
        height: 46px;
    }

    .header-search {
        height: 44px;
        padding-inline: 12px;
    }

    .main-nav,
    .topbar nav {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        justify-content: stretch;
        width: 100%;
    }

    .main-nav a,
    .topbar nav a,
    .main-nav a:not(.btn),
    .topbar nav a:not(.btn),
    .balance-pill,
    .btn.small {
        width: 100%;
        min-height: 38px;
        padding: 8px 9px;
        justify-content: center;
        border-radius: 12px;
        font-size: 12px;
        line-height: 1.15;
        white-space: normal;
    }

    .nav-link {
        gap: 5px;
    }

    .nav-link::before {
        width: auto;
        font-size: 13px;
    }

    .container,
    .customer-body .container {
        width: min(100% - 24px, 1760px);
        margin: 18px auto;
    }

    .panel,
    .card,
    .page-hero,
    .store-hero,
    .support-hero,
    .work-method-section,
    .final-contact-section {
        border-radius: 18px;
    }

    .panel,
    .card {
        padding: 16px;
    }

    .page-hero {
        padding: 18px;
        margin: 18px 0;
        align-items: stretch;
        flex-direction: column;
    }

    .page-hero h1,
    .store-hero h1,
    .support-hero h1,
    .recharge-head h1 {
        font-size: clamp(30px, 10vw, 42px);
        line-height: 1.05;
    }

    .actions,
    .page-hero .actions,
    .admin-body .page-hero .actions {
        align-items: stretch;
        justify-content: stretch;
    }

    .actions .btn,
    .actions button,
    form > .btn,
    form > button {
        flex: 1 1 100%;
        width: 100%;
    }

    .grid,
    .stats,
    .admin-stats,
    .admin-dashboard-grid,
    .admin-grid,
    .account-grid,
    .admin-recharge-grid,
    .user-management-grid,
    .purchase-admin-grid,
    .account-profile-admin-grid,
    .admin-promo-grid,
    .support-list,
    .payment-methods {
        grid-template-columns: 1fr;
    }

    .form-grid,
    .filters,
    .dynamic-profiles-grid,
    .checkout-summary,
    .recharge-admin-details,
    .profile-list > div {
        grid-template-columns: 1fr;
    }

    .short-input,
    .admin-body td input,
    .admin-body td select {
        max-width: none;
        min-width: 0;
    }

    .home-carousel,
    .home-promo-image {
        min-height: min(520px, calc(100svh - 92px));
        margin: -18px calc(50% - 50vw) 28px;
        padding: 22px 16px 54px;
    }

    .home-carousel-content {
        width: 100%;
    }

    .home-carousel-content .actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-carousel h1 {
        font-size: clamp(28px, 10vw, 38px);
    }

    .home-carousel p {
        font-size: 14px;
    }

    .promo-buy-button {
        width: calc(100% - 32px);
        max-width: 360px;
    }

    .product-grid,
    .store-product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        height: auto;
        min-height: 0;
        grid-template-rows: auto;
    }

    .product-art {
        height: min(310px, 82vw);
    }

    .product-card h3,
    .product-card p {
        -webkit-line-clamp: unset;
        min-height: 0;
    }

    .store-board {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 18px 0 34px;
    }

    .store-sidebar {
        position: relative;
        top: auto;
        padding: 14px;
    }

    .store-sidebar nav {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .store-sidebar a {
        min-width: 156px;
        scroll-snap-align: start;
    }

    .store-sidebar a:hover {
        transform: none;
    }

    .store-content-head,
    .section-title,
    .stock-row,
    .expiry-alert-row,
    .price-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .store-content-head > div {
        width: 100%;
    }

    .product-count-pill {
        white-space: normal;
    }

    .recharge-layout {
        grid-template-columns: 1fr;
    }

    .recharge-methods {
        min-height: 0;
        overflow: visible;
    }

    .recharge-method-card {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 12px;
    }

    .amount-chips {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .amount-chips button {
        width: 100%;
    }

    .method-detail.has-method-image-panel {
        width: 100%;
        padding: 16px;
    }

    .method-detail-icon.method-detail-image {
        width: 100%;
    }

    .auth-shell {
        min-height: auto;
        padding: 18px 0;
    }

    .auth-card {
        padding: 20px;
        border-radius: 20px;
    }

    .auth-mark.logo-mark {
        width: min(138px, 48vw);
        height: min(138px, 48vw);
    }

    .wizard-steps {
        grid-template-columns: 1fr;
    }

    .wizard-actions {
        grid-template-columns: 1fr;
    }

    .service-editorial-copy h3 {
        font-size: clamp(28px, 10vw, 36px);
    }

    .service-checkline,
    .service-deliverables {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-deliverables span + span::before {
        content: none;
    }

    .work-method-section,
    .final-contact-section {
        padding: 22px;
    }

    .final-contact-actions {
        width: 100%;
    }

    .final-contact-actions span {
        text-align: left;
    }

    .admin-shell {
        display: block;
    }

    .admin-sidebar {
        position: sticky;
        top: 0;
        width: 100%;
        height: auto;
        max-height: 72vh;
        padding: 14px;
    }

    .admin-sidebar nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-sidebar nav a {
        min-height: 40px;
        padding: 9px 10px;
        border-radius: 12px;
        font-size: 13px;
    }

    .admin-sidebar-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-main {
        width: 100%;
        margin-left: 0;
        padding: 16px 12px 28px;
    }

    .admin-body .page-hero,
    .admin-body .panel {
        padding: 16px;
    }

    .dashboard-module,
    .stat {
        min-height: 0;
        border-radius: 18px;
    }

    .table-wrap {
        border-radius: 18px;
    }

    table {
        min-width: 620px;
    }

    th,
    td {
        padding: 11px;
    }

    .footer {
        width: min(100% - 24px, 1140px);
        text-align: center;
    }
}

@media (max-width: 430px) {
    .topbar {
        padding: 8px 10px;
    }

    .main-nav,
    .topbar nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-logo span {
        width: 42px;
        height: 42px;
    }

    .container,
    .customer-body .container {
        width: min(100% - 18px, 1760px);
    }

    .panel,
    .card {
        padding: 14px;
    }

    .home-carousel,
    .home-promo-image {
        min-height: min(500px, calc(100svh - 78px));
        padding-inline: 12px;
    }

    .store-sidebar a {
        min-width: 142px;
    }

    .amount-chips {
        grid-template-columns: 1fr;
    }

    .admin-sidebar nav,
    .admin-sidebar-actions,
    .user-card-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .store-board {
        gap: 12px;
        margin-top: 8px;
    }

    .store-sidebar {
        padding: 12px;
        border-radius: 16px;
    }

    .store-sidebar h2 {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .store-sidebar nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        overflow: visible;
        padding-bottom: 0;
    }

    .store-sidebar a {
        min-width: 0;
        min-height: 40px;
        grid-template-columns: 22px minmax(0, 1fr);
        padding: 8px;
        border-radius: 12px;
    }

    .store-sidebar small {
        display: none;
    }

    .store-sidebar strong {
        font-size: 12px;
        white-space: normal;
        line-height: 1.1;
    }

    .category-mark {
        width: 22px;
        height: 22px;
        border-radius: 7px;
    }

    .store-content-head {
        gap: 10px;
        margin: 8px 0 14px;
    }

    .store-content-head > div {
        gap: 10px;
    }

    .store-title-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        flex: 0 0 auto;
    }

    .store-title-icon svg {
        width: 20px;
        height: 20px;
    }

    .store-content-head h1 {
        font-size: clamp(26px, 8vw, 34px);
        line-height: 1.05;
    }

    .product-count-pill {
        min-height: 24px;
        padding: 5px 10px;
        font-size: 12px;
    }

    .product-grid,
    .store-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .product-card {
        gap: 7px;
        padding: 8px;
        border-radius: 16px;
    }

    .product-card:hover {
        transform: none;
    }

    .product-art {
        height: clamp(118px, 39vw, 160px);
        border-radius: 13px;
    }

    .product-meta {
        gap: 5px;
    }

    .product-meta .badge {
        padding: 4px 6px;
        font-size: 10px;
        line-height: 1;
    }

    .product-card h3 {
        font-size: 14px;
        line-height: 1.12;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-card p {
        min-height: 28px;
        color: rgba(157, 181, 196, .92);
        font-size: 11px;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-card .price-row {
        display: flex;
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
        gap: 6px;
    }

    .product-card h4 {
        font-size: 18px;
        line-height: 1;
    }

    .product-card .price-row span {
        font-size: 11px;
    }

    .product-card .btn {
        min-height: 34px;
        padding: 8px 9px;
        border-radius: 11px;
        font-size: 12px;
        line-height: 1.05;
    }
}

@media (max-width: 340px) {
    .product-grid,
    .store-product-grid,
    .store-sidebar nav {
        grid-template-columns: 1fr;
    }

    .product-art {
        height: min(260px, 72vw);
    }
}

@media (max-width: 760px) {
    .admin-body {
        background:
            radial-gradient(circle at 20% 0%, rgba(28, 199, 208, .14), transparent 18rem),
            linear-gradient(135deg, #06121f 0%, #061827 100%);
    }

    .admin-shell {
        display: block;
    }

    .admin-sidebar {
        position: sticky;
        top: 0;
        width: 100%;
        max-height: none;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
        padding: 8px;
        border-right: 0;
        border-bottom: 1px solid rgba(93,255,208,.1);
        box-shadow: 0 12px 32px rgba(0,0,0,.24);
        overflow: visible;
    }

    .admin-sidebar-brand {
        grid-template-columns: 36px minmax(0, 1fr) auto;
        gap: 8px;
        padding: 0 2px 7px;
    }

    .admin-sidebar-brand span {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .admin-sidebar-brand strong {
        font-size: 14px;
        line-height: 1.05;
    }

    .admin-sidebar-brand small {
        font-size: 10px;
        letter-spacing: .3px;
    }

    .admin-sidebar nav {
        display: flex;
        gap: 6px;
        margin: 0 -8px;
        padding: 0 8px 4px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .admin-sidebar nav a {
        flex: 0 0 auto;
        min-width: 92px;
        min-height: 34px;
        justify-content: center;
        padding: 7px 9px;
        border-radius: 10px;
        background: rgba(255,255,255,.055);
        font-size: 12px;
        line-height: 1.1;
        text-align: center;
        scroll-snap-align: start;
    }

    .admin-sidebar-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        margin-top: 0;
    }

    .admin-sidebar-actions .btn {
        min-height: 34px;
        padding: 7px 8px;
        border-radius: 10px;
        font-size: 12px;
    }

    .admin-main {
        width: 100%;
        margin-left: 0;
        padding: 10px 9px 24px;
    }

    .admin-body .page-hero {
        gap: 10px;
        margin-bottom: 10px;
        padding: 12px;
        border-radius: 16px;
    }

    .admin-body .page-hero.compact h1,
    .admin-body .page-hero h1 {
        margin: 6px 0 4px;
        font-size: clamp(24px, 8vw, 32px);
    }

    .admin-body .page-hero p {
        font-size: 13px;
        line-height: 1.35;
    }

    .admin-body .page-hero .actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 7px;
        width: 100%;
    }

    .admin-body .page-hero .btn {
        min-height: 36px;
        padding: 8px 10px;
        border-radius: 11px;
        font-size: 12px;
    }

    .admin-dashboard-grid,
    .admin-body .stats,
    .admin-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin: 10px 0;
    }

    .dashboard-module,
    .admin-body .stat {
        min-height: 0;
        padding: 11px;
        border-radius: 15px;
    }

    .dashboard-module:hover,
    .card:hover {
        transform: none;
    }

    .dashboard-module span,
    .dashboard-module small,
    .stat {
        font-size: 11px;
        line-height: 1.2;
    }

    .dashboard-module strong {
        margin: 7px 0;
        font-size: 14px;
        line-height: 1.1;
    }

    .admin-body .stat strong {
        margin-top: 5px;
        font-size: 17px;
        line-height: 1.05;
    }

    .admin-body .panel {
        padding: 12px;
        border-radius: 16px;
    }

    .admin-grid,
    .grid.admin-grid,
    .admin-recharge-grid,
    .purchase-admin-grid,
    .account-profile-admin-grid,
    .user-management-grid,
    .account-grid,
    .admin-promo-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 10px;
    }

    .section-title,
    .admin-body .section-title {
        gap: 8px;
        margin-bottom: 8px;
    }

    .section-title h2,
    .admin-body .section-title h2,
    .admin-body .panel h2 {
        font-size: 17px;
        line-height: 1.15;
    }

    .section-title a {
        font-size: 12px;
    }

    .stock-row {
        gap: 8px;
        padding: 9px 0;
    }

    .stock-row strong {
        font-size: 13px;
        line-height: 1.2;
    }

    .stock-row .muted,
    .stock-row span {
        font-size: 11px;
        line-height: 1.25;
    }

    .badge {
        padding: 4px 7px;
        border-radius: 9px;
        font-size: 10px;
        line-height: 1.05;
    }

    .dashboard-stock-scroll {
        max-height: 260px;
        padding-right: 4px;
    }

    .admin-form,
    .filter-panel {
        margin: 10px 0;
    }

    .form-grid,
    .filters,
    .dynamic-profiles-grid,
    .recharge-admin-details,
    .profile-list > div {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    form,
    label {
        gap: 8px;
    }

    input,
    select,
    textarea {
        min-height: 38px;
        padding: 9px 10px;
        border-radius: 11px;
        font-size: 13px;
    }

    textarea {
        min-height: 76px;
    }

    .check-row {
        min-height: 40px;
        padding: 9px 10px;
        border-radius: 11px;
    }

    .inline-form,
    .actions {
        gap: 7px;
    }

    .admin-body .actions .btn,
    .admin-body .actions button,
    .admin-body button,
    .admin-body .btn {
        min-height: 34px;
        padding: 7px 10px;
        border-radius: 10px;
        font-size: 12px;
    }

    .table-wrap {
        margin: 10px 0 16px;
        border-radius: 14px;
    }

    .admin-body table {
        min-width: 680px;
        font-size: 12px;
    }

    .admin-body th,
    .admin-body td {
        padding: 9px;
    }

    .method-admin-thumb {
        width: 42px;
        height: 42px;
        border-radius: 11px;
    }

    .admin-promo-card {
        gap: 10px;
    }

    .admin-promo-card img {
        height: 150px;
        border-radius: 12px;
    }

    .recharge-admin-details {
        margin: 10px 0;
    }

    .recharge-admin-details span {
        padding: 8px;
        border-radius: 11px;
        font-size: 11px;
    }

    .recharge-money {
        font-size: 20px;
    }

    .purchase-admin-card,
    .user-detail-panel {
        gap: 12px;
    }

    .purchase-admin-card form,
    .account-profile-admin-grid form {
        padding-top: 10px;
    }

    .user-card-head {
        gap: 10px;
        padding-bottom: 10px;
    }

    .user-card-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        min-width: 0;
    }

    .user-card-metrics span {
        padding: 8px;
        border-radius: 11px;
        font-size: 11px;
    }

    .user-card-metrics strong {
        font-size: 14px;
    }

    .account-card h2,
    .user-admin-card h2 {
        font-size: 17px;
        line-height: 1.15;
    }

    code {
        max-width: 100%;
        padding: 4px 6px;
        border-radius: 9px;
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .admin-dashboard-grid,
    .admin-body .stats,
    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-sidebar-actions,
    .user-card-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .12s !important;
    }

    body {
        background:
            linear-gradient(135deg, #06121f 0%, #082033 56%, #04101d 100%) !important;
        background-attachment: scroll !important;
    }

    body::before,
    body::after,
    .auth-single::before,
    .auth-single::after,
    .auth-single .auth-card::before,
    .auth-single .auth-card::after,
    .carousel-effect-layer,
    .orb,
    .btn-glow::after,
    .auth-single button:not(.password-toggle)::before,
    .auth-single .btn::before {
        display: none !important;
        content: none !important;
    }

    .topbar,
    .panel,
    .card,
    table,
    .showcase-card,
    .admin-mobile-top,
    .admin-sidebar,
    .auth-card,
    .auth-copy,
    .store-pulse,
    .support-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .panel,
    .card,
    table,
    .page-hero,
    .auth-card,
    .auth-copy,
    .dashboard-module,
    .admin-sidebar,
    .admin-mobile-top {
        box-shadow: 0 10px 24px rgba(0,0,0,.22) !important;
    }

    .card:hover,
    .btn:hover,
    button:hover,
    .dashboard-module:hover,
    .service-editorial-row:hover .service-editorial-media img,
    .auth-single input:focus {
        transform: none !important;
        filter: none !important;
    }

    .auth-mark.logo-mark,
    .carousel-slide,
    .service-editorial-media img,
    .product-art img {
        filter: none !important;
    }

    .carousel-slide {
        transition: opacity .24s ease !important;
        transform: none !important;
    }

    .home-carousel.is-changing::after,
    .home-carousel.is-changing .carousel-effect-layer span,
    .carousel-slide.active {
        animation: none !important;
    }

    .auth-single {
        overflow: visible;
    }

    .auth-shell,
    .auth-single {
        min-height: auto;
        padding-top: 14px;
    }

    .auth-single .auth-card {
        background:
            linear-gradient(180deg, rgba(11, 39, 61, .98), rgba(8, 27, 45, .98)) !important;
        overflow: visible;
    }

    .auth-mark.logo-mark {
        animation: none !important;
        width: min(118px, 38vw);
        height: min(118px, 38vw);
        margin-bottom: 2px;
    }

    .home-carousel,
    .home-promo-image {
        box-shadow: none !important;
        contain: layout paint;
    }

    .product-card,
    .dashboard-module,
    .admin-body .panel {
        contain: content;
    }
}

.admin-mobile-top,
.admin-menu-fab,
.admin-sidebar-close,
.admin-drawer-title,
.admin-menu-backdrop {
    display: none;
}

.admin-menu-state {
    position: fixed;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 760px) {
    .admin-body.admin-menu-ready.admin-menu-open {
        overflow: hidden;
    }

    .admin-menu-ready .admin-mobile-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 42;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        min-height: 58px;
        padding: 8px 10px;
        background:
            linear-gradient(180deg, rgba(6, 18, 31, .96), rgba(6, 18, 31, .88)),
            radial-gradient(circle at 12% 0%, rgba(93,255,208,.16), transparent 12rem);
        border-bottom: 1px solid rgba(93,255,208,.12);
        backdrop-filter: blur(16px);
        box-shadow: 0 12px 34px rgba(0,0,0,.24);
    }

    .admin-menu-ready .admin-mobile-brand {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        min-width: 0;
        font-weight: 950;
    }

    .admin-menu-ready .admin-mobile-brand span {
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        overflow: hidden;
    }

    .admin-menu-ready .admin-mobile-brand img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .admin-menu-ready .admin-mobile-brand strong {
        font-size: 16px;
    }

    .admin-menu-ready .admin-menu-toggle {
        display: inline-grid;
        grid-template-columns: 18px auto;
        grid-template-rows: repeat(3, 2px);
        align-content: center;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: auto;
        min-width: 74px;
        height: 42px;
        min-height: 42px;
        padding: 0 11px;
        border-radius: 13px;
        background: rgba(255,255,255,.075);
        border: 1px solid rgba(173,235,255,.13);
        box-shadow: 0 10px 24px rgba(0,0,0,.18);
        cursor: pointer;
    }

    .admin-menu-ready .admin-menu-toggle span {
        display: block;
        grid-column: 1;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: #eafffb;
        transition: transform .2s ease, opacity .2s ease;
    }

    .admin-menu-ready .admin-menu-toggle span:nth-child(1) {
        grid-row: 1;
    }

    .admin-menu-ready .admin-menu-toggle span:nth-child(2) {
        grid-row: 2;
    }

    .admin-menu-ready .admin-menu-toggle span:nth-child(3) {
        grid-row: 3;
    }

    .admin-menu-ready .admin-menu-toggle small {
        grid-column: 2;
        grid-row: 1 / 4;
        color: #eafffb;
        font-size: 12px;
        font-weight: 950;
        line-height: 1;
    }

    .admin-menu-ready .admin-menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .admin-menu-ready .admin-menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .admin-menu-ready .admin-menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .admin-menu-ready .admin-menu-state:checked ~ .admin-mobile-top .admin-menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .admin-menu-ready .admin-menu-state:checked ~ .admin-mobile-top .admin-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .admin-menu-ready .admin-menu-state:checked ~ .admin-mobile-top .admin-menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .admin-menu-ready .admin-menu-fab {
        position: fixed;
        right: 14px;
        bottom: 16px;
        z-index: 44;
        display: inline-grid;
        grid-template-columns: 18px auto;
        grid-template-rows: repeat(3, 2px);
        align-content: center;
        align-items: center;
        gap: 4px 8px;
        min-width: 88px;
        height: 46px;
        min-height: 46px;
        padding: 0 14px;
        border-radius: 999px;
        color: #06121f;
        background: linear-gradient(135deg, #5dffd0, #1cc7d0);
        border: 1px solid rgba(255,255,255,.22);
        box-shadow: 0 16px 34px rgba(0,0,0,.34), 0 0 0 1px rgba(93,255,208,.18);
        cursor: pointer;
    }

    .admin-menu-ready .admin-menu-fab span {
        display: block;
        grid-column: 1;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: #06121f;
    }

    .admin-menu-ready .admin-menu-fab span:nth-child(1) {
        grid-row: 1;
    }

    .admin-menu-ready .admin-menu-fab span:nth-child(2) {
        grid-row: 2;
    }

    .admin-menu-ready .admin-menu-fab span:nth-child(3) {
        grid-row: 3;
    }

    .admin-menu-ready .admin-menu-fab strong {
        grid-column: 2;
        grid-row: 1 / 4;
        font-size: 12px;
        line-height: 1;
    }

    .admin-menu-ready.admin-menu-open .admin-menu-fab {
        display: none;
    }

    .admin-menu-ready .admin-menu-state:checked ~ .admin-menu-fab {
        display: none;
    }

    .admin-menu-ready .admin-menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 45;
        display: none;
        background: rgba(0, 0, 0, .58);
        backdrop-filter: blur(4px);
        cursor: pointer;
    }

    .admin-menu-ready .admin-menu-state:checked ~ .admin-menu-backdrop {
        display: block;
    }

    .admin-menu-ready .admin-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 50;
        width: min(326px, 88vw);
        height: 100dvh;
        max-height: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 14px;
        border-right: 1px solid rgba(93,255,208,.14);
        border-bottom: 0;
        border-radius: 0 22px 22px 0;
        box-shadow: 20px 0 54px rgba(0,0,0,.46);
        overflow-y: auto;
        transform: translateX(-105%);
        transition: transform .24s cubic-bezier(.2,.9,.2,1);
    }

    .admin-menu-ready .admin-sidebar[aria-hidden="true"] {
        pointer-events: none;
    }

    .admin-menu-ready .admin-sidebar.is-open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .admin-menu-ready .admin-menu-state:checked ~ .admin-sidebar {
        transform: translateX(0);
        pointer-events: auto;
    }

    .admin-menu-ready .admin-sidebar-brand {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 10px;
        padding: 0 44px 10px 0;
        border-bottom: 1px solid rgba(173,235,255,.1);
    }

    .admin-menu-ready .admin-sidebar-brand span {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .admin-menu-ready .admin-sidebar-brand strong {
        font-size: 16px;
    }

    .admin-menu-ready .admin-sidebar-brand small {
        font-size: 10px;
    }

    .admin-menu-ready .admin-sidebar-close {
        position: absolute;
        top: 14px;
        right: 12px;
        display: grid;
        place-items: center;
        width: 36px;
        height: 36px;
        min-height: 36px;
        padding: 0;
        border-radius: 12px;
        background: rgba(255,255,255,.075);
        border: 1px solid rgba(173,235,255,.12);
        box-shadow: none;
        cursor: pointer;
    }

    .admin-menu-ready .admin-sidebar-close span {
        position: absolute;
        width: 16px;
        height: 2px;
        border-radius: 999px;
        background: #f5fffd;
    }

    .admin-menu-ready .admin-sidebar-close span:first-child {
        transform: rotate(45deg);
    }

    .admin-menu-ready .admin-sidebar-close span:last-child {
        transform: rotate(-45deg);
    }

    .admin-menu-ready .admin-drawer-title {
        display: block;
        padding: 4px 2px 0;
    }

    .admin-menu-ready .admin-drawer-title strong,
    .admin-menu-ready .admin-drawer-title small {
        display: block;
    }

    .admin-menu-ready .admin-drawer-title strong {
        font-size: 13px;
    }

    .admin-menu-ready .admin-drawer-title small {
        color: var(--muted);
        font-size: 11px;
        font-weight: 800;
    }

    .admin-menu-ready .admin-sidebar nav {
        display: grid;
        grid-template-columns: 1fr;
        gap: 7px;
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .admin-menu-ready .admin-sidebar nav a {
        flex: none;
        min-width: 0;
        min-height: 42px;
        justify-content: flex-start;
        padding: 10px 12px;
        border-radius: 13px;
        font-size: 13px;
        text-align: left;
        background: rgba(255,255,255,.052);
    }

    .admin-menu-ready .admin-sidebar nav a::before {
        content: "";
        width: 7px;
        height: 7px;
        margin-right: 9px;
        border-radius: 999px;
        background: rgba(93,255,208,.45);
        box-shadow: 0 0 12px rgba(93,255,208,.18);
    }

    .admin-menu-ready .admin-sidebar nav a.active {
        color: #06121f;
        background: linear-gradient(135deg, #5dffd0, #1cc7d0);
        box-shadow: 0 10px 24px rgba(28,199,208,.18);
    }

    .admin-menu-ready .admin-sidebar nav a.active::before {
        background: #06121f;
        box-shadow: none;
    }

    .admin-menu-ready .admin-sidebar-actions {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: auto;
        padding-top: 8px;
        border-top: 1px solid rgba(173,235,255,.1);
    }

    .admin-menu-ready .admin-sidebar-actions .btn {
        min-height: 38px;
        border-radius: 12px;
        font-size: 13px;
    }

    .admin-menu-ready .admin-main {
        padding: 68px 9px 76px;
    }

    .admin-body:not(.admin-menu-ready) .admin-sidebar {
        position: sticky;
        top: 0;
        width: 100%;
        height: auto;
        max-height: none;
        transform: none;
        display: block;
        padding: 8px;
        border-radius: 0;
    }

    .admin-body:not(.admin-menu-ready) .admin-main {
        padding-top: 10px;
    }
}

@media (max-width: 760px) {
    .admin-mobile-top,
    .admin-menu-backdrop,
    .admin-sidebar {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .admin-menu-backdrop {
        background: rgba(0, 0, 0, .62) !important;
    }
}

@media (max-width: 1100px) {
    .dashboard-priority-grid,
    .dashboard-main-metrics,
    .dashboard-action-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-overview,
    .dashboard-workspace {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .dashboard-hero {
        gap: 10px;
    }

    .dashboard-hero-summary {
        min-width: 0;
        width: 100%;
        padding: 12px;
        border-radius: 14px;
    }

    .dashboard-hero-summary strong {
        font-size: 30px;
    }

    .dashboard-priority-grid,
    .dashboard-main-metrics,
    .dashboard-action-strip {
        grid-template-columns: 1fr;
        gap: 9px;
        margin: 10px 0;
    }

    .dashboard-priority-card,
    .dashboard-metric-card {
        min-height: 0;
        padding: 12px;
        border-radius: 14px;
    }

    .dashboard-priority-card strong {
        font-size: 26px;
    }

    .dashboard-metric-card strong {
        margin: 8px 0 5px;
        font-size: 22px;
    }

    .dashboard-inventory-numbers {
        grid-template-columns: 1fr;
    }

    .dashboard-ring {
        width: 128px;
    }

    .dashboard-workspace {
        gap: 10px;
    }

    .dashboard-stock-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }
}
.logout-form {
    display: inline-flex;
    margin: 0;
}

.admin-sidebar-actions .logout-form,
.admin-sidebar-actions .logout-form .btn {
    width: 100%;
}


.mode-fields {
    min-width: 0;
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(173, 235, 255, .14);
    border-radius: 16px;
    background: rgba(4, 18, 29, .38);
}

.mode-fields[hidden] {
    display: none;
}

.mode-fields legend {
    padding: 0 8px;
    color: var(--accent);
    font-weight: 800;
}

.logout-form button.nav-link {
    border: 0;
    border-radius: 999px;
    min-height: auto;
    width: auto;
    padding: 8px 7px;
    background: transparent;
    box-shadow: none;
    color: var(--muted);
    font-family: inherit;
    font-size: 15px;
    font-weight: 850;
    line-height: inherit;
    cursor: pointer;
}

.logout-form button.nav-link:hover {
    background: rgba(255,255,255,.08);
    box-shadow: none;
    color: #fff;
    transform: none;
}

.logout-form .nav-exit::before {
    display: none;
}

.home-carousel [hidden] {
    display: none !important;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

/* La promoción ocupa el mismo espacio visual que el carrusel. */
.home-promo-image {
    min-height: min(820px, calc(100vh - 86px));
}

.home-promo-image img {
    padding: 0;
    object-fit: fill;
    z-index: 0;
    pointer-events: none;
}

.home-promo-image .promo-buy-button {
    position: absolute !important;
    top: auto !important;
    right: auto !important;
    bottom: clamp(28px, 6vw, 70px) !important;
    left: 50% !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
}

@media (max-width: 760px) {
    .home-promo-image {
        height: 460px;
        min-height: 460px;
        max-height: 460px;
        padding: 0;
    }

    .home-promo-image img {
        object-fit: cover;
        object-position: center;
    }

    .home-carousel {
        height: 460px;
        min-height: 460px;
        max-height: 460px;
        padding: 24px 14px 58px;
    }

    .carousel-slide {
        background-size: cover;
        background-position: center;
    }

    .home-carousel-content {
        width: 100%;
        max-width: 390px;
    }

    .home-carousel h1 {
        margin-bottom: 10px;
        font-size: clamp(24px, 8vw, 32px);
        line-height: 1.08;
    }

    .home-carousel p {
        margin-bottom: 14px;
        font-size: 13px;
        line-height: 1.42;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .home-carousel-content .actions {
        gap: 8px;
    }

    .home-carousel-content .btn {
        width: min(100%, 340px);
        min-height: 44px;
        padding: 11px 18px;
    }
}
