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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #06050e;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Atmosphere */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px 15px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header with Glassmorphism */
.header {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 16px;
    position: sticky;
    top: 10px;
    z-index: 100;
}

.back-btn {
    text-decoration: none;
    color: #00e5ff;
    font-size: 18px;
    margin-right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 229, 255, 0.15);
}

.back-btn:hover {
    background: #00e5ff;
    color: #000;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.header-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

/* Content */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    animation: fadeInUp 0.8s ease forwards;
}

.map-icon-container {
    width: 70px;
    height: 70px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #00e5ff;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
    animation: pulseIcon 2s infinite ease-in-out;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
    }
}

.location-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.location-text {
    font-size: 12px;
    color: #b0bec5;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
    padding: 0 10px;
}

/* Map Wrapper */
.map-responsive {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 25px;
}

.map-responsive iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg); /* Dark Mode Map Effect */
}

/* Action Button */
.action-btn {
    width: 100%;
    padding: 16px;
    background: #00e5ff;
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.25);
    margin-bottom: 30px;
}

.action-btn:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.25);
}

.action-btn i {
    font-size: 16px;
}

/* Developer Credits */
.developer-credits {
    text-align: center;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    margin-top: auto;
    letter-spacing: 1px;
}

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