body {
    background-color: #fdf6e3;
    /* parchment */
    font-family: 'Pirata One', cursive;
    color: #5b4636;
    /* brownish text */
    text-align: center;
    padding: 20px 20px 50px 20px;
    /* less top padding for top bar */
    margin: 0;
}

h1 {
    font-size: 3em;
    margin-bottom: 40px;
}

.bottle-container {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
}

#bottle {
    width: 100%;
    transition: transform 4s ease-out;
    transform-origin: 50% 50%;
}

#spinBtn {
    margin-top: 30px;
    padding: 12px 25px;
    font-size: 1.2em;
    background-color: #8b4513;
    color: #fff;
    border: 2px solid #5b4636;
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
}

#spinBtn:hover {
    background-color: #a0522d;
}

#result,
#dare {
    margin-top: 30px;
    font-size: 1.5em;
    min-height: 2em;
}

#top-bar {
    background-color: #a0522d;
    /* Sienna brown, fits pirate parchment vibe */
    padding: 8px 20px;
    text-align: left;
    font-family: 'Pirata One', cursive;
    font-size: 16px;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: fixed;
    /* so it stays visible on scroll */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

#top-bar .return-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

#top-bar .return-link:hover {
    text-decoration: underline;
    color: #f0e68c;
    /* light khaki, subtle highlight */
    cursor: pointer;
}

#top-bar .return-link::before {
    content: '←';
    /* Left arrow */
    margin-right: 8px;
    font-size: 18px;
}

/* Add spacing to content so it’s not hidden behind fixed top bar */
body>*:not(#top-bar) {
    margin-top: 50px;
}