body {
    background-color: black;
    color: white;
    text-align: center;
    font-family: Arial, sans-serif;
}
.logo {
    max-width: 300px;
    margin: 20px auto;
}
h1 {
    font-size: 2em;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.social-links a {
    display: inline-block;
}
.social-links img {
    width: 50px;
    height: 50px;
}
.download-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.download-links img {
    width: 150px;
    height: auto;
}
.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}
.language-selector select {
    background-color: #333;
    color: white;
    border: 1px solid #555;
    padding: 5px;
    border-radius: 5px;
}