:root {
    --astro-deep-space: #060912;
    --astro-cosmic-blue: #162a4f;
    --astro-glow-gold: #ffecb3;
    --astro-planet-orange: #ff9e42;
    --astro-accent-cyan: #00d4ff;
    --astro-text-base: #f0f2f5;
    --astro-text-soft: rgba(240, 242, 245, 0.78);
    --astro-card-bg: rgba(10, 15, 28, 0.88);
    --astro-card-strong: rgba(8, 12, 24, 0.94);
    --astro-border: rgba(255, 255, 255, 0.12);
    --astro-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

body {
    min-height: 100vh;
    color: var(--astro-text-base);
    background-color: var(--astro-deep-space);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.36)),
        url("../img/fondo-cosmos.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 0.75rem 1rem;
    background:
        linear-gradient(135deg, rgba(8, 12, 24, 0.92), rgba(16, 24, 44, 0.84)),
        rgba(8, 12, 24, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1240px;
    margin: 0 auto;
}

.site-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
}

.site-header__brand:hover,
.site-header__brand:focus {
    color: var(--astro-glow-gold);
}

.site-header__mark {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    color: var(--astro-deep-space);
    background: linear-gradient(135deg, var(--astro-glow-gold), var(--astro-planet-orange));
    border-radius: 999px;
    box-shadow: 0 0 22px rgba(255, 236, 179, 0.26);
    font-size: 0.8rem;
}

.site-header__name {
    font-size: 1.05rem;
}

.site-header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.site-header__nav::-webkit-scrollbar {
    display: none;
}

.site-header__nav a {
    padding: 0.55rem 0.8rem;
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.site-header__nav a:hover,
.site-header__nav a:focus,
.site-header__nav a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 18px rgba(0, 212, 255, 0.12);
}

.site-footer {
    margin-top: 3rem;
    padding: 2.5rem 1rem 1.25rem;
    color: rgba(255, 255, 255, 0.78);
    background:
        radial-gradient(circle at 16% 0%, rgba(255, 236, 179, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(8, 12, 24, 0.72), rgba(5, 8, 16, 0.96));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
    gap: 2rem;
    max-width: 1240px;
    margin: 0 auto;
}

.site-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
}

.site-footer__brand:hover,
.site-footer__brand:focus {
    color: var(--astro-glow-gold);
}

.site-footer__mark {
    display: grid;
    width: 2.2rem;
    height: 2.2rem;
    place-items: center;
    color: var(--astro-deep-space);
    background: linear-gradient(135deg, var(--astro-glow-gold), var(--astro-planet-orange));
    border-radius: 999px;
    font-size: 0.78rem;
    box-shadow: 0 0 22px rgba(255, 236, 179, 0.22);
}

