.chat-badge-bronze { background: rgba(90, 61, 40, 0.6); border: 1px solid rgba(140, 100, 70, 0.4); color:#2b2519; font-size: 12px; padding: 2px 6px; border-radius: 6px; font-weight: 800; font-family: 'Inter', sans-serif; text-shadow: 0 0 4px rgba(0,0,0,0.5); }
.chat-badge-silver { background: rgba(176, 176, 176, 0.25); border: 1px solid rgba(176, 176, 176, 0.5); color: #b0b0b0; font-size: 12px; padding: 2px 6px; border-radius: 6px; font-weight: 800; font-family: 'Inter', sans-serif; text-shadow: 0 0 6px rgba(255,255,255,0.2); box-shadow: 0 0 8px rgba(176,176,176,0.3); }
.chat-badge-gold { background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.15)); border: 1px solid rgba(255, 215, 0, 0.6); color: var(--accent-gold); font-size: 12px; padding: 2px 6px; border-radius: 6px; font-weight: 900; font-family: 'Inter', sans-serif; text-shadow: 0 0 8px rgba(255, 215, 0, 0.3); box-shadow: 0 0 10px rgba(255, 215, 0, 0.25); }
.chat-badge-platinum { background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(0, 132, 255, 0.15)); border: 1px solid rgba(0, 240, 255, 0.6); color: var(--accent-blue); font-size: 12px; padding: 2px 6px; border-radius: 6px; font-weight: 900; font-family: 'Inter', sans-serif; text-shadow: 0 0 10px rgba(0, 240, 255, 0.4); box-shadow: 0 0 12px rgba(0, 240, 255, 0.3); }
.chat-badge-legend { background: linear-gradient(135deg, rgba(255, 59, 48, 0.2), rgba(255, 149, 0, 0.2)); border: 1px solid rgba(255, 59, 48, 0.8); color: #ff3b30; font-size: 12px; padding: 2px 6px; border-radius: 6px; font-weight: 900; font-family: 'Inter', sans-serif; text-shadow: 0 0 12px rgba(255, 59, 48, 0.6); box-shadow: 0 0 15px rgba(255, 59, 48, 0.4); animation: legendBadgePulse 2s infinite alternate; }
@keyframes legendBadgePulse {
from { box-shadow: 0 0 8px rgba(255,59,48,0.3); border-color: rgba(255,59,48,0.6); }
to { box-shadow: 0 0 16px rgba(255,59,48,0.7); border-color: rgba(255,59,48,1); }
}
.gnb-profile-card {
background: rgba(251,247,238,0.96);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 8px 12px;
display: flex;
align-items: center;
gap: 12px;
margin-left: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
.store-card {
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(90,78,54,0.12);
border-radius: 16px;
padding: 20px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
.store-card:hover {
background: rgba(255, 255, 255, 0.04);
border-color:#6f6553;
transform: translateY(-4px);
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.store-card.premium-glow::before {
content: '';
position: absolute;
top: 0; left: 0; width: 100%; height: 3px;
background: linear-gradient(90deg, var(--accent-gold), #ff8c00);
}
.store-card.vip-glow::before {
content: '';
position: absolute;
top: 0; left: 0; width: 100%; height: 3px;
background: linear-gradient(90deg, var(--accent-blue), #0056b3);
}
.store-card.seed-glow::before {
content: '';
position: absolute;
top: 0; left: 0; width: 100%; height: 3px;
background: linear-gradient(90deg, var(--accent-green), #009624);
}
.store-card.name-glow::before {
content: '';
position: absolute;
top: 0; left: 0; width: 100%; height: 3px;
background: linear-gradient(90deg, #e040fb, #aa00ff);
}
.btn-store-buy {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(90,78,54,0.12);
border-radius: 8px;
padding: 8px 12px;
color:#2b2519;
font-size: 12px;
font-weight: 700;
cursor: pointer;
transition: all 0.2s;
width: 100%;
text-align: center;
margin-top: 14px;
}
.btn-store-buy:hover {
background: var(--accent-green);
color: #000;
font-weight: 800;
border-color: var(--accent-green);
box-shadow: 0 0 12px rgba(0, 230, 118, 0.3);
}
.confetti-canvas {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
pointer-events: none;
z-index: 99999;
}
.skeleton {
background: linear-gradient(
90deg,
rgba(255, 255, 255, 0.03) 25%,
rgba(255, 255, 255, 0.08) 37%,
rgba(255, 255, 255, 0.03) 63%
);
background-size: 400% 100%;
animation: skeleton-loading 1.4s ease infinite;
border-radius: 6px;
display: inline-block;
}
@keyframes skeleton-loading {
0% { background-position: 100% 50%; }
100% { background-position: 0 50%; }
}
@media (max-width: 600px) {
body {
padding-bottom: 66px !important;
}
}
.match-team-name {
font-size: clamp(10.5px, 3.2vw, 13px) !important;
font-weight: 800 !important;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block;
max-width: 110px !important;
}
@media (max-width: 600px) {
.match-row-inner {
flex-direction: column !important;
align-items: flex-start !important;
padding: 12px 14px !important;
gap: 10px !important;
}
.star-btn {
position: absolute !important;
top: 12px !important;
left: 12px !important;
}
.match-main-link {
width: 100% !important;
padding-left: 24px !important;
gap: 8px !important;
}
.match-teams-row {
width: 100% !important;
justify-content: space-between !important;
padding: 4px 0 !important;
gap: 12px !important;
}
.match-predict-container {
width: 100% !important;
margin-left: 0 !important;
padding-left: 24px !important;
margin-top: 4px !important;
border-top: 1px solid rgba(90,78,54,0.12);
padding-top: 8px !important;
justify-content: flex-start !important;
}
.match-predict-container > div {
align-items: flex-start !important;
width: 100% !important;
}
.pc-text {
display: none !important;
}
.mobile-text {
display: inline !important;
}
.match-prediction-text {
display: inline-block !important;
max-width: 80% !important;
white-space: nowrap !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
}
}
@media (max-width: 480px) {
.match-row-wrapper {
padding: 0 4px !important;
}
.match-team-name {
max-width: 85px !important;
}
}
.mobile-bottom-nav {
display: none;
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 62px;
background:#fbf7ee;
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
border-top: 1px solid rgba(90,78,54,0.12);
z-index: 9999;
justify-content: space-around;
align-items: center;
padding-bottom: env(safe-area-inset-bottom);
box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}
.mobile-bottom-tab {
flex: 1;
background: none;
border: none;
outline: none;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 3px;
color: var(--text-secondary);
cursor: pointer;
transition: all 0.2s ease;
height: 100%;
}
.mobile-bottom-tab .tab-icon {
font-size: 18px;
transition: transform 0.2s ease;
}
.mobile-bottom-tab .tab-label {
font-size: 12px;
font-weight: 700;
}
.mobile-bottom-tab.active {
color: var(--accent-gold);
text-shadow: 0 0 10px rgba(255, 188, 0, 0.3);
}
.mobile-bottom-tab.active .tab-icon {
transform: scale(1.15);
}
@media (max-width: 991px) {
.mobile-bottom-nav {
display: flex;
}
body {
padding-bottom: 75px !important;
}
}