:root {
    --toss-blue: #0070FF;
    --background: #F4F5F7;
    --card-background: #FFFFFF;
    --text-primary: #333D4B;
    --text-secondary: #8B95A1;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    overflow: hidden;
}

header {
    background-color: var(--card-background);
    box-shadow: var(--shadow);
    border-radius: 18px;
    margin: 16px;
    padding: 16px 24px;
    text-align: center;
}

h1 {
    margin: 0;
    font-size: 1.6em;
    font-weight: 700;
    color: var(--text-primary);
}

main {
    height: calc(100% - 100px);
    padding: 0 16px 16px 16px;
    box-sizing: border-box;
}

#map {
    width: 100%;
    height: 100%;
    background-color: #E5E8EB;
    border-radius: 18px;
}

/* --- Popup Styles --- */
.leaflet-popup-content-wrapper {
    background-color: var(--card-background);
    color: var(--text-primary);
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.leaflet-popup-tip {
    background-color: var(--card-background);
}

.leaflet-popup-content {
    font-size: 14px;
    font-weight: 600;
    margin: 14px 20px;
    line-height: 1.5;
}

.leaflet-container a.leaflet-popup-close-button {
    color: var(--text-secondary);
    padding: 10px 10px 0 0;
}
.leaflet-container a.leaflet-popup-close-button:hover {
    color: var(--text-primary);
}


/* --- Star Styles & Animation --- */


.star-marker {


    display: flex;


    justify-content: center;


    align-items: center;


}





.star-marker span {





    color: #FFD700; /* Sparkling Yellow */





    font-size: 26px;





    text-shadow: 0 0 4px #FFD700, 0 0 8px #FFD700; /* Shadow softened */





    animation: sparkle 2s infinite ease-in-out;





}





@keyframes sparkle {


    0%, 100% {


        transform: scale(1);


        opacity: 0.8;


    }


    50% {


        transform: scale(1.25);


        opacity: 1;


    }


}

