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

.m-crash-hero {
position: relative;
border-radius: 18px;
overflow: hidden;
background: linear-gradient(160deg, #111111 0%, #0a0a0a 40%, #0d0d0d 100%);
border: 1px solid rgba(201, 168, 76, 0.15);
margin-bottom: 16px;
padding: 0;
}
.m-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: mCrashGold 4s ease-in-out infinite;
z-index: 3;
}
@keyframes mCrashGold {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}
.m-crash-hero::after {
content: '';
position: absolute;
top: -60px; right: -30px;
width: 220px; height: 220px;
background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
pointer-events: none;
z-index: 0;
}
.m-crash-hero-inner {
position: relative;
z-index: 2;
padding: clamp(18px, 4vw, 28px);
display: flex;
flex-direction: column;
gap: 14px;
}
.m-crash-hero-topline {
margin-bottom: 0;
}
.m-crash-tag {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.65rem;
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 12px;
}
.m-crash-title {
font-size: clamp(1.4rem, 5vw, 1.8rem);
font-weight: 900;
color: #fff;
margin: 0;
display: flex;
align-items: center;
gap: 12px;
letter-spacing: -0.02em;
}
.m-crash-icon {
width: 42px; height: 42px;
border-radius: 12px;
background: linear-gradient(135deg, #C9A84C, #FFD700);
display: inline-flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.m-crash-icon i {
color: #000;
font-size: 1.1rem;
}
.m-crash-desc {
font-size: 0.82rem;
color: rgba(255,255,255,0.45);
line-height: 1.5;
margin: 0;
max-width: 550px;
}
.m-crash-chips {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.m-crash-chip {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 0.65rem;
font-weight: 600;
color: #C9A84C;
border: 1px solid rgba(201,168,76,0.15);
background: rgba(201,168,76,0.08);
border-radius: 999px;
padding: 5px 12px;
}
.m-crash-hero-right {
display: flex;
gap: 10px;
}
.m-crash-hero-stat {
background: rgba(201, 168, 76, 0.06);
border: 1px solid rgba(201, 168, 76, 0.12);
border-radius: 12px;
padding: 10px 14px;
text-align: center;
min-width: 75px;
}
.m-crash-hero-stat .label {
display: block;
font-size: 0.58rem;
text-transform: uppercase;
letter-spacing: 1px;
color: rgba(255,255,255,0.35);
margin-bottom: 3px;
}
.m-crash-hero-stat .value {
color: #FFD700;
font-size: 1.15rem;
font-weight: 900;
}

.m-crash-search {
background: #1a1a1a;
border: 1px solid rgba(201, 168, 76, 0.12);
border-radius: 14px;
padding: 12px 14px;
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 12px;
transition: border-color 0.2s;
}
.m-crash-search:focus-within {
border-color: rgba(201, 168, 76, 0.35);
}
.m-crash-search i {
color: #C9A84C;
flex-shrink: 0;
}
.m-crash-search input {
border: none;
outline: none;
background: transparent;
color: #fff;
width: 100%;
font-size: 16px;
font-weight: 500;
}
.m-crash-search input::placeholder {
color: rgba(255,255,255,0.3);
}
.m-crash-clear {
text-decoration: none;
color: #C9A84C;
font-size: 0.72rem;
font-weight: 600;
white-space: nowrap;
}
.m-crash-search-note {
color: rgba(255,255,255,0.4);
font-size: 0.75rem;
margin: 0 2px 10px;
}

.mobile-games-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.mobile-game-card {
background: #1a1a1a;
border-radius: 8px;
overflow: hidden;
position: relative;
aspect-ratio: 4/3;
opacity: 0;
animation: fadeScaleIn 0.5s ease forwards;
transform: translateY(20px);
-webkit-tap-highlight-color: transparent;
border: 1px solid rgba(201, 168, 76, 0.08);
}
@keyframes fadeScaleIn {
to {
    opacity: 1;
    transform: translateY(0);
}
}
.mobile-game-card:nth-child(1) { animation-delay: 0.05s; }
.mobile-game-card:nth-child(2) { animation-delay: 0.1s; }
.mobile-game-card:nth-child(3) { animation-delay: 0.15s; }
.mobile-game-card:nth-child(4) { animation-delay: 0.2s; }
.mobile-game-card:nth-child(5) { animation-delay: 0.25s; }
.mobile-game-card:nth-child(6) { animation-delay: 0.3s; }
.mobile-game-card:nth-child(n+7) { animation-delay: 0.35s; }

.mobile-game-card img,
.mobile-game-fallback {
width: 100%;
height: 100%;
object-fit: cover;
background: #111;
}
.mobile-game-fallback {
display: flex;
align-items: center;
justify-content: center;
}
.mobile-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;
}
.mobile-game-card.active .mobile-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;
}
.mobile-play-btn {
background: #FFC900 !important;
color: #000 !important; padding: 8px 20px !important; border-radius: 8px !important;
font-weight: 800 !important; text-decoration: none !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; text-transform: uppercase !important;
}
.m-crash-badge {
position: absolute;
top: 6px;
right: 6px;
background: linear-gradient(135deg, #ff6b35, #E65A20);
color: #fff;
font-size: 0.6rem;
font-weight: 800;
padding: 2px 6px;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(255,107,53,0.3);
z-index: 2;
}
