:root {
    --bg: #08090c;
    --bg-soft: #101116;
    --panel: #121319;
    --panel-light: #181a20;

    --text: #f5f1eb;
    --muted: #a7a4a0;

    --accent: #7c2946;
    --accent-light: #a04766;
    --gold: #c8af79;

    --border: rgba(255, 255, 255, 0.10);

    --radius: 26px;
}


* {
    box-sizing: border-box;
}


html,
body {
    margin: 0;
    min-height: 100%;
    background: var(--bg);
    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}


body {
    min-height: 100vh;
    overflow-x: hidden;
}


button {
    font: inherit;
}


.hidden {
    display: none !important;
}


/* =========================================================
   WELCOME
========================================================= */

.welcome-screen {
    min-height: 100vh;

    position: relative;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(124, 41, 70, 0.35),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #07080a 0%,
            #101017 50%,
            #08090c 100%
        );
}


.welcome-glow {
    position: absolute;

    border-radius: 999px;

    filter: blur(90px);

    opacity: 0.45;
}


.welcome-glow-one {
    width: 520px;
    height: 520px;

    right: -180px;
    top: 8%;

    background: var(--accent);
}


.welcome-glow-two {
    width: 360px;
    height: 360px;

    left: -160px;
    bottom: 0;

    background: #50352c;
}


.welcome-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 34px 48px;
}


.brand {
    color: var(--text);

    font-size: 18px;
    font-weight: 700;

    letter-spacing: 0.35em;
}


.welcome-time {
    color: var(--muted);

    font-size: 15px;
}


.welcome-content {
    position: relative;
    z-index: 2;

    width: min(900px, calc(100% - 96px));

    margin: auto;

    padding: 40px 0 70px;
}


.eyebrow {
    display: block;

    margin-bottom: 14px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.22em;
}


.welcome-content h1 {
    max-width: 800px;

    margin: 0 0 60px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(58px, 8vw, 105px);
    font-weight: 400;

    line-height: 0.95;
    letter-spacing: -0.05em;
}


.welcome-route {
    max-width: 800px;

    display: grid;
    grid-template-columns: auto 1fr auto;

    align-items: center;

    gap: 28px;

    margin-bottom: 18px;
}


.airport {
    display: flex;
    flex-direction: column;

    gap: 6px;
}


.airport-right {
    text-align: right;
}


.airport-code {
    font-size: 35px;
    font-weight: 300;

    letter-spacing: 0.05em;
}


.airport-city {
    color: var(--muted);

    font-size: 13px;
}


.welcome-route-line {
    position: relative;
}


.route-line {
    height: 1px;

    background: rgba(255, 255, 255, 0.35);
}


.plane-icon {
    position: absolute;

    left: 47%;
    top: 50%;

    transform: translate(-50%, -50%) rotate(12deg);

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--text);
    color: var(--bg);
}


.welcome-flight-number {
    margin-bottom: 42px;

    color: var(--muted);

    font-size: 13px;
}


.primary-button,
.secondary-button {
    border: none;
    cursor: pointer;
}


.primary-button {
    min-width: 240px;

    padding: 18px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 999px;

    background: var(--text);
    color: var(--bg);

    font-weight: 600;
}


.primary-button span {
    font-size: 20px;
}


.welcome-footer {
    position: relative;
    z-index: 2;

    padding: 25px 48px 35px;

    display: flex;
    gap: 30px;

    color: var(--muted);

    font-size: 11px;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* =========================================================
   MAIN
========================================================= */

.main-app {
    min-height: 100vh;

    background:
        linear-gradient(
            180deg,
            #090a0d 0%,
            #0d0e12 100%
        );
}


.topbar {
    height: 88px;

    position: sticky;
    top: 0;
    z-index: 20;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    padding: 0 38px;

    border-bottom: 1px solid var(--border);

    background: rgba(8, 9, 12, 0.90);

    backdrop-filter: blur(24px);
}


.brand-button {
    width: fit-content;

    border: 0;
    background: none;

    cursor: pointer;
}


.topbar-center {
    min-width: 290px;

    display: grid;
    grid-template-columns: auto 1fr auto;

    align-items: center;

    gap: 16px;

    color: var(--muted);

    font-size: 11px;
}


.mini-route {
    height: 2px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.15);
}


.mini-route-progress {
    height: 100%;

    background: var(--gold);
}


.topbar-right {
    justify-self: end;

    display: flex;
    align-items: center;

    gap: 34px;
}


