body {
    font-family: Arial;
    background: #0f172a;
    color: white;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
}

.btn {
    display: block;
    background: orange;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    color: black;
}