body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.store-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.2s;
}

.store-card:hover {
    transform: translateY(-5px);
}

.store-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 3px solid #007bff;
}

.store-card h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.location {
    color: #666;
    margin: 5px 0 15px;
}

.downloads {
    font-weight: 500;
    color: #007bff;
    margin-bottom: 20px;
}

#installBtn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#installBtn:hover {
    background-color: #0056b3;
}

.description {
    font-size: 14px;
    color: #555;
    margin-top: 20px;
}
