/* CSS Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
    min-height: 100vh;
    line-height: 1.6;
}

/* Force text-style rendering for all symbols, not emoji */
.sign-symbol,
.sign-label-icon,
.next-sign-symbol,
.countdown-label {
    font-family: 'Segoe UI Symbol', 'Arial Unicode MS', 'Lucida Sans Unicode', sans-serif;
    font-variant-emoji: text;
    -webkit-font-feature-settings: "emoji" 0;
    font-feature-settings: "emoji" 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Override container for split-screen mode */
.app-wrapper .container {
    max-width: none;
    margin: 0;
    width: 100%;
}

.current-now-header {
    font-size: 0.9rem;
    font-weight: 500;
    color: #545454;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.current-now-header .separator {
    color: #333;
    margin: 0 8px;
}

.birth-description {
    text-align: left;
    margin-bottom: 20px;
    padding: 0;
    font-size: 2.2rem;
    line-height: 1.6;
    color: #ccc;
    text-wrap: pretty;
}

.updating-in-btn {
    --btn-bg: none;
    --btn-color: #666;
    --btn-border: #333;
    background: var(--btn-bg);
    border: 1px solid var(--btn-border);
    color: var(--btn-color);
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
    margin-bottom: 40px;
    font-family: inherit;
}

.updating-in-btn:not(.urgent):hover {
    background: #1a1a1a;
    color: #888;
    border-color: #444;
}

.updating-in-btn.urgent:hover {
    filter: brightness(1.3);
}

.updating-in-btn span {
    font-family: 'Space Mono', monospace;
}

.birth-description-intro {
    font-weight: 200;
    color: #888;
    letter-spacing: -0.7px;
}

.birth-description-text {
    font-weight: 500;
    color: #fff;
    transition: color 5s ease;
    display: inline;
    position: relative;
}

.birth-description-text.changing {
    color: #00ff00;
    transition: color 0.3s ease;
}

.changing-part {
    display: inline;
    position: relative;
    transition: color 5s ease;
}

.changing-part.changing {
    color: #00ff00;
    transition: color 0.3s ease;
}

.changing-part.changing-blue {
    color: #4da6ff;
    transition: color 0.3s ease;
}

.next-up {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #888;
    text-wrap: pretty;
    display: none;
}

.next-up-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #545454;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.next-up-label .separator {
    color: #333;
    margin: 0 8px;
}

.next-up-label .sign-text {
}

.next-up-description {
    font-weight: 300;
    color: #888;
}

.next-up-description em {
    font-style: italic;
    color: #aaa;
}

#next-up-countdown {
    font-family: 'Space Mono', monospace;
}

.future-signs-container {
    margin-top: 20px;
}

.future-signs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.future-signs-table td {
    padding: 10px 8px;
    border: none;
    color: #888;
    font-weight: 300;
}

.future-signs-table tbody tr {
    border-bottom: 1px solid #333;
}

.future-signs-table tbody tr.next-up-header {
    border-bottom: none;
}

.future-signs-table tr:hover {
    background: #1a1a1a;
}

.future-signs-table tr.highlighted {
    background: #1a1a1a;
}

.future-signs-table .time-until {
    color: #888;
    font-weight: 300;
    white-space: nowrap;
    font-family: 'Space Mono', monospace;
}

.future-signs-table .sign-cell {
    color: #aaa;
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: 1.1px;
}

.future-signs-table .sign-cell.changed {
    color: #ddd;
}

.future-signs-table .character {
    color: #888;
    font-weight: 400;
    font-size: 0.85rem;
}

.future-signs-table .character .highlight {
    color: #aaa;
}

.load-more-container {
    text-align: center;
    padding: 20px 0;
}

.load-more-btn {
    background: none;
    border: 1px solid #545454;
    color: #888;
    padding: 10px 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.load-more-btn:hover {
    background: #1a1a1a;
    color: #ccc;
    border-color: #888;
}

.sign-change-separator {
    background: #4f4f4f;
    font-weight: 500;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
}

.sign-change-separator td {
    color: #000;
    background: #4f4f4f;
    padding: 12px 8px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: none;
}

.sign-change-separator .separator-text {
    text-align: left;
}

.sign-change-separator .time-until {
    letter-spacing: normal;
    color: #000;
}

.next-up-header {
    background: #4f4f4f;
    font-weight: 500;
    border-top: 1px solid #333;
    border-bottom: none;
}

.next-up-header td {
    color: #000;
    background: #4f4f4f;
    padding: 0px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    text-align: left;
}

.city-input-wrapper {
    display: inline-block;
    position: relative;
    font-weight: 300;
    color: #888;
}

.city-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    color: #fff;
    font-family: inherit;
    font-size: inherit;
    font-weight: 300;
    padding: 0 2px 0 4px;
    margin: 0;
    cursor: pointer;
    transition: border-color 0.2s;
    outline: none;
    width: auto;
    min-width: 60px;
}

