/* Nova Theme for MacCMS V10 — 现代响应式影视模板
   配色 / 圆角 / 间距全部走 CSS 变量，改一处即可全站换肤 */

:root {
    --bg: #0b0c11;
    --bg-soft: #101219;
    --card: #171a23;
    --card-hi: #1e222e;
    --line: rgba(255, 255, 255, .08);
    --line-hi: rgba(255, 255, 255, .16);
    --text: #e9ebf2;
    --text-2: #b4b9c8;
    --muted: #7b8194;
    --brand: #7c5cff;
    --brand-2: #00d4aa;
    --brand-grad: linear-gradient(135deg, #7c5cff 0%, #00d4aa 100%);
    --danger: #ff5470;
    --star: #ffb020;
    --r-sm: 8px;
    --r: 12px;
    --r-lg: 18px;
    --shadow: 0 8px 30px rgba(0, 0, 0, .45);
    --nav-h: 60px;
    --maxw: 1400px;
}

[data-theme="light"] {
    --bg: #f5f6fa;
    --bg-soft: #ffffff;
    --card: #ffffff;
    --card-hi: #f2f3f8;
    --line: rgba(10, 12, 20, .08);
    --line-hi: rgba(10, 12, 20, .14);
    --text: #16181f;
    --text-2: #4a4f5e;
    --muted: #83889a;
    --shadow: 0 8px 26px rgba(20, 24, 40, .10);
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg);
    color: var(--text);
    font: 14px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-weight: 600;
}

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

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--line-hi);
    border-radius: 8px;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 16px;
}

/* ---------- 顶部导航 ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 90;
    height: var(--nav-h);
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
}

.nav-in {
    height: var(--nav-h);
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .3px;
    white-space: nowrap;
}

.logo i {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--brand-grad);
    display: block;
    box-shadow: 0 4px 14px rgba(124, 92, 255, .45);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-menu a {
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 14px;
    color: var(--text-2);
    white-space: nowrap;
    transition: .2s;
}

.nav-menu a:hover {
    color: var(--text);
    background: var(--card);
}

.nav-menu a.on {
    color: #fff;
    background: var(--brand-grad);
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    background: var(--card);
    border-radius: 10px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: .2s;
}

.icon-btn:hover {
    border-color: var(--line-hi);
    background: var(--card-hi);
}

.icon-btn svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* 搜索 */
.search {
    position: relative;
    flex: 0 1 260px;
}

.search input {
    width: 100%;
    height: 38px;
    padding: 0 38px 0 36px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--card);
    outline: none;
    transition: .2s;
}

.search input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(124, 92, 255, .16);
}

.search .s-ico {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: var(--muted);
    fill: none;
    stroke-width: 2;
    pointer-events: none;
}

.search button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 28px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: var(--brand-grad);
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

/* ---------- Hero 首屏 ---------- */
.hero {
    position: relative;
    margin: 18px 0 6px;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--card);
    min-height: 320px;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    filter: blur(2px) saturate(1.1);
    transform: scale(1.06);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg) 6%, rgba(11, 12, 17, .72) 46%, rgba(11, 12, 17, .25) 100%), linear-gradient(0deg, var(--bg) 2%, transparent 55%);
}

[data-theme="light"] .hero-bg::after {
    background: linear-gradient(90deg, #f5f6fa 6%, rgba(245, 246, 250, .78) 48%, rgba(245, 246, 250, .3) 100%), linear-gradient(0deg, #f5f6fa 2%, transparent 55%);
}

.hero-in {
    position: relative;
    z-index: 2;
    padding: 34px 30px;
    display: flex;
    gap: 26px;
    align-items: flex-end;
    width: 100%;
}

.hero-txt {
    flex: 1;
    min-width: 0;
}

.hero-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: var(--brand-grad);
    color: #fff;
    margin-bottom: 14px;
}

.hero h1 {
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .5);
}

.hero-meta {
    color: var(--text-2);
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.hero-desc {
    color: var(--text-2);
    font-size: 13.5px;
    line-height: 1.75;
    max-width: 620px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 18px;
}

.hero-btns {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 42px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid var(--line-hi);
    background: var(--card);
    font-size: 14px;
    cursor: pointer;
    transition: .2s;
}

.btn:hover {
    transform: translateY(-1px);
    border-color: var(--brand);
}

.btn-primary {
    border: 0;
    background: var(--brand-grad);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(124, 92, 255, .35);
}

.hero-side {
    display: none;
    gap: 10px;
}

@media(min-width:1024px) {
    .hero-side {
        display: flex;
    }
}

.hero-side a {
    width: 108px;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--line);
    position: relative;
    transition: .25s;
}

.hero-side a:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
}

