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

.container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 100px;
}

h1, h2 {
    text-align: center;
}

.results {
    margin-bottom: 20px;
    text-align: center;
}

.day-results .day {
    color: #c47000;
}

.night-results .day {
    color: #003e80;
}

.number {
    font-size: 1.2em;
    font-weight: bold;
    border: 1px solid;
    padding: 2px 5px;
}

.day-results .number {
    color: #c47000;
    border-color: #c47000;
}

.night-results .number {
    color: #003e80;
    border-color: #003e80;
}

.play-store-link {
    display: block;
    text-align: center;
    margin: 20px 0;
}

.play-store-link img {
    max-width: 200px;
}

.privacy-links {
    text-align: center;
}

.privacy-links a {
    color: #0066cc;
    text-decoration: none;
}

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