/* Umumiy uslublar */
body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}

h1 {
    margin-bottom: 30px;
}

/* Galereya grid */
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Card stili */
.card {
    background: #222;
    width: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 0.8s forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effekt */
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255,255,255,0.3);
}

/* Rasm uslubi */
.card img {
    width: 100%;
    display: block;
}

/* Card info */
.info {
    padding: 15px;
    background: #333;
    transition: background 0.3s ease;
}

/* Hover info background */
.card:hover .info {
    background: #444;
}

/* Button effekt */
button {
    padding: 10px 15px;
    border: none;
    background: #e50914;
    color: white;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

button:hover {
    background: #f6121d;
    transform: scale(1.1);
}

/* Animatsiya kartochkalarga (page load) */
@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
