:root {
    --ink: #ffffff;
    --muted: rgba(255, 255, 255, .74);
    --deep: #070016;
    --violet: #160044;
    --violet-2: #2a076d;
    --panel: rgba(28, 19, 86, .78);
    --line: rgba(255, 255, 255, .16);
    --teal: #03cba7;
    --green: #32ce61;
    --orange: #ff7600;
    --pink: #fa1a77;
    --blue: #079cff;
    --radius: 24px;
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: "Noto Sans Tamil", "Latha", "Segoe UI", Arial, sans-serif;
    letter-spacing: 0;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.frontend-body {
    min-height: 100vh;
    color: var(--ink);
    background:
        radial-gradient(circle at 14% 12%, rgba(120, 55, 255, .42), transparent 32%),
        radial-gradient(circle at 84% 88%, rgba(238, 38, 134, .24), transparent 28%),
        linear-gradient(145deg, #070014 0%, #18004a 48%, #2a0a5b 100%);
}

.phone-stage {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 18px;
}

.mobile-app {
    position: relative;
    width: min(100%, 430px);
    height: min(920px, calc(100vh - 28px));
    overflow-y: auto;
    padding: 18px 18px calc(128px + env(safe-area-inset-bottom, 0px));
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 42px;
    background:
        linear-gradient(180deg, rgba(52, 0, 120, .88), rgba(4, 0, 18, .96) 43%),
        radial-gradient(circle at 78% 4%, rgba(125, 32, 255, .7), transparent 24%);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .48), inset 0 0 42px rgba(127, 74, 255, .18);
    scrollbar-width: none;
}

.mobile-app::-webkit-scrollbar {
    width: 0;
}

.app-header,
.section-title,
.detail-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-header {
    gap: 16px;
    margin-top: 8px;
}

.app-header h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.header-actions button {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #6e2dff, #3a0b91);
    font-size: 24px;
}

.header-actions b {
    position: absolute;
    right: -2px;
    top: -4px;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ff7b22;
    font-size: 12px;
}

.search-bar {
    display: grid;
    grid-template-columns: 34px 1fr 28px;
    align-items: center;
    min-height: 50px;
    margin: 14px 0;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 30px;
    background: rgba(255, 255, 255, .11);
    box-shadow: inset 0 0 18px rgba(255, 255, 255, .05);
}

.search-bar span {
    font-size: 28px;
}

.search-bar input {
    width: 100%;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    font-size: 18px;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, .72);
}

.rolling-news-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 54px;
    margin: 12px 0;
    padding: 9px 12px;
    overflow: hidden;
    border: 1px solid rgba(48, 255, 204, .3);
    border-radius: 18px;
    background: linear-gradient(135deg, #08bda2, #006454 78%);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .24), inset 0 1px 16px rgba(255, 255, 255, .1);
}

