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

body {
    min-height: 100vh;
}

.app {
    min-height: 100vh;
    background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.523);
}

.content {
    position: relative;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
}

.card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.card h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.card p {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    font-weight: 300;
    margin-bottom: 2rem;
    color: #eaeaea;
}

.location-btn {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.4);
}

.pDetails {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 480px) {
    .card {
        padding: 2rem 1.5rem;
    }
}