@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

html,
body {
    background-color: #121212;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    position: relative;
    background-color: transparent;
    font-family: "Montserrat", sans-serif;
    color: #f5f5f5;
    overflow-x: hidden;
    z-index: 0;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: transparent;
    pointer-events: none;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 10;
    position: relative;
    /* Needs position for z-index to work */
}

@keyframes glow {
    0% {
        filter: invert(1) drop-shadow(0 0 10px rgba(255, 0, 0, 0.2));
        filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.2));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 35px rgba(255, 0, 0, 0.9));
        transform: scale(1.05);
    }

    100% {
        filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.2));
        transform: scale(1);
    }
}

.glowing-logo {
    width: 250px;
    max-width: 80%;
    margin-bottom: 2rem;
    animation: glow 3s infinite ease-in-out;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

p.subtitle {
    font-size: 1.2rem;
    color: #aaaaaa;
    margin-top: 0;
    margin-bottom: 2rem;
}

footer {
    padding: 20px;
    text-align: center;
    z-index: 10;
    position: relative;
    /* Needs position for z-index to work */
}

footer a {
    color: #aaaaaa;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    transition: color 0.3s;
}

footer a:hover {
    color: #ff0000;
}

/* Base styles for Impressum / Datenschutz */
.imp-content {
    background: rgba(30, 30, 30, 0.7);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    max-height: 56vh;
    overflow-y: auto;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transform: translateZ(0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Custom Scrollbar for the Glass Window */
.imp-content::-webkit-scrollbar {
    width: 8px;
}

.imp-content::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 8px;
}

.imp-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.imp-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.imp-h2 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #f5f5f5;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.imp-content p.Impressum {
    line-height: 1.6;
    font-size: 1.2rem;
    color: #cccccc;
    margin: 0;
    text-align: center;
}

.imp-content p {
    line-height: 1.6;
    font-size: 1.2rem;
    color: #cccccc;
    text-align: left;
    margin-bottom: 1.5rem;
}

.imp-content ul {
    text-align: left;
    padding-left: 0;
}

.imp-content li {
    line-height: 1.6;
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 1rem;
}

.imp-content h4 {
    font-size: 1.5rem;
    color: #f5f5f5;
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.ft-img {
    width: 80%;
    height: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .imp-content {
        padding: 1.5rem 1rem;
        width: 92%;
    }

    .imp-h2 {
        font-size: 1.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .imp-content p.Impressum,
    .imp-content p {
        font-size: 1rem;
    }

    .imp-content li {
        font-size: 1.05rem;
    }

    .imp-content h4 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0 40px 0;
    }

    footer a {
        margin: 0;
    }
}

/* Landing Page Styles */
.landing-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    z-index: 10;
    position: relative;
    box-sizing: border-box;
}

.company-name {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 400;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    animation: companyEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

a:hover .company-name {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.hero-heading {
    width: 100%;
    max-width: 950px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.hero-heading img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.1s;
}

.quick-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    background: rgba(20, 20, 20, 0.6);
    padding: 20px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.2s;
}

a:has(.info-item) {
    display: inline-block;
}

.info-item {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #e0e0e0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

a .info-item {
    cursor: pointer;
}

a .info-item:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.info-item span {
    margin-right: 10px;
    font-size: 1.5rem;
}

.info-item.highlight {
    color: #ff3b3b;
    text-shadow: 0 0 10px rgba(255, 59, 59, 0.3);
}

.info-item.highlight-green {
    color: #32d74b;
    text-shadow: 0 0 10px rgba(50, 215, 75, 0.3);
}

.hero-flyer {
    width: 100%;
    max-width: 1400px;
    margin-top: 40px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.3s;
}

.hero-flyer img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.hero-flyer:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(255, 59, 59, 0.2);
}

.detailed-info.glass-panel {
    background: rgba(30, 30, 30, 0.7);
    padding: 3rem 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    width: 100%;
    box-sizing: border-box;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

.detailed-info p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.event-day {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.event-day h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-day p strong {
    color: #f5f5f5;
    font-weight: 700;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .landing-container {
        padding: 20px 15px;
    }

    .hero-heading {
        width: calc(100% + 100px);
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: 25px;
    }

    .quick-info {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 20px;
        text-align: center;
    }

    .info-item {
        justify-content: center;
        font-size: 1.1rem;
    }

    .hero-flyer {
        padding: 8px;
        margin-left: -5px;
        margin-right: -5px;
        width: calc(97%);
        margin-top: 25px;
        margin-bottom: 40px;
    }

    .detailed-info.glass-panel {
        padding: 2rem 1.5rem;
    }

    .event-day h3 {
        font-size: 1.3rem;
    }

    .detailed-info p {
        font-size: 1rem;
    }

    .social-box {
        padding: 2rem 1rem;
    }

    .social-box h3 {
        font-size: 1.5rem;
    }

    .faq-section {
        padding: 2rem 1.5rem;
    }

    .faq-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .faq-question {
        font-size: 1.05rem;
        padding: 1.2rem 0;
    }

    .faq-answer p {
        font-size: 0.95rem;
        padding-bottom: 1.2rem;
    }

}

.insta-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    background: rgba(30, 30, 30, 0.7);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.insta-row blockquote {
    flex: 1 1 0 !important;
    min-width: 250px !important;
    max-width: 320px !important;
    margin: 0 !important;
    transform: scale(0.95);
}

@media (max-width: 900px) {
    .insta-row {
        flex-wrap: wrap;
        /*padding: 1rem 0.8rem;*/
        width: 90%;
        max-width: 420px;
        gap: 35px;
    }

    .insta-row blockquote,
    .insta-row iframe,
    .insta-row .instagram-media,
    .insta-row .instagram-media-rendered {
        transform: scale(1) !important;
        /* HIER DIE GRÖSSE DER BEITRÄGE ANPASSEN: 1.0 = 100%, 0.9 = 90% etc. */
        min-width: 250px !important;
        max-width: 320px !important;
        margin: 0px auto !important;
        /* GLEICHT DEN LEERRAUM AUS: Je kleiner die Beiträge (scale), desto negativer muss dieser Wert sein */
    }
}

/* FAQ Section */
.faq-section {
    background: rgba(30, 30, 30, 0.7);
    padding: 3rem 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    width: 100%;
    box-sizing: border-box;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    margin: 40px auto 0 auto;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 0, 0, 0.6);
    padding-bottom: 10px;
    display: inline-block;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    padding: 1.5rem 0;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #ff3b3b;
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    color: #ff3b3b;
    user-select: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin: 0;
    padding-bottom: 1.5rem;
}

/* Accordion Open State animations */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #ffffff;
}

footer {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
    width: 100%;
    box-sizing: border-box;
}

footer a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

footer a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Scroll reveal utilities */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Extra utility transitions */
.animate-fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes companyEntrance {
    from {
        opacity: 0;
        letter-spacing: 0px;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        letter-spacing: 3px;
        transform: translateY(0);
    }
}

/* ==========================================================================
   INTERACTIVE SITE PLAN (LAGEPLAN) STYLES
   ========================================================================== */

.map-card {
    background: rgba(30, 30, 30, 0.7);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 1300px;
    box-sizing: border-box;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 20px auto 0 auto;
    text-align: center;
}

.map-viewport {
    position: relative;
    width: 100%;
    height: 600px;
    max-height: 65vh;
    overflow: hidden;
    background-color: #0b0b0b;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: grab;
    user-select: none;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.9);
}

.map-viewport:active {
    cursor: grabbing;
}

.map-content {
    position: absolute;
    width: 1024px;
    height: 1024px;
    transform-origin: 0 0;
    will-change: transform;
}

.map-image {
    width: 1024px;
    height: 1024px;
    display: block;
    pointer-events: none;
}

/* Interactive Markers */
.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.25s ease;
}

