body {
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: white;
    margin: 0;
    padding: 0;
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.search-bar input {
    width: 300px;
    padding: 10px;
    border: 2px solid #ff0000;
    border-radius: 4px;
    outline: none;
    font-size: 16px;
}

h1 {
    text-align: center;
    padding: 20px 0;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.card {
    background-color: #292929;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 220px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.card:hover {
    transform: scale(1.1); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); 
}

.card img {
    width: 100%;
    height: auto; 
    max-height: 200px; 
    object-fit: contain; 
    border-radius: 8px;
}

.card h2 {
    font-size: 18px;
    margin: 10px 0;
}

.card p {
    margin: 5px 0;
    font-size: 14px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.pagination button {
    background: linear-gradient(135deg, #FF9800, #F44336);
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.pagination button:hover {
    background: linear-gradient(135deg, #F44336, #FF9800);
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.pagination button:disabled {
    background: #CCCCCC;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.pagination button:disabled:hover {
    transform: none;
}