.city-input::placeholder {
    color: #555;
    opacity: 1;
}

.city-input:hover,
.city-input:focus {
    border-bottom-color: #fff;
}

.city-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 0;
    margin-top: 8px;
    min-width: 300px;
    max-width: calc(100vw - 20px);
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.city-autocomplete.visible {
    display: block;
}

.city-autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #222;
    font-size: 0.9rem;
}

.city-autocomplete-item:last-child {
    border-bottom: none;
}

.city-autocomplete-item:hover {
    background: #252525;
}

.city-autocomplete-item.current-location {
    color: #66b3ff;
    font-weight: 500;
}

.city-autocomplete-item .city-name {
    color: #fff;
}

.city-autocomplete-item .city-details {
    color: #888;
    font-size: 0.85rem;
    margin-top: 2px;
}

.current-signs-header {
    font-size: 0.9rem;
    color: #545454;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 40px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-top: 1px solid #1a1a1a;
    text-wrap: pretty;
}

.mobile-break {
    display: none;
}

.current-signs-header .monospace {
    font-family: 'Space Mono', monospace;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
}

.header-icon {
    display: block;
    margin: 0 auto 7px auto;
    width: 70px;
    height: auto;
}

h1 {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.1em;
    text-wrap: balance;
}

.subtitle {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: #888;
    font-weight: 300;
    letter-spacing: 1px;
    text-wrap: balance;
}

.timestamp {
    font-size: 0.75rem;
    color: #666;
    margin-top: 15px;
}

.sign-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sign-card.changing {
    animation: pulse 0.5s ease-in-out;
    border-color: #444;
}

.sign-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #333, transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.sign-card.changing::before {
    opacity: 1;
}

.sign-card.globe-view-selector {
    cursor: pointer;
}

.sign-card.globe-view-selector:hover {
    border-color: #444;
    background: #1a1a1a;
}

.sign-card.globe-selected {
    border-color: #fff;
    background: #1f1f1f;
}

.sign-card.globe-selected:hover {
    border-color: #fff;
    background: #2a2a2a;
}

.sign-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sign-label-icon {
    font-size: 1rem;
    opacity: 0.7;
    font-family: 'Segoe UI Symbol', 'Arial Unicode MS', 'Lucida Sans Unicode', sans-serif;
    -webkit-text-stroke: 0.3px currentColor;
}

.sign-name {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 8px;
    color: #fff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sign-name-full {
    display: inline;
}

.sign-name-short {
    display: none;
}

.sign-symbol {
    font-size: 4.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Segoe UI Symbol', 'Arial Unicode MS', 'Lucida Sans Unicode', sans-serif;
    font-variant-emoji: text;
    -webkit-text-stroke: 0.5px currentColor;
    display: inline-block;
}

.sign-dates {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 15px;
    font-weight: 300;
}

.sign-degree {
    font-family: 'Space Mono', monospace;
}

.countdown {
    font-size: 0.7rem;
    color: #666;
    padding-top: 15px;
    border-top: 1px solid #1a1a1a;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.countdown-label {
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.countdown-time {
    color: #999;
    font-size: 0.85rem;
    margin-top: 5px;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
}

.countdown.urgent {
    background: #cc0000;
    color: #fff;
    margin: 15px -30px -30px -30px;
    padding: 15px 30px 30px 30px;
    border-top: 1px solid #ff0000;
    border-radius: 0 0 10px 10px;
}

.countdown.urgent .countdown-label {
    color: #ffcccc;
}

.countdown.urgent .countdown-time {
    color: #fff;
    font-weight: 700;
}

.next-sign {
    font-size: 0.7rem;
    color: #777;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.location-coords {
    margin-top: 5px;
    color: #666;
    font-size: 0.75rem;
}

.footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #222;
    font-size: 0.7rem;
    color: #555;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.footer a:hover {
    text-decoration: underline;
}

/* Custom tooltips */
[data-tooltip] {
    cursor: default;
}

#custom-tooltip {
    position: fixed;
    background: #000;
    color: #888;
    border: 1px solid #333;
    padding: 4px 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    border-radius: 0;
    pointer-events: none;
    z-index: 10000;
    font-weight: normal;
    letter-spacing: normal;
    opacity: 0;
    transition: opacity 0.1s ease;
}