.rolling-news-label {
    display: grid;
    place-items: center;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    color: #06372f;
    background: rgba(255, 255, 255, .9);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.rolling-news-window {
    min-width: 0;
    overflow: hidden;
}

.rolling-news-track {
    display: flex;
    align-items: center;
    gap: 22px;
    width: max-content;
    animation: rolling-news 15s linear infinite;
}

.rolling-news-track span {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.rolling-news-card:hover .rolling-news-track {
    animation-play-state: paused;
}

@keyframes rolling-news {
    to {
        transform: translateX(-50%);
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 14px 0;
}

.feature-card {
    min-height: 62px;
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    text-align: left;
    box-shadow: inset 0 0 22px rgba(255, 255, 255, .08);
}

.feature-card span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .88);
    color: #5b20db;
    font-weight: 900;
}

.feature-card strong {
    font-size: 15px;
    line-height: 1.25;
}

.feature-card.coral { background: linear-gradient(135deg, #ff5664, #e81a49); }
.feature-card.green { background: linear-gradient(135deg, #67de70, #0e973d); }
.feature-card.purple { background: linear-gradient(135deg, #6c31ff, #3210a6); }
.feature-card.blue { background: linear-gradient(135deg, #11abff, #006bea); }
.feature-card.emerald { background: linear-gradient(135deg, #009f57, #006a38); }
.feature-card.orange { background: linear-gradient(135deg, #ff5200, #ff9d00); }
.feature-card.yellow { background: linear-gradient(135deg, #ffd900, #ffb100); color: #1d112a; }
.feature-card.pink { background: linear-gradient(135deg, #ff1b88, #e7005d); }

.special-panel,
.zodiac-panel,
.post-card article {
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(160deg, rgba(33, 20, 107, .88), rgba(11, 8, 50, .9));
    box-shadow: inset 0 1px 24px rgba(143, 102, 255, .18);
}

.special-panel {
    padding: 14px;
    border-radius: 22px;
}

.section-title {
    margin-bottom: 10px;
}

.section-title h2 {
    margin: 0;
    font-size: 20px;
}

.section-title a {
    color: var(--ink);
    text-decoration: none;
    opacity: .86;
}

.section-title span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

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

.special-row button {
    min-width: 0;
    border: 0;
    color: #fff;
    background: transparent;
}

.special-row span {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 8px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(124, 86, 255, .22);
    font-size: 24px;
}

.special-row small {
    display: block;
    font-size: 12px;
    line-height: 1.25;
}

.zodiac-panel {
    margin: 14px 0;
    padding: 18px;
    border-radius: 28px;
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
}

.zodiac-grid button {
    min-height: 108px;
    display: grid;
    place-items: center;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    background: rgba(14, 5, 57, .62);
}

.zodiac-grid span {
    color: #ffc64a;
    font-size: 44px;
    text-shadow: 0 0 18px rgba(255, 201, 74, .28);
}

.zodiac-grid strong {
    font-size: 14px;
}

.post-card {
    margin-top: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 26px;
    background: rgba(9, 2, 43, .8);
}

.detail-top {
    height: 60px;
    padding: 0 18px;
}

.detail-top h2 {
    margin: 0;
    font-size: 20px;
}

.post-card > img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.post-card article {
    margin: -18px 10px 14px;
    position: relative;
    padding: 20px 18px;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(125, 0, 178, .96), rgba(35, 4, 105, .96));
}

.post-card h3 {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 1.3;
}

.post-card p {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 16px;
    line-height: 1.7;
}

.comment-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 10px;
    color: rgba(255, 255, 255, .82);
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.avatar {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #fff;
    color: #2b056e;
    font-weight: 800;
}

.post-list-panel {
    display: grid;
    gap: 12px;
    margin-top: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 26px;
    background: linear-gradient(160deg, rgba(33, 20, 107, .88), rgba(11, 8, 50, .9));
    box-shadow: inset 0 1px 24px rgba(143, 102, 255, .18);
}

.post-preview-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    background: rgba(8, 1, 40, .72);
}

.post-preview-thumb {
    display: block;
    overflow: hidden;
    min-height: 118px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
}

.post-preview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-preview-content {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 6px;
}

.post-preview-content span,
.post-category {
    color: #ffd269;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}

.post-preview-content h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.25;
}

.post-preview-content h3 a,
.detail-top a,
.page-header a {
    color: #fff;
    text-decoration: none;
}

.post-preview-content p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.read-link {
    justify-self: start;
    margin-top: 4px;
    padding: 8px 13px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #8d37ff, #4f1eca);
    font-size: 13px;
    font-weight: 800;
}

.empty-posts {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 16px;
    color: var(--muted);
    background: rgba(255, 255, 255, .07);
}

.post-detail-screen,
.zodiac-screen {
    padding-bottom: calc(128px + env(safe-area-inset-bottom, 0px));
}

.post-detail-screen .detail-top {
    min-height: 48px;
}

.post-detail-screen .detail-top h1 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
}

.post-hero-image {
    width: 100%;
    height: 190px;
    border-radius: 22px;
    object-fit: cover;
}

.post-detail-card {
    position: relative;
    margin-top: 12px;
    padding: 20px 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(103, 10, 172, .94), rgba(30, 6, 94, .97));
    box-shadow: 0 18px 34px rgba(0, 0, 0, .24), inset 0 1px 24px rgba(255, 255, 255, .08);
}

.post-detail-card h2 {
    margin: 8px 0 12px;
    font-size: 25px;
    line-height: 1.22;
}

.post-lead,
.post-body {
    color: rgba(255, 255, 255, .9);
    font-size: 15.5px;
    line-height: 1.68;
}

.post-lead {
    margin: 0 0 12px;
    font-weight: 700;
}

.post-body {
    white-space: normal;
}

.comment-section {
    display: grid;
    gap: 12px;
    margin-top: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(33, 20, 107, .88), rgba(11, 8, 50, .9));
    box-shadow: inset 0 1px 24px rgba(143, 102, 255, .16);
}

.comment-status {
    padding: 10px 12px;
    border: 1px solid rgba(31, 255, 207, .28);
    border-radius: 12px;
    color: #cffff4;
    background: rgba(0, 190, 160, .16);
    font-size: 13px;
}

.comment-form {
    display: grid;
    gap: 10px;
}

.comment-form label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 13px;
    padding: 11px 12px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    outline: 0;
    resize: vertical;
}

.comment-form small {
    color: #ffb3c1;
}

.comment-form button {
    justify-self: start;
    border: 0;
    border-radius: 999px;
    padding: 10px 15px;
    color: #fff;
    background: linear-gradient(135deg, #8d37ff, #4f1eca);
    font-weight: 800;
}

.comment-list {
    display: grid;
    gap: 10px;
}

.user-comment {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 15px;
    background: rgba(255, 255, 255, .06);
}

.user-comment strong,
.user-comment small {
    display: block;
}

.user-comment small {
    color: var(--muted);
    font-size: 11px;
}

.user-comment p,
.no-comments {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    line-height: 1.5;
}

.page-header {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    min-height: 54px;
    margin: 4px 0 12px;
}

.page-header h1 {
    margin: 0;
    text-align: center;
    font-size: 22px;
}

.page-header a {
    display: grid;
    place-items: center;
    min-height: 42px;
    font-size: 25px;
}

.zodiac-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
}

.zodiac-menu-card {
    min-height: 113px;
    display: grid;
    place-items: center;
    gap: 7px;
    border: 0;
    color: #fff;
    background: linear-gradient(160deg, rgba(31, 16, 96, .94), rgba(12, 4, 54, .96));
}

.zodiac-menu-card span {
    display: grid;
    place-items: center;
    height: 56px;
    font-size: 42px;
    line-height: 1;
    filter: drop-shadow(0 8px 12px rgba(255, 187, 58, .18));
}

.zodiac-menu-card strong {
    font-size: 13px;
}

.bottom-nav {
    position: fixed;
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    left: 50%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    align-items: end;
    width: min(calc(100vw - 44px), 362px);
    margin: 0;
    min-height: 64px;
    padding: 9px 7px 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 21px;
    background: rgba(27, 16, 93, .92);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .32);
    transform: translateX(-50%);
    z-index: 12;
}

.bottom-nav a {
    display: grid;
    place-items: center;
    gap: 3px;
    min-width: 0;
    color: #fff;
    text-decoration: none;
}

.bottom-nav span {
    font-size: 19px;
}

.bottom-nav small {
    width: 100%;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.15;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bottom-nav .prime {
    transform: translateY(-17px);
}

.bottom-nav .prime span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(145deg, #b947ff, #6421f4);
    box-shadow: 0 10px 24px rgba(145, 62, 255, .4), inset 0 0 0 4px rgba(255, 255, 255, .08);
}

.splash {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: grid;
    place-content: center;
    gap: 18px;
    color: #fff;
    background:
        radial-gradient(circle, rgba(131, 35, 255, .44), transparent 32%),
        linear-gradient(155deg, #090016, #26005b);
    transition: opacity .5s ease, visibility .5s ease;
}

.splash.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-orbit {
    position: relative;
    display: grid;
    place-items: center;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .06));
}

.splash-orbit::before,
.splash-orbit::after {
    content: "";
    position: absolute;
    inset: -10px;
    border: 2px solid transparent;
    border-top-color: #ffbd35;
    border-right-color: #17ffd0;
    border-radius: 50%;
    animation: spin 1.1s linear infinite;
}

.splash-orbit::after {
    inset: -20px;
    animation-duration: 1.8s;
    animation-direction: reverse;
    opacity: .55;
}

.splash img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
}

.splash span {
    font-size: 62px;
    color: #ffb52d;
}

.splash p {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
}

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

.admin-body,
.login-body {
    min-height: 100vh;
    margin: 0;
    color: #fff;
    background:
        radial-gradient(circle at top left, rgba(119, 46, 255, .42), transparent 32%),
        linear-gradient(135deg, #090016, #1b0050 58%, #05000f);
}

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

.admin-sidebar {
    min-height: 100vh;
    padding: 26px;
    border-right: 1px solid var(--line);
    background: rgba(10, 0, 34, .78);
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.admin-brand span,
.login-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff8a00, #8534ff);
    font-size: 28px;
}

.admin-sidebar nav {
    display: grid;
    gap: 10px;
    margin: 36px 0;
}

.admin-sidebar a,
.admin-sidebar button,
.panel-head a,
.table-row a,
.form-panel button,
.login-panel button {
    border: 0;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, .1);
}

.admin-sidebar nav a,
.admin-sidebar button {
    width: 100%;
    padding: 13px 14px;
    text-align: left;
}

.admin-sidebar button {
    cursor: pointer;
}

.admin-main {
    padding: 34px;
}

.admin-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.admin-top p {
    margin: 0 0 6px;
    color: var(--muted);
}

.admin-top h1 {
    margin: 0;
    font-size: 34px;
}

.flash {
    margin-bottom: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(31, 255, 207, .28);
    border-radius: 14px;
    background: rgba(0, 190, 160, .16);
}

.flash.error {
    border-color: rgba(255, 86, 113, .5);
    background: rgba(255, 55, 91, .16);
}

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

.metric-grid div,
.admin-panel,
.login-panel {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(22, 10, 72, .78);
    box-shadow: inset 0 1px 20px rgba(136, 88, 255, .12);
}

.metric-grid div {
    padding: 22px;
}

.metric-grid span {
    color: var(--muted);
}

.metric-grid strong {
    display: block;
    margin-top: 8px;
    font-size: 38px;
}

.admin-panel {
    padding: 22px;
}

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

.panel-head h2 {
    margin: 0;
}

.panel-head a,
.table-row a,
.table-row button,
.form-panel button,
.login-panel button {
    padding: 10px 14px;
}

.panel-head a,
.form-panel button,
.login-panel button {
    background: linear-gradient(135deg, #09c7a6, #0b8d70);
}

.table-list {
    display: grid;
    gap: 10px;
}

.table-row {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto auto auto;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
}

.table-row small {
    color: var(--muted);
}

.table-row form {
    margin: 0;
}

.table-row button {
    border: 0;
    color: #fff;
    background: rgba(255, 73, 112, .24);
}

.form-panel {
    display: grid;
    gap: 16px;
    max-width: 760px;
}

.form-panel label,
.login-panel label {
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.form-panel input,
.form-panel textarea,
.login-panel input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    padding: 13px 14px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    outline: 0;
}

.check {
    display: flex !important;
    grid-template-columns: none;
    align-items: center;
    gap: 10px;
}

.check input {
    width: 18px;
    height: 18px;
}

.splash-preview img {
    max-width: 160px;
    border-radius: 18px;
}

.login-body {
    display: grid;
    place-items: center;
    padding: 20px;
}

.login-panel {
    display: grid;
    gap: 16px;
    width: min(100%, 420px);
    padding: 28px;
}

.login-panel h1,
.login-panel p {
    margin: 0;
}

.login-panel p {
    color: var(--muted);
}

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

    .admin-sidebar {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

    .admin-main {
        padding: 22px;
    }

    .metric-grid,
    .table-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 460px) {
    .phone-stage {
        padding: 0;
        place-items: stretch;
    }

    .mobile-app {
        width: 100%;
        height: 100vh;
        border: 0;
        border-radius: 0;
    }

    .bottom-nav {
        width: calc(100vw - 48px);
    }

    .app-header h1 {
        font-size: 26px;
    }

    .feature-card {
        grid-template-columns: 42px 1fr;
        padding: 12px;
    }

    .feature-card span {
        width: 42px;
        height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}
