
/* Basic CSS styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    color: #333;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 20px;
}
.logo img {
    width: 300px;
    max-width: 80%;
    margin-bottom: 20px;
}
.container {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 30px;
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.download-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    margin: 15px 0;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 1.1em;
    width: 100%;
    max-width: 320px;
}
.download-links a:hover {
    background-color: #f0f0f0;
}
.download-links img {
    height: 36px;
    margin-right: 12px;
}
.powered-by {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
    text-decoration: none;
    padding: 6px 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.powered-by:hover {
    background-color: #f0f0f0;
}
.powered-by img {
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}
