body {
    font-family: Arial, sans-serif;
    background: #ffe4ec;
    color: #333;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #ff69b4;
    text-align: center;
}

h3 {
    color: #000000;
    text-align: center;
    font-size: 15px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

.message {
    background-color: #fff;
    border: 1px solid #ff69b4;
    border-radius: 5px;
    padding: 15px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

button {
    background-color: #ff69b4;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
}

#newMessageBtn {
    margin-bottom: 150px;
    display: block;
}

#scrollToSongBtn {
    display: block;
    margin-top: 25px;
    margin-bottom: 25px;
}

#scrollToWallBtn {
    display: block;
    margin: 0 auto 0 auto;
}

#together-counter {
    text-align: center;
    font-size: 10px;
    color: #ff69b4;
    margin-bottom: 150px;
    letter-spacing: 0.5px;
}

button:hover {
    background-color: #ff1493;
}

button:active {
    transform: scale(0.95);
    box-shadow: 0 1px 4px rgba(255, 105, 180, 0.3);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.photowall-section {
    margin-top: 400px;
    text-align: center;
}

.photowall {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
}

.photowall img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.15);
    border: 2px solid #fff;
    background: #fff;
    transition: transform 0.2s;
}

.photowall figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 8px 16px 8px;
}

.photowall figcaption {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    text-align: center;
    max-width: 120px;
    word-break: break-word;
}

.song-section {
    text-align: center;
    margin-top: 400px;
}

.map-section {
    margin: 48px auto 0 auto;
    text-align: center;
    max-width: 700px;
    margin-top: 400px;
}

.map-section h1 {
    font-size: 1.4em;
    color: #ff69b4;
    margin-bottom: 18px;
}

.map-embed {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}