1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.header h3 {
margin: 0;
}
.toggleText {
cursor: pointer;
color: var(--color-primary);
}
.filterWrapper {
margin-bottom: 20px;
}
.cardsWrapper {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
gap: 16px;
}
.card {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 16px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.cardImage {
width: 100%;
height: auto;
border-radius: 4px;
}
.cardTitle {
margin-top: 16px;
font-weight: bold;
}
.cardGenre {
margin-top: 8px;
color: #666;
}