#custom-tooltip.visible {
    opacity: 1;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.error {
    background: #1a0a0a;
    border: 1px solid #3a1a1a;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    color: #c88;
    font-size: 0.85rem;
}

.loading-detailed {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.loading-detailed .main-message {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #aaa;
}

.loading-detailed .sub-message {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 20px;
}

.skip-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #222;
    border: 1px solid #333;
    border-radius: 6px;
    color: #aaa;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.skip-button:hover {
    background: #2a2a2a;
    border-color: #444;
    color: #fff;
}

/* Split-screen layout */
.app-wrapper {
    display: flex;
    width: 100%;
    height: 100vh;
    position: relative;
}

.app-wrapper .container {
    width: 100%;
    transition: width 0.6s ease-in-out, padding 0.6s ease-in-out;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    padding: 40px 10%;
}

/* Center content when not in split view */
.app-wrapper .container > * {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    transition: max-width 0.6s ease-in-out, margin 0.6s ease-in-out;
}

.app-wrapper.split-view .container {
    width: 50%;
    padding-left: 2.5%;
    padding-right: 2.5%;
}

.app-wrapper.split-view .container > * {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.globe-container {
    position: fixed;
    right: -50%;
    top: 0;
    width: 50%;
    height: 100vh;
    background: #000;
    transition: right 0.6s ease-in-out;
    z-index: 100;
}

.app-wrapper.split-view .globe-container {
    right: 0;
}

#globe-map {
    width: 100%;
    height: 100%;
}

/* Button group styling */
.button-group {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    margin: 1rem 0;
}

/* Hide visualize button */
#visualize-btn {
    display: none;
}

/* Globe marker styling */
.globe-marker {
    width: 60px;
    height: 60px;
    background: #000;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
}

.globe-marker::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    animation: marker-pulse 2s ease-out infinite;
}

.globe-marker svg {
    width: 36px;
    height: 36px;
}

@keyframes marker-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* ========================================
   MEDIA QUERIES - Keep at end for priority
   ======================================== */

/* Additional CSS to prevent emoji rendering */
@supports (font-variant-emoji: text) {
    .sign-symbol,
    .sign-label-icon {
        font-variant-emoji: text;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        background: #111;
    }
    50% {
        transform: scale(1.02);
        background: #1a1a1a;
    }
}

@media (min-width: 850px) {
    .sign-card {
        margin-bottom: 0;
    }
}