.hero-side img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.hero-side span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 6px 5px;
    font-size: 11.5px;
    text-align: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, .9), transparent);
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---------- 板块 ---------- */
.sec {
    margin: 30px 0;
}

.sec-hd {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.sec-hd h2 {
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.sec-hd h2::before {
    content: "";
    width: 4px;
    height: 17px;
    border-radius: 3px;
    background: var(--brand-grad);
}

.sec-hd .more {
    margin-left: auto;
    font-size: 13px;
    color: var(--muted);
    transition: .2s;
}

.sec-hd .more:hover {
    color: var(--brand);
}

/* ---------- 卡片网格 ---------- */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 10px;
}

@media(min-width:640px) {
    .grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px 14px;
    }
}

@media(min-width:900px) {
    .grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media(min-width:1200px) {
    .grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

.card .pic {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    background: var(--card);
    aspect-ratio: 2/3;
}

.card .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.2, .7, .3, 1);
}

.card:hover .pic img {
    transform: scale(1.07);
}

.card .pic .tag {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 7px;
    border-radius: 6px;
    font-size: 11px;
    background: rgba(0, 0, 0, .62);
    backdrop-filter: blur(6px);
    color: #fff;
}

.card .pic .score {
    position: absolute;
    top: 6px;
    right: 6px;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--star);
    background: rgba(0, 0, 0, .62);
    backdrop-filter: blur(6px);
}

.card .pic .play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    background: rgba(0, 0, 0, .34);
    transition: .25s;
}

.card:hover .pic .play {
    opacity: 1;
}

.card .pic .play i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-grad);
    display: grid;
    place-items: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
}

.card .pic .play i::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 3px;
    border-left: 13px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.card .t {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: .2s;
}

.card:hover .t {
    color: var(--brand);
}

.card .s {
    font-size: 11.5px;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 排行 */
.rank {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rank li {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 6px;
    border-radius: var(--r-sm);
    transition: .2s;
}

.rank li:hover {
    background: var(--card);
}

.rank .no {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    background: var(--card-hi);
    color: var(--muted);
}

.rank li:nth-child(1) .no {
    background: linear-gradient(135deg, #ff6b6b, #ff9472);
    color: #fff;
}

.rank li:nth-child(2) .no {
    background: linear-gradient(135deg, #ffa94d, #ffd43b);
    color: #fff;
}

.rank li:nth-child(3) .no {
    background: linear-gradient(135deg, #4dabf7, #74c0fc);
    color: #fff;
}

.rank .nm {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank .hp {
    font-size: 11.5px;
    color: var(--muted);
}

/* ---------- 筛选条 ---------- */
.filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0 20px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--bg-soft);
}

.f-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    align-items: center;
}

.f-row::-webkit-scrollbar {
    display: none;
}

.f-row .lb {
    flex: 0 0 auto;
    font-size: 12.5px;
    color: var(--muted);
    padding-right: 2px;
}

.f-row a {
    flex: 0 0 auto;
    padding: 5px 13px;
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-2);
    border: 1px solid var(--line);
    background: var(--card);
    transition: .2s;
    white-space: nowrap;
}

.f-row a:hover {
    border-color: var(--brand);
    color: var(--text);
}

.f-row a.on {
    background: var(--brand-grad);
    border-color: transparent;
    color: #fff;
}

/* ---------- 分页 ---------- */
.pager {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: center;
    margin: 28px 0 10px;
}

.pager a,
.pager span {
    min-width: 36px;
    height: 36px;
    padding: 0 11px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--card);
    display: grid;
    place-items: center;
    font-size: 13.5px;
    transition: .2s;
}

.pager a:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.pager .on {
    background: var(--brand-grad);
    border-color: transparent;
    color: #fff;
    font-weight: 600;
}

/* ---------- 详情页 ---------- */
.dt {
    display: grid;
    gap: 22px;
    margin: 20px 0;
}

@media(min-width:900px) {
    .dt {
        grid-template-columns: 240px 1fr;
    }
}

.dt-pic {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 2/3;
    background: var(--card);
}

.dt-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dt h1 {
    font-size: 24px;
    margin-bottom: 12px;
}

.dt-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
    font-size: 13px;
    color: var(--text-2);
    margin-bottom: 16px;
}

.dt-meta b {
    color: var(--muted);
    font-weight: 400;
    margin-right: 6px;
}

.dt-desc {
    color: var(--text-2);
    font-size: 13.5px;
    line-height: 1.85;
    padding: 14px;
    border-radius: var(--r);
    background: var(--bg-soft);
    border: 1px solid var(--line);
}

/* 播放源 / 选集 */
.plays {
    margin-top: 18px;
}

.plays .srcs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.plays .srcs a {
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 13.5px;
    border: 1px solid var(--line);
    background: var(--card);
    transition: .2s;
}

