body {
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* All screens white background */
    margin: 0;
    padding: 0;
}

/* Home Screen Styles */
#home-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.asterisk-container {
    display: flex;
    gap: 40px;
}

.asterisk-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
}

.asterisk-wrapper.clickable {
    cursor: pointer;
}

.asterisk {
    font-size: 40px;
    line-height: 1;
}

.popup-text {
    position: absolute;
    top: 100%;
    margin-top: 5px;
    font-size: 8pt;
    color: #333;
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.asterisk-wrapper:hover .popup-text {
    opacity: 1;
}

/* Board Styles - Redesigned to White */
#board-container {
    padding: 20px;
    background-color: #ffffff;
    min-height: 100vh;
    position: relative; /* Added to allow absolute positioning of auth-container */
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 20px 0; /* Changed padding-top to 0 */
    background-color: transparent; /* Remove background box */
}

header h1 {
    font-family: Arial, sans-serif; /* Same as popup-text font style */
    font-size: 18pt;
    font-weight: normal;
    color: #333;
    margin: 0; /* Reset margin to align with container padding */
    text-align: center;
    line-height: 1; /* Ensure no extra space at the top */
}

#auth-container {
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1; /* Align with h1 line-height */
}

#login-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 12pt;
    padding: 0;
    cursor: pointer;
    vertical-align: top; /* Ensure top alignment */
}

#login-btn:hover {
    color: #000;
    text-decoration: underline;
}

#posts-container {
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.post {
    background-color: #ffffff;
    border: none;
    border-bottom: 1px solid #eee; /* Clean divider */
    padding: 30px 0;
    margin-bottom: 20px;
}

.post img {
    max-width: 100%;
    border-radius: 0;
}

#submission-container {
    margin-top: 40px;
    background-color: #ffffff;
    border: 1px solid #eee;
    padding: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#post-form textarea {
    width: 100%;
    height: 100px;
    margin: 10px 0;
    border: 1px solid #eee;
    padding: 10px;
    box-sizing: border-box;
}

button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 0;
    cursor: pointer;
}

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