:root {
    --primary: #4F46E5;
    --primary-light: #7C3AED;
    --accent: #06B6D4;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(30, 41, 59, 0.7);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-main);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    width: 100%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-buttons.center {
    justify-content: center;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-text small {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
}

.btn-text span {
    font-size: 1rem;
}

.hero-qr {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    width: fit-content;
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-qr img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
}

.hero-qr span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.cta-qr {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-qr img {
    width: 120px;
    height: 120px;
    background: white;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-qr p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Mockup */
.hero-image {
    position: relative;
}

.mockup-container {
    position: relative;
    z-index: 2;
}

.app-mockup {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
    border-radius: 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 4px solid #1e293b;
}

.bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

/* Shapes */
.hero-shapes .shape {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    opacity: 0.1;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: 50px;
    left: -50px;
    opacity: 0.1;
}

/* Features grid */
.features {
    padding: 8rem 0;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.3);
    background: linear-gradient(135deg, var(--bg-card), rgba(79, 70, 229, 0.05));
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Animation triggers */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

/* Live Demo Section */
.live-demo {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #171e2e 100%);
}

.demo-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.map-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background: #0f172a;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

/* Map UI Overlay Styles */
.map-ui-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
    padding: 1.5rem;
}

.map-search-bar {
    pointer-events: auto;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.map-search-bar input {
    background: none;
    border: none;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    width: 100%;
}

.map-controls {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: auto;
}

.map-control-btn {
    width: 40px;
    height: 40px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.map-control-btn:hover {
    background: var(--primary);
}

.map-control-btn.active {
    color: var(--accent);
}

.map-status-toast {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 0.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    pointer-events: auto;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    animation: pulseSmall 1.5s infinite;
}

@keyframes pulseSmall {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

.map-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.map-roads {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.poi {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.2rem;
    z-index: 3;
}

.poi-1 {
    top: 15%;
    left: 15%;
}

.poi-2 {
    top: 40%;
    right: 15%;
}

.map-label {
    position: absolute;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.15);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 3;
    pointer-events: none;
    font-family: 'Outfit', sans-serif;
}

.label-1 {
    top: 35%;
    left: 45%;
    transform: rotate(-15deg);
}

.label-2 {
    bottom: 35%;
    right: 25%;
    transform: rotate(10deg);
}

.user-marker {
    position: absolute;
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 3px solid #1e293b;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.5);
    z-index: 10;
    transition: transform 0.3s ease;
}

.marker-status {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.9);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.6rem;
    color: white;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: var(--transition);
}

.user-marker:hover .marker-status {
    opacity: 1;
    top: -30px;
}

.pulsing .marker-status {
    opacity: 1;
}

/* Topographic Blocks */
.map-blocks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.map-block {
    position: absolute;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.block-1 {
    width: 60px;
    height: 100px;
    top: 10%;
    left: 10%;
    transform: rotate(5deg);
}

.block-2 {
    width: 80px;
    height: 40px;
    top: 15%;
    right: 25%;
    transform: rotate(-10deg);
}

.block-3 {
    width: 120px;
    height: 60px;
    bottom: 15%;
    left: 20%;
    transform: rotate(15deg);
}

.block-4 {
    width: 50px;
    height: 50px;
    bottom: 25%;
    right: 15%;
}

.pulsing::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.5;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.marker-1 {
    top: 20%;
    right: 20%;
    background: var(--primary);
}

.marker-2 {
    top: 60%;
    left: 30%;
    background: var(--accent);
}

.marker-3 {
    bottom: 20%;
    right: 40%;
    background: #9333ea;
}

.trail-line path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

.reveal.active .trail-line path {
    animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.demo-text ul {
    list-style: none;
    margin-top: 2rem;
}

.demo-text ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.demo-text ul i {
    color: var(--accent);
    font-size: 1.5rem;
}

/* CTA Section */
.cta {
    padding: 10rem 0;
}

.cta-container {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 6rem 4rem;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-container h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* How it Works Section */
.how-it-works {
    padding: 8rem 0;
    background: #0f172a;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step-card {
    position: relative;
    background: rgba(30, 41, 59, 0.4);
    padding: 3rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(79, 70, 229, 0.3);
}

.step-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #070b14 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1.2;
}

.stat-item span {
    color: var(--text-muted);
    font-weight: 500;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-card {
    background: var(--bg-card);
    padding: 4rem 3rem;
    border-radius: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, transparent 100%);
}

.about-card i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.about-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Footer Adjustments */
.footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* App Showcase Section */
.app-showcase {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1e293b 100%);
    overflow: hidden;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.showcase-item {
    perspective: 1000px;
}

.showcase-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 1.5rem;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.showcase-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(79, 70, 229, 0.2);
}

.showcase-card img {
    width: 100%;
    max-width: 240px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.showcase-card:hover img {
    transform: scale(1.02);
}

.showcase-info {
    text-align: center;
}

.showcase-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.showcase-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.4;
}

@media screen and (max-width: 1024px) {
    .container {
        padding: 0 1.5rem !important;
    }

    .hero-content,
    .about-content,
    .demo-content,
    .footer-content,
    .features-grid,
    .steps-grid,
    .showcase-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center !important;
        width: 100% !important;
    }

    .hero-actions,
    .download-buttons,
    .hero-qr,
    .cta-actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 1.5rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-text h1,
    .section-header h2,
    .about-text h2,
    .cta-container h2 {
        font-size: clamp(2rem, 8vw, 3.5rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-text p,
    .section-header p,
    .about-text p,
    .cta-container p {
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
    }

    .about-visual,
    .hero-image,
    .demo-image {
        order: -1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .bg-glow,
    .hero-shapes,
    .shape {
        display: none !important;
    }

    .nav-links {
        display: none !important;
        /* Hide defaults, JS will toggle active class */
    }

    .nav-links.active {
        display: flex !important;
    }

    .about-stats {
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: center !important;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-actions,
    .download-buttons,
    header .hero-actions,
    header .download-buttons,
    div.hero-actions,
    div.download-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 1.5rem !important;
        justify-content: center !important;
    }

    .hero-qr,
    header .hero-qr {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin: 2rem auto 0 !important;
        width: fit-content !important;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .cta-container h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem) !important;
    }

    .features {
        padding: 4rem 0;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    /* Map UI Extra Small Adjustments */
    .map-search-bar {
        width: 140px;
        padding: 0.4rem 0.6rem;
    }

    .map-search-bar input {
        font-size: 0.75rem;
    }

    .map-controls {
        right: 1rem;
    }

    .map-control-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .map-status-toast {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
        max-width: 85%;
        bottom: 1rem;
    }
}