.topbar-right > div:first-child {
    display: flex;
    flex-direction: column;

    gap: 2px;
}


.topbar-label {
    color: var(--muted);

    font-size: 9px;
    letter-spacing: 0.14em;
}


.topbar-clock {
    color: var(--muted);

    font-size: 14px;
}


.page {
    display: none;

    max-width: 1500px;

    margin: auto;

    padding: 38px;
}


.active-page {
    display: block;
}


/* =========================================================
   HERO
========================================================= */

.hero-card {
    min-height: 440px;

    position: relative;

    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 50px;

    border: 1px solid var(--border);
    border-radius: 32px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(124, 41, 70, 0.50),
            transparent 35%
        ),
        linear-gradient(
            140deg,
            #171219,
            #0d0f13 65%
        );
}


.hero-overlay {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.12),
            rgba(0,0,0,0)
        );
}


.hero-content {
    position: relative;
    z-index: 2;

    max-width: 670px;
}


.hero-content h2 {
    margin: 0 0 14px;

    font-family: Georgia, serif;

    font-size: clamp(42px, 5vw, 74px);
    font-weight: 400;

    letter-spacing: -0.04em;
}


.hero-content h2 span {
    color: var(--muted);

    font-style: italic;
    font-weight: 300;
}


.hero-content p {
    max-width: 470px;

    margin-bottom: 28px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.6;
}


.secondary-button {
    padding: 14px 20px;

    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;

    background: rgba(255,255,255,.06);
    color: white;
}


.hero-flight {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: auto 1fr auto;

    align-items: center;

    gap: 28px;

    margin-top: 60px;
}


.hero-flight > div:first-child,
.hero-flight > div:last-child {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.hero-flight span {
    font-size: 27px;
    font-weight: 300;
}


.hero-flight small {
    color: var(--muted);
}


.flight-path {
    padding: 0 8px;
}


.flight-path-line {
    height: 2px;

    position: relative;

    background: rgba(255,255,255,.18);
}


.flight-path-fill {
    height: 100%;

    background: var(--gold);
}


.flight-plane {
    position: absolute;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--text);
    color: var(--bg);
}


/* =========================================================
   TILE GRID
========================================================= */

.section-heading {
    margin: 54px 4px 22px;
}


.section-heading h3 {
    margin: 0;

    font-family: Georgia, serif;

    font-size: 30px;
    font-weight: 400;
}


.tile-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}


.feature-tile {
    min-height: 260px;

    position: relative;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    text-align: left;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            #17181e,
            #101116
        );

    color: var(--text);

    cursor: pointer;

    transition:
        transform .25s ease,
        border-color .25s ease;
}


.feature-tile:hover {
    transform: translateY(-5px);

    border-color: rgba(255,255,255,.25);
}


.large-tile {
    grid-column: span 2;
}


.map-tile {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(56, 82, 83, .55),
            transparent 38%
        ),
        #111418;
}


.entertainment-tile {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(124, 41, 70, .45),
            transparent 42%
        ),
        #151116;
}


.music-tile {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(106, 77, 43, .50),
            transparent 42%
        ),
        #171411;
}


.discover-tile {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(83, 65, 49, .50),
            transparent 42%
        ),
        #151310;
}


.tile-number {
    color: rgba(255,255,255,.35);

    font-size: 10px;
}


.tile-content {
    max-width: 350px;
}


.tile-label {
    display: block;

    margin-bottom: 7px;

    color: var(--gold);

    font-size: 9px;
    letter-spacing: .15em;
}


.tile-content h4 {
    margin: 0 0 9px;

    font-family: Georgia, serif;

    font-size: 28px;
    font-weight: 400;
}


.tile-content p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.5;
}


.tile-arrow {
    position: absolute;

    right: 25px;
    top: 25px;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    color: var(--muted);
}


/* =========================================================
   SUB PAGES
========================================================= */

.page-header {
    display: flex;
    align-items: center;

    gap: 22px;

    margin-bottom: 38px;
}


.page-header h2 {
    margin: 0;

    font-family: Georgia, serif;

    font-size: 43px;
    font-weight: 400;
}


.back-button {
    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: rgba(255,255,255,.03);
    color: var(--text);

    cursor: pointer;

    font-size: 19px;
}


.map-layout {
    min-height: 600px;

    display: grid;

    grid-template-columns: 1fr 330px;

    gap: 18px;
}