/* Double breakpoints when in split view (since container is 50% width) */
@media (max-width: 1800px) {
    .app-wrapper.split-view .container {
        max-width: 100%;
    }

    .app-wrapper.split-view .container {
        padding: 20px 4%;
    }

    .app-wrapper.split-view .birth-description {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .app-wrapper.split-view .current-now-header {
        margin-bottom: 0;
    }

    .app-wrapper.split-view .current-now-header .separator {
        display: none;
    }

    .app-wrapper.split-view .current-now-header .sign-text {
        display: block;
    }

    .app-wrapper.split-view .next-up-label .separator {
        display: none;
    }

    .app-wrapper.split-view .next-up-label .sign-text {
        display: block;
        margin-top: 8px;
    }

    .app-wrapper.split-view .signs-grid {
        gap: 10px;
    }

    .app-wrapper.split-view .sign-card {
        padding: 10px;
    }

    .app-wrapper.split-view .countdown.urgent {
        margin: 15px -10px -10px -10px;
        padding: 15px 10px 10px 10px;
    }

    .app-wrapper.split-view .mobile-break {
        display: block;
    }

    .app-wrapper.split-view .desktop-only {
        display: none;
    }

    .app-wrapper.split-view .sign-name-full {
        display: none;
    }

    .app-wrapper.split-view .sign-name-short {
        display: inline;
    }

    .app-wrapper.split-view .sign-name {
        font-size: 1.4rem;
    }

    .app-wrapper.split-view .sign-symbol {
        font-size: 3.75rem;
        margin-bottom: 0;
    }

    .app-wrapper.split-view .sign-label {
        margin-bottom: 0;
    }

    .app-wrapper.split-view .future-signs-table {
        font-size: 0.75rem;
    }

    .app-wrapper.split-view .future-signs-table td {
        padding: 8px 6px;
    }
}

@media (max-width: 900px) {
    .container {
        max-width: 100%;
    }

    .app-wrapper .container {
        padding: 20px 4%;
    }

    h1 {
        font-size: 1.3rem;
    }

    .birth-description {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .current-now-header .separator {
        display: none;
    }

    .current-now-header .sign-text {
        display: block;
    }

    .next-up-label .separator {
        display: none;
    }

    .next-up-label .sign-text {
        display: block;
        margin-top: 8px;
    }

    .city-autocomplete {
        min-width: 250px;
        max-width: calc(100vw - 10px);
        left: 50%;
        transform: translateX(-50%);
    }

    .signs-grid {
        gap: 10px;
    }

    .sign-card {
        padding: 10px;
    }

    .countdown.urgent {
        margin: 15px -10px -10px -10px;
        padding: 15px 10px 10px 10px;
    }

    .mobile-break {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .sign-name-full {
        display: none;
    }

    .sign-name-short {
        display: inline;
    }

    .sign-name {
        font-size: 1.4rem;
    }

    .sign-symbol {
        font-size: 3.75rem;
        margin-bottom: 0;
    }

    .sign-label {
        margin-bottom: 0;
    }

    .future-signs-table {
        font-size: 0.75rem;
    }

    .future-signs-table td {
        padding: 8px 4px;
    }

    .future-signs-table .character {
        font-size: 0.7rem;
    }

    .future-signs-table tbody tr {
        display: grid;
        grid-template-columns: minmax(70px, auto) minmax(90px, auto) 1fr;
        grid-template-rows: auto auto auto;
    }

    .future-signs-table .time-until {
        grid-column: 1;
        grid-row: 1 / 4;
        align-self: start;
        padding-left: 7px;
    }

    .future-signs-table .sign-cell:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
        padding: 8px 8px 2px 8px;
    }

    .future-signs-table .sign-cell:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
        padding: 2px 8px;
    }

    .future-signs-table .sign-cell:nth-child(4) {
        grid-column: 2;
        grid-row: 3;
        padding: 2px 8px 8px 8px;
    }

    .future-signs-table .character {
        grid-column: 3;
        grid-row: 1 / 4;
        align-self: start;
    }

    .sign-change-separator {
        display: grid;
        grid-template-columns: minmax(70px, auto) 1fr;
    }

    .sign-change-separator .time-until {
        grid-column: 1;
    }

    .sign-change-separator .separator-text {
        grid-column: 2;
    }

    .sign-change-separator td {
        font-size: 0.75rem;
    }

    .next-up-header td {
        font-size: 0.7rem;
        padding: 2px 4px 2px 7px;
    }

    .mobile-break {
        display: block;
    }
}

@media (min-width: 769px) {
    /* Desktop globe positioning */
    .globe-container {
        position: fixed;
        right: -50%;
        top: 0;
        width: 50%;
        height: 100vh;
        background: #000;
        transition: right 0.6s ease-in-out;
        z-index: 100;
    }

    .app-wrapper.split-view .globe-container {
        right: 0;
    }
}

@media (max-width: 768px) {
    /* Mobile globe layout */
    .globe-container {
        position: static;
        width: 100vw;
        height: 0;
        overflow: hidden;
        transition: height 0.6s ease-in-out;
        margin-left: -4%;
        margin-right: -4%;
        margin-bottom: 0;
    }

    .app-wrapper.split-view .globe-container {
        height: 75vh;
        margin-bottom: 20px;
    }

    /* Ensure the map inside is always ready at full size */
    #globe-map {
        width: 100%;
        height: 75vh;
    }

    .app-wrapper.split-view .container {
        width: 100%;
        padding-left: 4%;
        padding-right: 4%;
    }

    /* Keep signs-grid as 3-up grid on mobile */
    .signs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    /* Hide visualize button on mobile */
    #visualize-btn {
        display: none;
    }

    /* Enable globe view selector on mobile */
    .sign-card.globe-view-selector {
        cursor: pointer;
        pointer-events: auto;
    }

    .sign-card.globe-view-selector:hover {
        border-color: #444;
        background: #1a1a1a;
    }

    .sign-card.globe-selected {
        border-color: #fff;
        background: #1f1f1f;
    }

    .sign-card.globe-selected:hover {
        border-color: #fff;
        background: #2a2a2a;
    }

    /* Hide degree info when globe is open on mobile */
    .app-wrapper.split-view .sign-dates {
        display: none;
    }

    /* Compact sign cards when globe is open on mobile */
    .app-wrapper.split-view .sign-symbol {
        font-size: 2.5rem;
        line-height: 1;
        margin-bottom: 0;
    }

    .app-wrapper.split-view .sign-label {
        margin-bottom: 0;
    }

    .app-wrapper.split-view .sign-name {
        margin-bottom: 0;
    }

    .app-wrapper.split-view .countdown {
        padding-top: 0;
        margin-top: 0;
        border-top: none;
    }

    .app-wrapper.split-view .countdown-label {
        margin-bottom: 0;
    }

    .app-wrapper.split-view .countdown-time {
        margin-top: 0;
    }
}
