File size: 2,177 Bytes
cefd52a
 
 
 
 
 
 
 
43bfa26
cefd52a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43bfa26
 
cefd52a
 
 
43bfa26
 
cefd52a
 
 
 
 
43bfa26
 
cefd52a
 
 
 
 
43bfa26
 
cefd52a
 
 
43bfa26
cefd52a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/* Asosiy sozlamalar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #0d0d0d;
  color: #f1f1f1;
  min-height: 100vh;
}

/* Header (yuqori menyu) */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a1a1a;
  padding: 15px 40px;
  box-shadow: 0 0 10px #6a0dad;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 45px;
  height: 45px;
  border-radius: 10px;
}

.logo h1 {
  color: #a855f7;
  font-size: 24px;
}

/* Navigatsiya menyusi */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #a855f7;
  text-shadow: 0 0 10px #a855f7;
}

/* Til tanlash menyusi */
.language-select select {
  background: #262626;
  color: #f1f1f1;
  border: 1px solid #a855f7;
  border-radius: 8px;
  padding: 5px 10px;
  cursor: pointer;
}

/* Asosiy qism */
main {
  padding: 50px 80px;
}

.anime-list h2 {
  font-size: 28px;
  color: #a855f7;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #a855f7;
}

/* Anime kartochkalari */
.anime-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.anime-card {
  background: #1a1a1a;
  border: 1px solid #3b3b3b;
  border-radius: 15px;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.anime-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #a855f7;
}

.anime-card img {
  width: 100%;
  border-radius: 10px;
}

.anime-card h3 {
  margin: 10px 0;
  color: #f1f1f1;
}

.anime-card button {
  background: #a855f7;
  border: none;
  border-radius: 8px;
  color: white;
  padding: 8px 15px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.anime-card button:hover {
  background: #9333ea;
  box-shadow: 0 0 15px #a855f7;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: #1a1a1a;
  color: #a0a0a0;
  border-top: 1px solid #3b3b3b;
  margin-top: 40px;
}