.map-visual {
    min-height: 600px;

    position: relative;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background:
        radial-gradient(
            circle at center,
            rgba(74, 105, 108, .18),
            transparent 46%
        ),
        #0c1013;
}


.map-grid {
    position: absolute;
    inset: 0;

    opacity: .18;

    background-image:
        linear-gradient(
            rgba(255,255,255,.09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.09) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}


.map-route-line {
    position: absolute;

    left: 18%;
    right: 18%;
    top: 50%;

    height: 2px;

    background: rgba(255,255,255,.18);
}


.map-route-progress {
    height: 100%;

    background: var(--gold);
}


.map-plane {
    position: absolute;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--text);
    color: var(--bg);
}


.map-city {
    position: absolute;

    top: calc(50% - 78px);

    display: flex;
    flex-direction: column;

    gap: 3px;
}


.origin-map-city {
    left: 9%;
}


.destination-map-city {
    right: 9%;

    text-align: right;
}


.map-city strong {
    font-size: 31px;
    font-weight: 300;
}


.map-city span {
    color: var(--muted);

    font-size: 12px;
}


.journey-panel {
    padding: 30px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--panel);
}


.journey-panel h3 {
    margin: 0 0 38px;

    font-family: Georgia, serif;

    font-size: 38px;
    font-weight: 400;
}


.journey-stat {
    padding: 21px 0;

    display: flex;
    flex-direction: column;

    gap: 8px;

    border-top: 1px solid var(--border);
}


.journey-stat span,
.stat-card span {
    color: var(--muted);

    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: .08em;
}


.journey-stat strong {
    font-size: 22px;
    font-weight: 400;
}


.category-row,
.music-grid,
.discover-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}


.category-card,
.music-card,
.discover-card {
    min-height: 220px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--panel);

    color: var(--text);

    text-align: left;
}


.category-card span,
.music-card span,
.discover-card span {
    margin-bottom: auto;

    color: rgba(255,255,255,.35);

    font-size: 10px;
}


.category-card strong,
.music-card strong,
.discover-card strong {
    margin-bottom: 6px;

    font-family: Georgia, serif;

    font-size: 25px;
    font-weight: 400;
}


.category-card small,
.music-card small,
.discover-card p {
    color: var(--muted);
}


.info-placeholder {
    margin-top: 18px;

    min-height: 240px;

    padding: 40px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(124, 41, 70, .32),
            transparent 35%
        ),
        var(--panel);
}


.info-placeholder h3 {
    margin: 0 0 8px;

    font-family: Georgia, serif;

    font-size: 34px;
    font-weight: 400;
}


.info-placeholder p {
    color: var(--muted);
}


.music-feature {
    min-height: 310px;

    margin-bottom: 18px;

    padding: 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(160, 113, 59, .36),
            transparent 34%
        ),
        #15120f;
}


.music-feature h3 {
    margin: 0 0 12px;

    font-family: Georgia, serif;

    font-size: 44px;
    font-weight: 400;
}


.music-feature p {
    max-width: 500px;

    color: var(--muted);

    line-height: 1.6;
}


.music-disc {
    width: 180px;
    height: 180px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        repeating-radial-gradient(
            circle,
            #202020 0 4px,
            #131313 5px 8px
        );

    font-size: 48px;
}


.flight-info-route {
    min-height: 280px;

    padding: 45px;

    display: grid;

    grid-template-columns: 1fr 1.8fr 1fr;

    align-items: center;

    gap: 40px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background:
        radial-gradient(
            circle at center,
            rgba(124, 41, 70, .24),
            transparent 42%
        ),
        var(--panel);
}


.flight-info-route > div {
    display: flex;
    flex-direction: column;

    gap: 6px;
}


.big-airport {
    font-size: 53px;
    font-weight: 300;
}


.flight-info-route strong {
    font-size: 17px;
    font-weight: 500;
}


.flight-info-route small {
    color: var(--muted);
}


.flight-info-middle {
    text-align: center;
}


.flight-info-line {
    height: 2px;

    margin: 12px 0;

    background: rgba(255,255,255,.16);
}


.flight-info-line div {
    height: 100%;

    background: var(--gold);
}


.stats-grid {
    margin-top: 18px;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}


.stat-card {
    min-height: 150px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--panel);
}


.stat-card strong {
    font-family: Georgia, serif;

    font-size: 26px;
    font-weight: 400;
}


.destination-hero {
    min-height: 420px;

    position: relative;

    padding: 45px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(164, 100, 68, .45),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #302018,
            #111014 70%
        );
}