.site-footer__brand-block p {
    max-width: 34rem;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

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

.site-footer h2 {
    margin-bottom: 0.75rem;
    color: var(--astro-glow-gold);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    margin: 0.45rem 0;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.site-footer__bottom {
    max-width: 1240px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.58);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.legal-page {
    max-width: 920px;
    margin: 0 auto;
}

.legal-page .reading-content h2 {
    margin-top: 1.8rem;
    color: var(--astro-glow-gold);
}

.legal-page .reading-content p,
.legal-page .reading-content li {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
}

.page-shell {
    min-height: 100vh;
    padding: 3rem 1rem 4rem;
}

.container {
    position: relative;
    z-index: 1;
}

.hero-card,
.reading-wrapper {
    max-width: 980px;
}

.hero-panel,
.reading-header,
.reading-content,
.cta-card {
    background: var(--astro-card-bg);
    border: 1px solid var(--astro-border);
    border-radius: 20px;
    box-shadow: var(--astro-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-panel {
    color: var(--astro-text-base);
}

.eyebrow {
    color: var(--astro-glow-gold);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
.display-5 {
    color: #fff;
}

.lead,
.text-secondary,
.form-text,
.location-help,
.location-status,
.reading-meta,
.cta-card p {
    color: var(--astro-text-soft) !important;
}

.form-label {
    color: var(--astro-glow-gold);
    font-weight: 700;
}

.form-control,
.form-control-lg {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 0.95rem 1rem;
}

.form-control:focus,
.form-control-lg:focus {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.09);
    border-color: var(--astro-accent-cyan);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.16);
}

.form-control::placeholder,
.form-control-lg::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(1);
}

.btn-primary {
    color: var(--astro-deep-space);
    background: linear-gradient(135deg, var(--astro-planet-orange) 0%, #ff8000 100%);
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(255, 128, 0, 0.34);
    font-weight: 800;
    padding: 0.95rem 1.5rem;
}

.btn-primary:hover,
.btn-primary:focus {
    color: var(--astro-deep-space);
    background: linear-gradient(135deg, #ffb366 0%, var(--astro-planet-orange) 100%);
    box-shadow: 0 12px 32px rgba(255, 128, 0, 0.46);
}

.btn-outline-primary {
    color: var(--astro-accent-cyan);
    background: transparent;
    border-color: var(--astro-accent-cyan);
    border-radius: 12px;
    padding: 0.9rem 1.5rem;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: var(--astro-deep-space);
    background: var(--astro-accent-cyan);
    border-color: var(--astro-accent-cyan);
    box-shadow: 0 0 18px rgba(0, 212, 255, 0.34);
}

.location-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem !important;
}

.location-help {
    max-width: 620px;
    font-size: 0.9rem;
}

.location-status {
    color: var(--astro-accent-cyan) !important;
    font-size: 0.9rem;
    font-style: italic;
}

.place-results {
    max-height: 250px;
    overflow-y: auto;
    margin-top: 0.5rem;
    background: var(--astro-card-strong);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
}

.place-result-item {
    width: 100%;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.86);
    text-align: left;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.place-result-item:first-child {
    border-top: 0;
}

.place-result-item:hover,
.place-result-item:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.ad-slot {
    margin: 1.5rem 0;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.68);
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.22);
    border-radius: 14px;
}

.ad-slot--hidden {
    display: none;
}

.reading-wrapper {
    margin: 0 auto;
}

.reading-header {
    padding: 2rem;
    margin: 1rem 0 1.5rem;
}

.reading-meta {
    margin: 0;
}

.reading-summary {
    max-width: 68ch;
    margin: 0.85rem 0 1rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.7;
}

.reading-content {
    padding: clamp(1.35rem, 3vw, 2.4rem);
    background: rgba(8, 12, 24, 0.92);
}

.reading-section + .reading-section {
    margin-top: 1.7rem;
    padding-top: 1.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reading-section h2 {
    margin-bottom: 0.9rem;
    color: var(--astro-glow-gold);
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    font-weight: 800;
}

.reading-section p {
    max-width: 76ch;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.seo-content,
.seo-explanation {
    margin-top: 2rem;
    padding: 1.6rem;
    background: rgba(8, 12, 24, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: var(--astro-shadow);
}

.seo-content h2,
.seo-explanation h2 {
    margin-bottom: 0.85rem;
    color: var(--astro-glow-gold);
    font-size: 1.4rem;
}

.seo-content h3,
.seo-explanation h3 {
    margin-top: 1rem;
    color: #fff;
    font-size: 1.08rem;
}

.seo-content p,
.seo-content li,
.seo-explanation p,
.seo-explanation li {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
}

.seo-content ul,
.seo-explanation ul {
    padding-left: 1.2rem;
}

.seo-explanation a,
.seo-content a {
    color: var(--astro-accent-cyan);
}

.seo-explanation a:hover,
.seo-explanation a:focus,
.seo-content a:hover,
.seo-content a:focus {
    color: #fff;
}

.reading-hero-image {
    margin: 1rem 0 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: var(--astro-shadow);
}

.reading-hero-image img {
    display: block;
    width: 100%;
    max-height: 280px;
    object-fit: cover;
}

.result-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 1.25rem;
    align-items: start;
}

.tool-landing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 1.25rem;
    align-items: start;
}

.result-main {
    min-width: 0;
}

.tool-landing-main {
    min-width: 0;
}

.result-sidebar {
    display: block;
}

.result-sidebar__inner {
    position: sticky;
    top: 1.25rem;
    padding: 1.1rem;
    background:
        radial-gradient(circle at top, rgba(255, 236, 179, 0.1), transparent 34%),
        var(--astro-card-bg);
    border: 1px solid var(--astro-border);
    border-radius: 20px;
    box-shadow: var(--astro-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.result-sidebar__eyebrow {
    margin-bottom: 0.45rem;
    color: var(--astro-glow-gold);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.result-sidebar h2 {
    margin-bottom: 0.9rem;
    font-size: 1.15rem;
    line-height: 1.2;
}

.result-tool-grid {
    display: none;
}

.cta-card {
    display: block;
    padding: 1.4rem;
    color: inherit;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.cta-card:hover,
.cta-card:focus {
    color: inherit;
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.42);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
}

.cta-card h2 {
    margin-bottom: 0.6rem;
    color: #fff;
    font-size: 1.15rem;
}

.horary-tool-grid {
    margin-top: 2rem;
}

.horary-tool-card {
    position: relative;
    overflow: hidden;
    min-height: 310px;
    padding: 0;
    background:
        linear-gradient(180deg, rgba(16, 8, 35, 0.2), rgba(16, 8, 35, 0.94)),
        rgba(16, 8, 35, 0.9);
    border-color: rgba(214, 108, 255, 0.3);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.44),
        0 0 0 rgba(214, 108, 255, 0);
}

.horary-tool-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(214, 108, 255, 0.65), rgba(0, 212, 255, 0.34), rgba(255, 236, 179, 0.45));
    opacity: 0;
    transition: opacity 180ms ease;
    z-index: -1;
}

.horary-tool-card:hover,
.horary-tool-card:focus {
    transform: translateY(-5px);
    border-color: rgba(242, 213, 255, 0.86);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.55),
        0 0 36px rgba(214, 108, 255, 0.5),
        0 0 72px rgba(0, 212, 255, 0.18);
}

.horary-tool-card:hover::before,
.horary-tool-card:focus::before {
    opacity: 0.95;
}

.tool-card-media {
    display: block;
    height: 132px;
    background:
        linear-gradient(135deg, rgba(214, 108, 255, 0.38), rgba(0, 212, 255, 0.16)),
        url("../img/tool-placeholder.jpg");
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.horary-tool-card--horary .tool-card-media {
    background-image:
        linear-gradient(135deg, rgba(214, 108, 255, 0.34), rgba(255, 236, 179, 0.18)),
        url("../img/tool-horary.jpg");
}

.horary-tool-card--compatibility .tool-card-media {
    background-image:
        linear-gradient(135deg, rgba(214, 108, 255, 0.42), rgba(255, 128, 180, 0.18)),
        url("../img/tool-compatibility.jpg");
}

.horary-tool-card--forecast .tool-card-media {
    background-image:
        linear-gradient(135deg, rgba(0, 212, 255, 0.28), rgba(214, 108, 255, 0.22)),
        url("../img/tool-daily-horoscope.jpg");
}

.horary-tool-card--birth-chart .tool-card-media {
    background-image:
        linear-gradient(135deg, rgba(255, 236, 179, 0.24), rgba(214, 108, 255, 0.28)),
        url("../img/tool-birth-chart.jpg");
}

.tool-card-kicker,
.tool-card-action,
.horary-tool-card h2,
.horary-tool-card p {
    display: block;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}

.tool-card-kicker {
    margin-top: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--astro-glow-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.horary-tool-card h2 {
    margin-bottom: 0.65rem;
    font-size: 1.25rem;
    line-height: 1.2;
}

.horary-tool-card p {
    color: rgba(255, 255, 255, 0.82) !important;
    line-height: 1.55;
}

.tool-card-action {
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    color: var(--astro-accent-cyan);
    font-weight: 800;
}

.result-sidebar .horary-tool-card {
    min-height: 0;
    margin-top: 0.85rem;
}

.result-sidebar .tool-card-media {
    height: 88px;
}

.result-sidebar .tool-card-kicker,
.result-sidebar .tool-card-action,
.result-sidebar .horary-tool-card h2,
.result-sidebar .horary-tool-card p {
    margin-left: 1rem;
    margin-right: 1rem;
}

.result-sidebar .tool-card-kicker {
    margin-top: 0.85rem;
}

.result-sidebar .horary-tool-card h2 {
    font-size: 1rem;
}

.result-sidebar .horary-tool-card p {
    font-size: 0.9rem;
}

.result-sidebar .tool-card-action {
    margin-bottom: 1rem;
}

.posts-sidebar-block {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tool-posts-sidebar .posts-sidebar-block {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.posts-sidebar-list {
    display: grid;
    gap: 0.45rem;
    max-height: 420px;
    overflow: auto;
    padding-right: 0.2rem;
}

.posts-sidebar-list a {
    display: block;
    padding: 0.55rem 0.65rem;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.25;
}

.posts-sidebar-list a:hover,
.posts-sidebar-list a:focus {
    color: #fff;
    border-color: rgba(0, 212, 255, 0.3);
}

@media (max-width: 991.98px) {
    .result-layout,
    .tool-landing-grid {
        display: block;
    }

    .result-sidebar {
        display: none;
    }

    .result-tool-grid {
        display: grid;
    }
}

.metrics-page {
    max-width: 1180px;
}

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

.metric-card,
.metrics-panel {
    background: var(--astro-card-bg);
    border: 1px solid var(--astro-border);
    border-radius: 18px;
    box-shadow: var(--astro-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.metric-card {
    padding: 1.2rem;
}

.metric-card span {
    display: block;
    color: var(--astro-text-soft);
    font-size: 0.88rem;
}

.metric-card strong {
    display: block;
    margin-top: 0.4rem;
    color: #fff;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    line-height: 1;
}

.metrics-panel {
    padding: 1.25rem;
    margin-top: 1.25rem;
}

.metrics-panel h2 {
    margin-bottom: 1rem;
    color: var(--astro-glow-gold);
    font-size: 1.3rem;
}

.metrics-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    color: rgba(255, 255, 255, 0.9);
}

.metrics-table th,
.metrics-table td {
    padding: 0.8rem;
    vertical-align: top;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics-table th {
    color: var(--astro-glow-gold);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.metrics-table a {
    color: var(--astro-accent-cyan);
    text-decoration: none;
}

.metrics-table a:hover,
.metrics-table a:focus {
    color: #fff;
}

.metrics-table code {
    color: rgba(255, 255, 255, 0.82);
    white-space: normal;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at top, rgba(0, 212, 255, 0.14), transparent 30%),
        rgba(4, 8, 16, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.loading-overlay.is-active,
.loading-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.loading-overlay__backdrop {
    position: absolute;
    inset: 0;
}

.loading-card,
.loading-overlay__card {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    padding: 2rem;
    color: #fff;
    text-align: center;
    background: rgba(10, 15, 28, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

.loading-orbit,
.loading-overlay__orbit {
    position: relative;
    width: 124px;
    height: 124px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
}

.loading-orbit::before,
.loading-orbit::after,
.loading-overlay__orbit::before,
.loading-overlay__orbit::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.loading-orbit::after,
.loading-overlay__orbit::after {
    inset: 16px;
    border-color: rgba(0, 212, 255, 0.38);
}

.loading-core,
.loading-overlay__core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff2c7 0%, #ff9e42 60%, #ff8000 100%);
    box-shadow: 0 0 25px rgba(255, 158, 66, 0.7);
}

.loading-ring,
.loading-overlay__planet {
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    animation: orbit-spin 2.2s linear infinite;
}

.loading-planet,
.loading-overlay__planet::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff 0%, #6ce9ff 100%);
    box-shadow: 0 0 18px rgba(0, 212, 255, 0.58);
}

.loading-planet {
    left: auto;
}

.loading-overlay__planet--two {
    inset: 22px;
    animation-duration: 3.4s;
    animation-direction: reverse;
}

.loading-overlay__planet--two::after {
    right: -5.5px;
    width: 11px;
    height: 11px;
    margin-top: -5.5px;
    background: linear-gradient(135deg, #ffecb3 0%, #ff9e42 100%);
    box-shadow: 0 0 16px rgba(255, 158, 66, 0.55);
}

.loading-title,
.loading-overlay__title {
    margin-bottom: 0.65rem;
    color: #fff;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
}

.loading-copy,
.loading-overlay__message {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.65;
}

.loading-status,
.loading-overlay__eyebrow {
    min-height: 1.5rem;
    color: var(--astro-glow-gold);
    font-weight: 700;
}

.page-is-loading {
    overflow: hidden;
}

@keyframes orbit-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 767.98px) {
    body {
        background-attachment: scroll;
    }

    .site-header {
        padding: 0.65rem 0.75rem;
    }

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

    .site-header__nav {
        justify-content: flex-start;
        width: 100%;
        padding-bottom: 0.1rem;
    }

    .site-footer__inner,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .page-shell {
        padding: 1.25rem 1rem 2.5rem;
    }

    .hero-panel .card-body,
    .reading-header,
    .reading-content {
        padding: 1.25rem !important;
    }

    .location-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }

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

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