.plays .srcs a:hover {
    border-color: var(--brand);
}

.plays .srcs a.on {
    background: var(--brand-grad);
    border-color: transparent;
    color: #fff;
}

.plays .eps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
    gap: 8px;
    max-height: 260px;
    overflow-y: auto;
    padding-right: 4px;
}

.plays .eps a {
    height: 36px;
    border-radius: 9px;
    border: 1px solid var(--line);
    background: var(--card);
    display: grid;
    place-items: center;
    font-size: 13px;
    transition: .2s;
}

.plays .eps a:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.plays .eps a.on {
    background: var(--brand-grad);
    border-color: transparent;
    color: #fff;
}

/* ---------- 播放页 ---------- */
.player-box {
    margin: 16px 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow);
}

.player-box .stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.player-box iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.player-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 12px 14px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
}

.player-bar a {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    border: 1px solid var(--line);
    background: var(--card);
    transition: .2s;
}

.player-bar a:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.player-bar .ttl {
    font-size: 15px;
    font-weight: 600;
    margin-right: auto;
}

/* ---------- 文章 ---------- */
.art-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.art-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--bg-soft);
    transition: .2s;
}

.art-item:hover {
    border-color: var(--brand);
    transform: translateX(3px);
}

.art-item img {
    width: 128px;
    flex: 0 0 128px;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: var(--r-sm);
}

.art-item h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.art-item p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post {
    padding: 22px;
    border-radius: var(--r-lg);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    line-height: 1.9;
    font-size: 15px;
}

.post img {
    max-width: 100%;
    border-radius: var(--r);
    margin: 10px 0;
}

/* ---------- 页脚 ---------- */
.foot {
    margin-top: 50px;
    padding: 30px 0 26px;
    border-top: 1px solid var(--line);
    background: var(--bg-soft);
    color: var(--muted);
    font-size: 13px;
}

.foot .wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.foot .links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.foot .links a:hover {
    color: var(--brand);
}

/* ---------- 移动端底部 Tab ---------- */
.tabbar {
    display: none;
}

@media(max-width:767px) {
    .search {
        display: none;
    }

    .hero-in {
        padding: 22px 18px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px 10px;
    }

    .dt-meta {
        grid-template-columns: 1fr;
    }

    .tabbar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 95;
        display: flex;
        height: 56px;
        background: color-mix(in srgb, var(--bg) 90%, transparent);
        backdrop-filter: blur(16px);
        border-top: 1px solid var(--line);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .tabbar a {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        font-size: 11px;
        color: var(--muted);
    }

    .tabbar a.on {
        color: var(--brand);
    }

    .tabbar svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    body {
        padding-bottom: 56px;
    }
}

/* ---------- 密码门 ---------- */
.gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: radial-gradient(1200px 600px at 50% -10%, #26204d 0%, var(--bg) 60%);
    backdrop-filter: blur(8px);
}

.gate-box {
    width: min(92vw, 380px);
    padding: 32px 28px;
    border-radius: var(--r-lg);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    text-align: center;
}

.gate-box .ic {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: var(--brand-grad);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 26px rgba(124, 92, 255, .4);
}

.gate-box .ic svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gate-box h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.gate-box p {
    margin: 0 0 20px;
    font-size: 13px;
    color: var(--muted);
}

.gate-box input {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--card);
    outline: none;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.gate-box input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(124, 92, 255, .18);
}

.gate-box button {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--brand-grad);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

.gate-box button:hover {
    filter: brightness(1.08);
}

.gate-box .err {
    margin-top: 12px;
    font-size: 13px;
    color: var(--danger);
    min-height: 18px;
}

/* ---------- 空状态 ---------- */
.empty {
    padding: 60px 20px;
    text-align: center;
    color: var(--muted);
}

.empty svg {
    width: 52px;
    height: 52px;
    stroke: var(--line-hi);
    fill: none;
    stroke-width: 1.6;
    margin-bottom: 12px;
}

/* ---------- PWA 安装条 ---------- */
.pwa-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 70px;
    z-index: 96;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--card);
    border: 1px solid var(--line-hi);
    box-shadow: var(--shadow);
}

.pwa-bar.show {
    display: flex;
}

.pwa-bar .tx {
    flex: 1;
    font-size: 13px;
}

.pwa-bar .tx b {
    display: block;
    font-size: 14px;
}

.pwa-bar button {
    border: 0;
    border-radius: 999px;
    padding: 8px 16px;
    background: var(--brand-grad);
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

.pwa-bar .x {
    background: none;
    color: var(--muted);
    padding: 6px;
    font-size: 18px;
}

@media(min-width:768px) {
    .pwa-bar {
        left: auto;
        right: 20px;
        bottom: 20px;
        width: 320px;
    }
}