.destination-hero > div:last-child {
    position: relative;
    z-index: 2;

    max-width: 600px;
}


.destination-hero h3 {
    margin: 0;

    font-family: Georgia, serif;

    font-size: 67px;
    font-weight: 400;
}


.destination-hero p {
    color: #d0c7bf;

    line-height: 1.6;
}


.discover-grid {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    margin-top: 18px;
}


.discover-card p {
    margin: 0;

    line-height: 1.5;
}


.align-right {
    text-align: right;
}


/* =========================================================
   TABLET RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

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

    .large-tile {
        grid-column: span 2;
    }

    .map-layout {
        grid-template-columns: 1fr;
    }

    .journey-panel {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 0 30px;
    }

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

}


@media (max-width: 760px) {

    .welcome-top,
    .welcome-footer {
        padding-left: 22px;
        padding-right: 22px;
    }

    .welcome-content {
        width: calc(100% - 44px);
    }

    .welcome-content h1 {
        font-size: 55px;
    }

    .welcome-route {
        gap: 12px;
    }

    .airport-code {
        font-size: 27px;
    }

    .topbar {
        height: 76px;

        grid-template-columns: 1fr auto;

        padding: 0 18px;
    }

    .topbar-center {
        display: none;
    }

    .topbar-right > div:first-child {
        display: none;
    }

    .page {
        padding: 22px 16px;
    }

    .hero-card {
        padding: 30px 24px;

        min-height: 500px;
    }

    .hero-content h2 {
        font-size: 46px;
    }

    .tile-grid,
    .category-row,
    .music-grid,
    .discover-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .large-tile {
        grid-column: auto;
    }

    .feature-tile {
        min-height: 220px;
    }

    .flight-info-route {
        grid-template-columns: 1fr;

        text-align: left;
    }

    .flight-info-middle,
    .align-right {
        text-align: left;
    }

    .music-disc {
        width: 110px;
        height: 110px;
    }

    .music-feature {
        padding: 28px;
    }

}


/* =========================================================
   REAL FLIGHT MAP - VERSION 3
========================================================= */

.real-map-layout {
    min-height: 620px;
}


.real-map-card {
    position: relative;

    min-height: 620px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        #090d10;

    isolation: isolate;
}


.flight-map {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    min-height: 620px;

    background:
        #0a0e11;
}


.flight-map::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 500;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(5,7,9,.42) 0%,
            transparent 25%,
            transparent 68%,
            rgba(5,7,9,.48) 100%
        );
}


/* Leaflet */

.flight-map .leaflet-tile-pane {
    filter:
        grayscale(1)
        brightness(.56)
        contrast(1.20)
        sepia(.10);
}


.flight-map .leaflet-control-attribution {
    padding:
        3px 7px;

    border-radius:
        8px 0 0 0;

    background:
        rgba(5,7,9,.70);

    color:
        rgba(255,255,255,.48);

    font-size:
        8px;
}


.flight-map .leaflet-control-attribution a {
    color:
        rgba(255,255,255,.68);
}


.flight-map .leaflet-control-zoom {
    margin:
        118px 0 0 18px;

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius:
        12px;

    box-shadow: none;
}


.flight-map .leaflet-control-zoom a {
    width: 36px;
    height: 36px;

    line-height: 36px;

    border-color:
        rgba(255,255,255,.10);

    background:
        rgba(10,12,15,.82);

    color:
        var(--text);

    backdrop-filter:
        blur(15px);
}


.flight-map .leaflet-control-zoom a:hover {
    background:
        rgba(30,31,36,.92);

    color:
        var(--gold);
}


/* Map overlays */

.map-overlay {
    position: absolute;

    z-index: 700;

    pointer-events: none;
}


.map-overlay-top {
    top: 20px;
    left: 20px;
    right: 20px;
}


.map-route-summary {
    width:
        min(
            520px,
            calc(100% - 70px)
        );

    padding:
        17px 20px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 18px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius:
        18px;

    background:
        rgba(8,10,13,.76);

    box-shadow:
        0 18px 45px rgba(0,0,0,.24);

    backdrop-filter:
        blur(18px);
}


.map-route-summary > div:first-child,
.map-overlay-destination {
    display: flex;
    flex-direction: column;
}


.map-overlay-destination {
    text-align: right;
}


