body {
    font-family: Arial, sans-serif;
    background: #121212;
    color: #fff;
    text-align: center;
}

h1 {
    margin-top: 20px;
}

nav a {
    color: #00b3ff;
    text-decoration: none;
    margin: 0 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card {
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.no-img {
    background: #333;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card h3 {
    margin: 10px 0 5px;
}

.card p {
    color: #aaa;
    font-size: 0.9em;
}
