/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #181818; /* Dark background */
    color: #f0f0f0; /* Light text color */
    line-height: 1.6;
}

header {
    background: #222; /* Darker header */
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #ffcc00; /* Golden bottom border */
}

h1 {
    font-size: 2.5em;
    color: #ffcc00; /* Golden color for main title */
}

h2 {
    font-size: 1.5em;
    color: #ffcc00; /* Golden color for headings */
    margin: 20px 0;
}

.shoutbox, .post {
    background: #333; /* Dark background for sections */
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    width: 80%; /* Centering sections */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid #444; /* Subtle border */
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input[type="text"],
textarea {
    padding: 10px;
    border: 1px solid #666; /* Dark border */
    border-radius: 4px;
    background: #444; /* Dark input background */
    color: #f5f5f5; /* Light text color */
}

textarea {
    height: 100px;
    resize: none; /* Prevent resizing of textarea */
}

button {
    background: #ffcc00; /* Golden button */
    color: #222; /* Dark text on button */
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #e6b800; /* Darker golden on hover */
}

.shouts {
    margin-top: 15px;
}

.shout {
    background: #444; /* Darker background for each shout */
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border-left: 5px solid #ffcc00; /* Highlight for shout */
}

.shout strong {
    color: #ffcc00; /* Golden color for usernames */
}

footer {
    text-align: center;
    padding: 10px;
    background: #222; /* Dark footer */
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 10px 0;
    color: #777; /* Slightly lighter color for footer text */
}

/* Links */
a {
    color: #ffcc00; /* Golden link color */
    text-decoration: none; /* Remove underline */
}

a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Responsive design */
@media (max-width: 768px) {
    .shoutbox, .post {
        width: 95%; /* Full width on smaller screens */
    }
}
