body {
    background-color: #000;
    color: white;
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    padding: 40px 20px;
}

.logo {
    max-width: 100px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.store-btn img {
    height: 60px;
    transition: transform 0.2s ease;
}

.store-btn img:hover {
    transform: scale(1.05);
}

.legal-links {
    margin-top: 40px;
    font-size: 0.9em;
}

.legal-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.legal-links a:hover {
    text-decoration: underline;
}