body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8bfc2;
    text-align: center;
    padding: 2rem;
}

.container {
    max-width: 600px;
    margin: auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #222;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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