Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,28 +1,38 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
}
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
padding: 16px;
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
-
}
|
| 25 |
-
|
| 26 |
-
.card p:last-child {
|
| 27 |
-
margin-bottom: 0;
|
| 28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.no-scrollbar::-webkit-scrollbar { display: none; }
|
| 2 |
+
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
|
| 3 |
+
::-webkit-scrollbar { width: 6px; height: 6px; }
|
| 4 |
+
::-webkit-scrollbar-track { background: #121212; }
|
| 5 |
+
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
|
| 6 |
+
::-webkit-scrollbar-thumb:hover { background: #555; }
|
| 7 |
+
.bg-green-gradient {
|
| 8 |
+
background: linear-gradient(180deg, rgba(11,60,50,0.6) 0%, rgba(11,30,25,0.8) 100%);
|
| 9 |
}
|
| 10 |
+
.game-card-shadow { box-shadow: 0px 8px 0px 0px #1f2937; }
|
| 11 |
+
.game-card-shadow:hover { box-shadow: 0px 8px 0px 0px #fb923c; }
|
| 12 |
+
.header-blur { background: linear-gradient(to bottom, #0B0B0B 50%, transparent); }
|
| 13 |
+
.gold-gradient { background: linear-gradient(to bottom, #fef9c3, #eab308); }
|
| 14 |
+
.gold-gradient-text {
|
| 15 |
+
background: linear-gradient(to bottom, #fef9c3, #eab308);
|
| 16 |
+
-webkit-background-clip: text;
|
| 17 |
+
-webkit-text-fill-color: transparent;
|
| 18 |
}
|
| 19 |
+
.feature-card { background: linear-gradient(180deg, rgba(11,60,50,0.6) 0%, rgba(11,30,25,0.8) 100%); }
|
| 20 |
+
.divider-line { background: linear-gradient(to right, transparent, #fde047, transparent); }
|
| 21 |
+
@keyframes float {
|
| 22 |
+
0%, 100% { transform: translateY(0px); }
|
| 23 |
+
50% { transform: translateY(-10px); }
|
|
|
|
| 24 |
}
|
| 25 |
+
.float-animation { animation: float 3s ease-in-out infinite; }
|
| 26 |
+
@keyframes slideIn {
|
| 27 |
+
from { opacity: 0; transform: translateY(20px); }
|
| 28 |
+
to { opacity: 1; transform: translateY(0); }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
}
|
| 30 |
+
.slide-in { animation: slideIn 0.5s ease-out forwards; }
|
| 31 |
+
.live-win-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
|
| 32 |
+
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
|
| 33 |
+
.btn-gold { background: linear-gradient(to bottom, #fef9c3, #eab308); color: #111827; font-weight: 700; text-transform: uppercase; border-radius: 1rem; transition: all 0.2s; }
|
| 34 |
+
.btn-outline { border: 1px solid #fde68a; background: #111827; color: #f9fafb; font-weight: 700; text-transform: uppercase; border-radius: 1rem; transition: all 0.2s; }
|
| 35 |
+
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; }
|
| 36 |
+
@media (min-width: 768px) { .game-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1.25rem; } }
|
| 37 |
+
.seo-collapsed { max-height: 12rem; overflow: hidden; }
|
| 38 |
+
.seo-expanded { max-height: none; }
|