.map-overlay-label {
    margin-bottom: 2px;

    color:
        rgba(255,255,255,.48);

    font-size:
        8px;

    letter-spacing:
        .14em;
}


.map-route-summary strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;
    font-weight: 400;
}


.map-route-summary small {
    color:
        rgba(255,255,255,.58);

    font-size: 10px;
}


.map-overlay-route {
    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 8px;
}


.map-overlay-route > span {
    height: 1px;

    background:
        rgba(255,255,255,.22);
}


.map-overlay-plane {
    color:
        var(--gold);

    font-size:
        15px;
}


.map-overlay-bottom {
    right: 20px;
    bottom: 24px;
    left: 20px;

    padding:
        15px 18px;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius:
        16px;

    background:
        rgba(8,10,13,.74);

    backdrop-filter:
        blur(18px);
}


.map-progress-copy {
    margin-bottom: 9px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.map-progress-copy span {
    color:
        rgba(255,255,255,.50);

    font-size:
        8px;

    letter-spacing:
        .13em;
}


.map-progress-copy strong {
    color:
        var(--gold);

    font-size:
        12px;
    font-weight: 500;
}


.map-progress-track {
    height: 3px;

    overflow: hidden;

    border-radius:
        999px;

    background:
        rgba(255,255,255,.16);
}


.map-progress-fill {
    height: 100%;

    border-radius:
        inherit;

    background:
        var(--gold);
}


/* Airport markers */

.ife-airport-marker {
    background: transparent;
    border: 0;
}


.ife-airport-marker-inner {
    position: relative;

    width: 18px;
    height: 18px;

    border:
        3px solid #f2ede5;

    border-radius:
        50%;

    background:
        #7d2947;

    box-shadow:
        0 0 0 6px rgba(125,41,71,.20),
        0 4px 14px rgba(0,0,0,.45);
}


.ife-airport-label {
    position: absolute;

    top: 23px;
    left: 50%;

    padding:
        5px 8px;

    transform:
        translateX(-50%);

    white-space:
        nowrap;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius:
        8px;

    background:
        rgba(8,10,13,.84);

    color:
        #f4f0ea;

    font-size:
        10px;
    font-weight: 650;

    letter-spacing:
        .08em;

    box-shadow:
        0 6px 18px rgba(0,0,0,.22);
}


/* Aircraft */

.ife-plane-marker {
    background:
        transparent;

    border: 0;
}


.ife-plane-marker-inner {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255,255,255,.24);

    border-radius:
        50%;

    background:
        #f4f0ea;

    color:
        #090a0d;

    box-shadow:
        0 10px 30px rgba(0,0,0,.42),
        0 0 0 8px rgba(244,240,234,.08);
}


.ife-plane-glyph {
    display: block;

    font-size: 20px;

    line-height: 1;

    transform-origin: center;
}


/* Journey side panel route */

.journey-route-mini {
    margin:
        -18px 0 25px;

    padding:
        16px 0 20px;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 12px;

    border-bottom:
        1px solid var(--border);
}


.journey-route-mini > div:not(.journey-route-arrow) {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.journey-route-mini strong {
    font-size: 20px;
    font-weight: 400;
}


.journey-route-mini span {
    color:
        var(--muted);

    font-size: 10px;
}


.journey-route-arrow {
    color:
        var(--gold);

    font-size: 16px;
}


/* Leaflet popup */

.flight-map .leaflet-popup-content-wrapper,
.flight-map .leaflet-popup-tip {
    background:
        #111318;

    color:
        #f4f0ea;
}


.flight-map .leaflet-popup-content-wrapper {
    border:
        1px solid rgba(255,255,255,.10);

    border-radius:
        14px;
}


.flight-map .leaflet-popup-content {
    margin:
        13px 15px;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size:
        11px;
}


/* Tablet */

@media (max-width: 1050px) {

    .real-map-card,
    .flight-map {
        min-height:
            560px;
    }

}


/* Mobile */

@media (max-width: 760px) {

    .real-map-card,
    .flight-map {
        min-height:
            500px;
    }

    .map-overlay-top {
        top: 12px;
        left: 12px;
        right: 12px;
    }

    .map-route-summary {
        width: 100%;

        padding:
            13px 14px;

        gap: 10px;
    }

    .map-route-summary strong {
        font-size:
            19px;
    }

    .map-route-summary small {
        display: none;
    }

    .map-overlay-bottom {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .flight-map .leaflet-control-zoom {
        margin:
            100px 0 0 12px;
    }

}
