﻿/* PAGE -- crash_desktop | Auto-extracted */

.crash-hero {
position: relative;
border-radius: 20px;
overflow: hidden;
background: linear-gradient(160deg, #111111 0%, #0a0a0a 40%, #0d0d0d 100%);
border: 1px solid rgba(201, 168, 76, 0.15);
padding: 0;
margin-bottom: 28px;
}
.crash-hero::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, #C9A84C, #FFD700, #C9A84C, transparent);
background-size: 200% 100%;
animation: crashGoldLine 4s ease-in-out infinite;
z-index: 3;
}
@keyframes crashGoldLine {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}
.crash-hero::after {
content: '';
position: absolute;
top: -80px; right: -40px;
width: 280px; height: 280px;
background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
pointer-events: none;
z-index: 0;
}
.crash-hero-inner {
position: relative;
z-index: 2;
padding: clamp(24px, 4vw, 40px);
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}
.crash-hero-content {
flex: 1;
min-width: 280px;
}
.crash-hero-topline {
margin-bottom: 12px;
}
.crash-hero-tag {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.7rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1px;
color: #FFD700;
background: rgba(201, 168, 76, 0.1);
border: 1px solid rgba(201, 168, 76, 0.25);
border-radius: 999px;
padding: 6px 14px;
}
.crash-hero-title {
font-size: clamp(1.6rem, 3vw, 2.2rem);
font-weight: 900;
color: #fff;
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 14px;
letter-spacing: -0.02em;
}
.crash-hero-icon {
width: 48px; height: 48px;
border-radius: 14px;
background: linear-gradient(135deg, #C9A84C, #FFD700);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.crash-hero-icon i {
color: #000;
font-size: 1.3rem;
}
.crash-hero-text {
font-size: 0.9rem;
color: rgba(255,255,255,0.45);
max-width: 550px;
margin-bottom: 16px;
line-height: 1.5;
}
.crash-hero-stats {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.crash-hero-chip {
font-size: 0.72rem;
font-weight: 600;
color: #C9A84C;
background: rgba(201, 168, 76, 0.08);
border: 1px solid rgba(201, 168, 76, 0.15);
border-radius: 999px;
padding: 5px 12px;
display: inline-flex;
align-items: center;
gap: 6px;
}
.crash-hero-right {
display: flex;
gap: 12px;
}
.crash-hero-stat {
background: rgba(201, 168, 76, 0.06);
border: 1px solid rgba(201, 168, 76, 0.12);
border-radius: 14px;
padding: 14px 18px;
text-align: center;
min-width: 90px;
}
.crash-hero-stat .label {
display: block;
font-size: 0.62rem;
text-transform: uppercase;
letter-spacing: 1px;
color: rgba(255,255,255,0.35);
margin-bottom: 4px;
}
.crash-hero-stat .value {
color: #FFD700;
font-size: 1.3rem;
font-weight: 900;
}

.crash-search {
background: #1a1a1a;
border: 1px solid rgba(201, 168, 76, 0.12);
border-radius: 14px;
padding: 12px 18px;
display: flex;
align-items: center;
gap: 12px;
margin: 0 0 16px;
transition: border-color 0.2s;
}
.crash-search:focus-within {
border-color: rgba(201, 168, 76, 0.35);
}
.crash-search i {
color: #C9A84C;
flex-shrink: 0;
}
.crash-search input {
flex: 1;
border: none;
background: transparent;
color: #fff;
outline: none;
font-weight: 500;
}
.crash-search input::placeholder {
color: rgba(255,255,255,0.3);
}
.crash-search-clear {
color: #C9A84C;
text-decoration: none;
font-size: 0.78rem;
font-weight: 600;
}
.crash-search-clear:hover {
color: #FFD700;
}

.crash-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 15px;
}
.crash-card {
background-color: #1a1a1a;
border: 1px solid rgba(201, 168, 76, 0.1);
border-radius: 12px;
position: relative;
overflow: hidden;
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
display: block;
aspect-ratio: 4/3;
box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
.crash-card:hover {
transform: translateY(-8px) scale(1.02);
box-shadow: 0 12px 30px rgba(201, 168, 76, 0.2), 0 4px 12px rgba(0,0,0,0.4);
border-color: rgba(201, 168, 76, 0.4);
z-index: 10;
}
.crash-card img,
.crash-card-fallback {
width: 100%;
height: 100%;
object-fit: cover;
transition: 0.3s;
}
.crash-card-fallback {
background: linear-gradient(135deg, #2F4553 0%, #1A2C38 100%);
display: flex;
align-items: center;
justify-content: center;
}
.crash-card:hover img,
.crash-card:hover .crash-card-fallback {
transform: scale(1.05);
filter: brightness(0.4);
}
.crash-play-overlay {
position: absolute; top: 0; left: 0; width: 100%; height: 100%;
background: transparent;
backdrop-filter: blur(1.5px);
-webkit-backdrop-filter: blur(1.5px);
display: flex; flex-direction: column;
justify-content: center; align-items: center;
opacity: 0; transition: opacity 0.25s ease; pointer-events: none; z-index: 5;
}
.crash-card:hover .crash-play-overlay {
opacity: 1;
pointer-events: auto;
}
.overlay-game-title {
color: #fff; font-size: 0.85rem; font-weight: 700;
text-align: center; margin-bottom: 16px;
text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 2px 6px rgba(0,0,0,0.7); padding: 0 10px;
display: -webkit-box; -webkit-line-clamp: 2;
-webkit-box-orient: vertical; overflow: hidden;
}
.crash-overlay-btn {
background: #FFC900 !important;
color: #000 !important; padding: 8px 20px !important; border-radius: 8px !important;
font-weight: 800 !important; text-decoration: none !important;
transition: transform 0.15s ease !important; font-size: 0.85rem !important;
box-shadow: 0 4px 10px rgba(201,168,76,0.3) !important; border: none !important;
display: inline-flex !important; align-items: center !important; justify-content: center !important;
width: auto !important; margin: 0 !important; text-transform: uppercase !important;
}
.crash-overlay-btn:hover {
transform: scale(1.08) !important; color: #000 !important;
}
.crash-game-title {
color: #fff;
text-align: center;
font-weight: 600;
font-size: 0.9rem;
text-shadow: 0 2px 4px rgba(0,0,0,0.8);
line-height: 1.2;
}
.crash-badge {
position: absolute;
top: 10px;
right: 10px;
background: rgba(255, 107, 53, 0.9);
color: #fff;
font-size: 0.65rem;
font-weight: 800;
padding: 3px 8px;
border-radius: 4px;
z-index: 2;
box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
