body {
    margin: 0;
    font-family: 'Lineage 2 Font', Arial, sans-serif;
    background-image: url('background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

header {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

header h1 {
    margin: 0;
    font-size: 3em;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
}

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

main {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
}

#home {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content {
    flex: 1;
    padding-right: 10px;
}

#home .content p {
    margin-bottom: 10px !important;
    margin-top: 5px !important;
    line-height: 1.2;
}

aside {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 8px;
    text-align: left;
    width: 20%;
    max-width: 200px;
}

aside h2 {
    margin-top: 0;
    font-size: 1.5em;
}

#online-status {
    color: #fff;
}

.online-number {
    color: #fd7f00;
}

.additional-info {
    font-size: 0.8em;
    color: #bbb;
}

.additional-info h3 {
    margin-bottom: 0.1em;
}

footer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

footer p {
    margin: 0;
}

.rating-block {
    margin-bottom: 10px;
    text-align: center;
}

.footer-right {
    position: absolute;
    right: 10px;
}

@media (max-width: 768px) {
    #home {
        flex-direction: column;
    }

    aside {
        width: 100%;
        max-width: none;
        margin-top: 20px;
    }

    .content {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    aside {
        width: 100%;
        max-width: none;
        margin-top: 20px;
    }
}