.map-marker:hover {
    transform: translate(-50%, -50%) scale(1.25);
    filter: drop-shadow(0 0 10px var(--marker-color, #ff3b3b));
}

.marker-icon {
    width: 38px;
    height: 38px;
    background-color: rgba(18, 18, 18, 0.9);
    border: 2px solid var(--marker-color, #ff3b3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    color: #ffffff;
    backdrop-filter: blur(4px);
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.map-marker:hover .marker-icon {
    background-color: var(--marker-color, #ff3b3b);
}

/* Pulsing radar for markers */
.marker-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--marker-color, #ff3b3b);
    animation: marker-pulse-glow 2.5s infinite ease-out;
    pointer-events: none;
    opacity: 0;
}

@keyframes marker-pulse-glow {
    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }

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

/* GPS User Location Dot */
.user-dot-container {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 20;
    pointer-events: none;
    transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1), top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.user-dot {
    width: 16px;
    height: 16px;
    background-color: #007aff;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 122, 255, 0.9), 0 4px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
}

.user-radar {
    position: absolute;
    width: 46px;
    height: 46px;
    background: rgba(0, 122, 255, 0.2);
    border: 2px solid rgba(0, 122, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    animation: user-radar-pulse 2.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 2;
}

@keyframes user-radar-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.6);
        opacity: 0;
    }
}

.user-accuracy-circle {
    position: absolute;
    border: 2px dashed rgba(0, 122, 255, 0.3);
    background-color: rgba(0, 122, 255, 0.04);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    transition: width 0.5s ease, height 0.5s ease;
}

/* Category Filter Chips */
.map-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-chip {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #b0b0b0;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-chip:hover {
    background: rgba(255, 59, 59, 0.15);
    border-color: rgba(255, 59, 59, 0.4);
    color: #ffffff;
    transform: translateY(-1px);
}

.filter-chip.active {
    background: #ff3b3b;
    border-color: #ff3b3b;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 59, 59, 0.4);
}

/* Controls overlaying the viewport */
.map-controls {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 30;
}

.map-btn {
    width: 46px;
    height: 46px;
    background: rgba(18, 18, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.map-btn:hover {
    background: #ff3b3b;
    border-color: #ff3b3b;
    transform: scale(1.1);
}

.map-btn.active {
    background: #007aff;
    border-color: #007aff;
    box-shadow: 0 0 15px rgba(0, 122, 255, 0.5);
}

.map-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Info Panel Overlay */
.info-panel {
    position: absolute;
    bottom: 25px;
    left: 25px;
    width: calc(100% - 100px);
    max-width: 340px;
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 25;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(15px);
    opacity: 0;
    pointer-events: none;
    text-align: left;
}

.info-panel.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.info-panel h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: #ffffff;
    border-bottom: 2px solid var(--accent-color, #ff3b3b);
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-panel p {
    margin: 0 0 12px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
}

.info-panel-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.08);
    color: #aaaaaa;
}

.info-panel-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #888888;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.info-panel-close:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* GPS Status Indicator */
.gps-status {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 0.85rem;
    color: #b0b0b0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    backdrop-filter: blur(8px);
}

.gps-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #888888;
    position: relative;
}

.gps-status-dot.searching {
    background-color: #ffcc00;
}

.gps-status-dot.searching::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffcc00;
    animation: gps-flash 1.2s infinite ease-out;
}

.gps-status-dot.active {
    background-color: #32d74b;
}

.gps-status-dot.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #32d74b;
    animation: gps-flash 2.5s infinite ease-out;
}

.gps-status-dot.warning {
    background-color: #ff3b3b;
}

@keyframes gps-flash {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

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

.demo-badge {
    background: rgba(255, 159, 10, 0.15);
    border: 1px solid rgba(255, 159, 10, 0.4);
    color: #ff9f0a;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    animation: pulse-orange 2s infinite alternate;
}

@keyframes pulse-orange {
    from {
        box-shadow: 0 0 2px rgba(255, 159, 10, 0.1);
    }

    to {
        box-shadow: 0 0 10px rgba(255, 159, 10, 0.3);
    }
}

/* Mobile responsive fixes for map */
@media (max-width: 768px) {
    .map-card {
        padding: 1.5rem 1rem;
        margin-top: 10px;
    }

    .map-viewport {
        height: 480px;
    }

    .info-panel {
        bottom: 15px;
        left: 15px;
        width: calc(100% - 30px);
        max-width: none;
        padding: 15px;
    }

    .map-controls {
        bottom: auto;
        top: 15px;
        right: 15px;
    }

    .filter-chip {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}