body {
    padding: 0 20px;
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333333;
}

header {
    color: #f4f4f4;
    background-color: #595959;
    padding: 20px 10px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: auto;
}

h1 {
    margin: 0;
    font-size: 2em;
}

p {
    margin: 5px 0;
    text-align: left;
}

h2 {
    font-size: 1.7em;
    margin-top: 1em;
    color: #111;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.25em;
}

h3 {
    font-size: 1.3em;
    margin-top: 1em;
    color: #444;
    font-weight: bold;
}

.header-image {
    max-width: 150px;
    height: auto;
    margin: 0 auto 20px;
}

main {
    padding: 1em 0;
}

.content {
    margin-bottom: 2em;
}

.content p {
    margin: 1em 0;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 0.5em 0;
}

ul li a {
    color: #0066cc;
    text-decoration: none;
}

ul li a:hover {
    text-decoration: underline;
}

img {
    border-radius: 10px;
    max-width: 25%; /* Ensure image fits within container */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 15px;
}

.beta-screenshots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1em;
}
.beta-screenshots img {
    width: 22%;
    min-width: 150px;
    max-width: 250px;
    flex: 1 1 22%;
}
@media (max-width: 768px) {
    .beta-screenshots img {
        width: 47%;
        min-width: 120px;
        max-width: 100%;
    }
}

footer {
    text-align: center;
    padding: 1em 0;
    background: #333;
    color: #fff;
    margin-top: 2em;
}

/* See Also section */
.see-also {
    font-size: 0.9em;
    margin-top: 1em;
    color: #444;
}
.see-also a {
    color: #004499;
    text-decoration: none;
}
.see-also a:hover {
    text-decoration: underline;
}

/* Responsive Styles for Mobile Screens */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }

    header p {
        font-size: 1em;
    }

    h2 {
        font-size: 1.4em;
    }

    .container {
        flex-direction: column;
        padding: 0 10px;
    }

    main {
        padding: 1em 0;
    }
}

