@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Oswald:wght@500;700&display=swap');
:root {
    --tk-black: #080310; --tk-dark: #120a20; --tk-cyan: #00f0ff;
    --tk-red: #d900ff; --tk-white: #ffffff; --tk-gray: #9ca3af;
    --gold-primary: #FFD700;
    --purple-gradient: linear-gradient(135deg, #00f0ff 0%, #d900ff 100%);
    --zv-glow: 0 0 20px rgba(217, 0, 255, 0.4);
    --zv-glow-cyan: 0 0 20px rgba(0, 240, 255, 0.4);
}
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
body, html { width: 100%; height: 100%; height: 100dvh; font-family: 'Inter', sans-serif; background-color: var(--tk-black); color: var(--tk-white); overflow: hidden; }
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.btn-active, .btn-press { transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease; cursor: pointer; user-select: none; }
.btn-active:active, .btn-press:active { transform: scale(0.95); opacity: 0.8; }
.app-page { display: none; width: 100%; height: 100%; height: 100dvh; position: absolute; top: 0; left: 0; overflow-y: auto; overflow-x: hidden; background-color: var(--tk-black); }
.app-page.active { display: block; animation: fadeInPage 0.3s ease-out forwards; }
@keyframes fadeInPage { from { opacity: 0; } to { opacity: 1; } }
.safe-bottom-spacer { height: 120px; width: 100%; flex-shrink: 0; pointer-events: none; }
#splash-screen { position: fixed; inset: 0; z-index: 99999; background-color: var(--tk-black); display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.splash-ambient { position: absolute; inset: 0; z-index: 0; background: radial-gradient(circle at 50% 50%, rgba(217, 0, 255, 0.15) 0%, rgba(0, 240, 255, 0.05) 50%, rgba(0, 0, 0, 0) 80%); }
.splash-logo-wrapper { position: relative; z-index: 10; width: 180px; margin-bottom: 40px; animation: floatLogo 3s ease-in-out infinite; }
.splash-logo-wrapper img { width: 100%; height: auto; filter: drop-shadow(0 0 25px rgba(217, 0, 255, 0.5)); }
@keyframes floatLogo { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.splash-progress-container { position: relative; z-index: 10; width: 220px; height: 4px; background-color: rgba(255, 255, 255, 0.1); border-radius: 100px; overflow: hidden; margin-bottom: 15px; }
.splash-progress-bar { height: 100%; width: 0%; background: var(--purple-gradient); border-radius: 100px; box-shadow: var(--zv-glow); transition: width 0.1s linear; }
.splash-text-status { position: relative; z-index: 10; color: var(--tk-cyan); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; animation: pulseText 1.5s infinite; }
@keyframes pulseText { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; text-shadow: 0 0 10px var(--tk-cyan); } }
#global-toast { position: fixed; top: -100px; left: 50%; transform: translateX(-50%); background: rgba(18, 10, 32, 0.95); backdrop-filter: blur(10px); border: 1px solid rgba(217, 0, 255, 0.3); color: #fff; padding: 12px 24px; border-radius: 100px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 10px; z-index: 90000; box-shadow: 0 15px 35px rgba(0,0,0,0.8), 0 0 15px rgba(217,0,255,0.2); transition: top 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); white-space: nowrap; pointer-events: none; }
#global-toast.show { top: 25px; }
.toast-icon { display: flex; align-items: center; justify-content: center; }
#page-auth { background-color: var(--tk-black); color: #fff; background-image: radial-gradient(circle at 100% 0%, rgba(217,0,255,0.1) 0%, transparent 50%), radial-gradient(circle at 0% 100%, rgba(0,240,255,0.1) 0%, transparent 50%); }
.auth-container { padding: 20px 24px; display: flex; flex-direction: column; align-items: center; height: 100%; padding-bottom: 120px; }
.auth-header-actions { width: 100%; display: flex; justify-content: flex-end; padding: 10px 0; }
.auth-help-btn { color: #fff; background-color: rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 6px; border: 1px solid rgba(255,255,255,0.05); }
.auth-logo-box { width: 150px; margin-top: 20px; margin-bottom: 20px; }
.auth-logo-box img { width: 100%; filter: drop-shadow(0 0 15px rgba(217, 0, 255, 0.3)); }
.auth-title { font-size: 24px; font-weight: 900; margin-bottom: 10px; text-align: center; letter-spacing: -0.5px; }
.auth-desc { font-size: 13px; color: var(--tk-gray); text-align: center; margin-bottom: 30px; line-height: 1.5; padding: 0 10px; font-weight: 500; }
.auth-social-btn { display: flex; align-items: center; position: relative; width: 100%; height: 48px; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 12px; background-color: rgba(255,255,255,0.03); backdrop-filter: blur(10px); transition: all 0.2s ease; }
.auth-social-btn.primary { background: var(--purple-gradient); border: none; box-shadow: var(--zv-glow); }
.auth-social-btn:active { background-color: rgba(255,255,255,0.1); transform: scale(0.98); }
.auth-social-icon { position: absolute; left: 16px; display: flex; align-items: center; }
.auth-social-text { width: 100%; text-align: center; }
.auth-terms { font-size: 11px; color: var(--tk-gray); text-align: center; margin-top: auto; margin-bottom: 20px; line-height: 1.6; font-weight: 500; }
.auth-terms a { color: var(--tk-cyan); font-weight: 700; text-decoration: none; }
.auth-buy-footer { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(8, 3, 16, 0.95); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,0.1); padding: 20px; display: flex; justify-content: center; align-items: center; font-size: 14px; z-index: 100; }
.auth-form-modal { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px); z-index: 15000; opacity: 0; pointer-events: none; transition: opacity 0.3s; display: flex; flex-direction: column; justify-content: flex-end; }
.auth-form-modal.show { opacity: 1; pointer-events: auto; }
.auth-form-content { background: var(--tk-dark); border-radius: 28px 28px 0 0; padding: 24px 20px; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28); border-top: 1px solid rgba(217,0,255,0.3); box-shadow: 0 -10px 40px rgba(0,0,0,0.5); padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
.auth-form-modal.show .auth-form-content { transform: translateY(0); }
.auth-form-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.auth-form-title { font-size: 20px; font-weight: 900; color: #fff; }
.auth-close-btn { background: rgba(255,255,255,0.1); padding: 8px; border-radius: 50%; color: #fff; }
.auth-warning-box { background: rgba(217,0,255,0.1); border: 1px solid rgba(217,0,255,0.3); color: #fff; font-size: 12px; font-weight: 600; padding: 12px; border-radius: 12px; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 10px; text-shadow: 0 0 5px rgba(217,0,255,0.5); }
.auth-input-wrapper { margin-bottom: 16px; }
.auth-input-label { display: block; font-size: 11px; font-weight: 800; color: var(--tk-cyan); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; margin-left: 4px; }
.auth-input-field { position: relative; }
.auth-input-field i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--tk-gray); }
.auth-input-field input { width: 100%; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 14px 14px 14px 44px; font-size: 14px; font-weight: 600; color: #fff; outline: none; transition: all 0.2s; }
.auth-input-field input:focus { border-color: var(--tk-cyan); background: rgba(0,240,255,0.05); box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.1); }
.auth-submit-btn { width: 100%; background: var(--purple-gradient); color: #ffffff; padding: 16px; border-radius: 14px; font-weight: 800; font-size: 15px; margin-top: 10px; box-shadow: var(--zv-glow); border: none; }

/* Captcha Styles */
.captcha-wrapper { display: flex; gap: 10px; align-items: center; }
.captcha-display { background: rgba(0,0,0,0.6); border: 1px dashed var(--tk-cyan); color: var(--tk-cyan); font-family: 'Oswald', monospace; font-size: 20px; font-weight: 900; letter-spacing: 6px; padding: 8px 12px; border-radius: 12px; flex-shrink: 0; user-select: none; text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.4); text-decoration-thickness: 2px; }
.btn-refresh-captcha { background: rgba(255,255,255,0.1); border-radius: 12px; height: 100%; padding: 0 14px; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 1px solid rgba(255,255,255,0.1); }
.btn-refresh-captcha:active { background: rgba(255,255,255,0.2); }

#page-tiktok { background: #000; padding-bottom: 0; }
#feed-container { height: calc(100dvh - 80px); overflow-y: scroll; scroll-snap-type: y mandatory; scroll-behavior: smooth; }
.video-card { height: calc(100dvh - 80px); width: 100vw; scroll-snap-align: start; position: relative; background: #000; overflow: hidden; display: flex; justify-content: center; align-items: center; }
.video-player { width: 100%; height: 100%; object-fit: contain; background: #000; }
.video-ui-overlay { position: absolute; inset: 0; z-index: 50; pointer-events: none; display: flex; flex-direction: column; justify-content: flex-end; }
.video-ui-overlay * { pointer-events: auto; }
.video-sidebar { position: absolute; right: 12px; bottom: 20px; display: flex; flex-direction: column; gap: 16px; align-items: center; z-index: 60; }
.action-item { display: flex; flex-direction: column; align-items: center; cursor: pointer; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.action-item:active { transform: scale(0.85); }
.avatar-container { position: relative; margin-bottom: 4px; }
.avatar-img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--tk-cyan); object-fit: cover; background-color: #333; }
.follow-btn { position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); background-color: var(--tk-red); border-radius: 50%; padding: 2px; display: flex; align-items: center; justify-content: center; box-shadow: var(--zv-glow); }
.action-icon { color: #fff; margin-bottom: 4px; transition: all 0.2s; }
.action-text { color: #fff; font-size: 12px; font-weight: 700; text-shadow: 0 1px 2px rgba(0,0,0,0.8); }
.action-item.liked .action-icon { fill: var(--tk-red); color: var(--tk-red); filter: drop-shadow(0 0 10px rgba(217,0,255,0.6)); animation: popIcon 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.action-item.saved .action-icon { fill: var(--tk-cyan); color: var(--tk-cyan); filter: drop-shadow(0 0 10px rgba(0,240,255,0.6)); animation: popIcon 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes popIcon { 0% { transform: scale(1); } 50% { transform: scale(1.4); } 100% { transform: scale(1); } }
.flying-heart { position: absolute; pointer-events: none; z-index: 100; width: 70px; height: 70px; margin-left: -35px; margin-top: -35px; fill: var(--tk-red); filter: drop-shadow(0 0 15px rgba(217,0,255,0.8)); animation: flyUpAndFade 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1); }
@keyframes flyUpAndFade { 0% { transform: scale(0) rotate(0deg); opacity: 0; } 15% { transform: scale(1.2) rotate(-15deg); opacity: 1; } 70% { transform: scale(1) translateY(-100px) rotate(10deg); opacity: 0.8; } 100% { transform: scale(0.8) translateY(-200px) rotate(0deg); opacity: 0; } }
.video-info { position: absolute; bottom: 20px; left: 16px; width: calc(100% - 80px); color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.8); z-index: 60; }
.video-author { font-size: 15px; font-weight: 800; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; color: var(--tk-cyan); text-shadow: 0 0 10px rgba(0,240,255,0.3); }
.video-desc { font-size: 13px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 8px; }
.video-top-header { position: absolute; top: 0; left: 0; right: 0; height: 90px; background: linear-gradient(to bottom, rgba(8,3,16,0.8) 0%, transparent 100%); z-index: 60; display: flex; justify-content: center; align-items: center; padding-top: 20px; gap: 20px; pointer-events: none; }
.zivo-feed-logo { position: absolute; left: 20px; height: 28px; filter: drop-shadow(0 0 10px rgba(217,0,255,0.5)); }
.top-tab { color: rgba(255,255,255,0.6); font-size: 15px; font-weight: 700; pointer-events: auto; cursor: pointer; position: relative; transition: color 0.2s; }
.top-tab.active { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
.top-tab.active::after { content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); width: 20px; height: 3px; background: var(--purple-gradient); border-radius: 2px; box-shadow: var(--zv-glow); }
.video-bottom-mask { position: absolute; bottom: 0; left: 0; right: 0; height: 40vh; background: linear-gradient(to top, rgba(8,3,16,0.95) 0%, rgba(8,3,16,0.2) 60%, transparent 100%); pointer-events: none; z-index: 40; }
#page-diemdanh { background-color: var(--tk-black); color: #fff; }
.header-standard { position: sticky; top: 0; z-index: 40; background: rgba(8, 3, 16, 0.9); backdrop-filter: blur(10px); padding: 40px 16px 12px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.05); }
.header-title { font-size: 17px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.reward-main-card { margin: 16px; border-radius: 28px; padding: 24px 20px; background: var(--tk-dark); border: 1px solid rgba(217,0,255,0.2); position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.reward-main-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 120px; height: 120px; background: var(--tk-red); border-radius: 50%; filter: blur(50px); opacity: 0.3; }
.reward-main-card::after { content: ''; position: absolute; bottom: -40px; left: -40px; width: 120px; height: 120px; background: var(--tk-cyan); border-radius: 50%; filter: blur(50px); opacity: 0.2; }
.reward-balance-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--tk-gray); margin-bottom: 6px; }
.reward-balance-value { font-size: 36px; font-weight: 900; letter-spacing: -1px; line-height: 1; margin-bottom: 20px; display: flex; align-items: baseline; gap: 4px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.reward-currency { font-size: 16px; font-weight: 700; color: var(--gold-primary); }
.checkin-action-area { display: flex; justify-content: space-between; align-items: flex-end; position: relative; z-index: 10; }
.btn-checkin { background: var(--purple-gradient); color: #fff; padding: 12px 24px; border-radius: 100px; font-size: 14px; font-weight: 900; border: none; box-shadow: var(--zv-glow); transition: all 0.2s; }
.btn-checkin.disabled { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.3); box-shadow: none; cursor: not-allowed; }
.checkin-progress { text-align: right; }
.checkin-status-text { font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 6px; display: block; }
.checkin-progress-bar-bg { width: 90px; height: 5px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.checkin-progress-bar-fill { height: 100%; background: var(--tk-cyan); border-radius: 10px; transition: width 0.5s ease; box-shadow: 0 0 10px var(--tk-cyan); }
.timeline-section { padding: 0; margin-bottom: 24px; width: 100%; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; padding: 0 16px; }
.section-title { font-size: 15px; font-weight: 900; color: #fff; }
.btn-remind { background: rgba(0,240,255,0.1); color: var(--tk-cyan); border: 1px solid rgba(0,240,255,0.2); padding: 5px 10px; border-radius: 100px; font-size: 10px; font-weight: 800; display: flex; align-items: center; gap: 4px; }
.timeline-container { display: flex; gap: 10px; overflow-x: auto; padding: 5px 16px 10px 16px; scroll-padding-left: 16px; }
.timeline-container::after { content: ''; padding-right: 6px; }
.day-card { min-width: 75px; background: var(--tk-dark); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 12px 8px; display: flex; flex-direction: column; align-items: center; scroll-snap-align: start; }
.day-card.today { border-color: var(--tk-red); background: rgba(217,0,255,0.05); transform: scale(1.05); box-shadow: 0 0 15px rgba(217,0,255,0.2); }
.day-reward { font-size: 12px; font-weight: 900; color: var(--tk-cyan); margin-bottom: 8px; }
.day-coin { width: 30px; height: 30px; margin-bottom: 10px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.day-label { font-size: 10px; font-weight: 700; color: var(--tk-gray); text-transform: uppercase; }
.day-card.today .day-label { color: var(--tk-red); }
.event-banner { margin: 0 16px 16px 16px; background: var(--tk-dark); border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); cursor: pointer; }
.event-img { width: 100%; height: 140px; object-fit: cover; }
.event-info { padding: 16px; }
.event-title { font-size: 14px; font-weight: 800; color: #fff; line-height: 1.4; margin-bottom: 12px; }
.btn-join-event { width: 100%; background: rgba(0,240,255,0.1); color: var(--tk-cyan); border: 1px solid rgba(0,240,255,0.3); padding: 12px; border-radius: 12px; font-weight: 800; font-size: 13px; text-align: center; }
.reward-modal { position: fixed; inset: 0; z-index: 100000; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.reward-modal.show { opacity: 1; pointer-events: auto; }
.reward-box { background: var(--tk-dark); border: 1px solid rgba(217,0,255,0.3); width: 85%; max-width: 320px; border-radius: 28px; padding: 30px 20px; text-align: center; transform: scale(0.8) translateY(20px); transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8), 0 0 30px rgba(217,0,255,0.2); position: relative; overflow: hidden; }
.reward-modal.show .reward-box { transform: scale(1) translateY(0); }
.reward-box-bg { position: absolute; top: 0; left: 0; right: 0; height: 120px; background: var(--purple-gradient); border-radius: 28px 28px 50% 50%; z-index: 0; opacity: 0.2; }
.reward-icon-wrapper { position: relative; z-index: 10; width: 80px; height: 80px; margin: 0 auto 20px auto; background: #fff; border-radius: 50%; padding: 12px; box-shadow: 0 0 25px rgba(255,255,255,0.2); animation: floatCoin 3s infinite ease-in-out; }
.reward-icon-wrapper img { width: 100%; height: 100%; object-fit: contain; }
.reward-title { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 6px; position: relative; z-index: 10;}
.reward-amount-text { font-size: 32px; font-weight: 900; line-height: 1; background: var(--purple-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 10px; position: relative; z-index: 10; filter: drop-shadow(0 0 5px rgba(217,0,255,0.5));}
.reward-desc { font-size: 13px; color: var(--tk-gray); font-weight: 500; margin-bottom: 24px; line-height: 1.5; position: relative; z-index: 10;}
.btn-claim-reward { width: 100%; padding: 14px; border-radius: 14px; background: var(--purple-gradient); color: #fff; font-size: 15px; font-weight: 900; border: none; box-shadow: var(--zv-glow); position: relative; z-index: 10; }
#page-trochoi { background-color: var(--tk-black); color: #ffffff; }
.game-header { position: sticky; top: 0; z-index: 40; background: rgba(8, 3, 16, 0.9); backdrop-filter: blur(10px); padding: 40px 16px 12px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.05); }
.game-title { font-size: 17px; font-weight: 900; color: #fff; }
.btn-history { color: var(--tk-gray); padding: 6px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.game-panel { background: var(--tk-dark); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 20px; padding: 16px; margin: 0 16px 16px 16px; position: relative; box-shadow: 0 10px 20px rgba(0,0,0,0.3);}
.game-balance-area { display: flex; justify-content: space-between; align-items: center; }
.gb-label { font-size: 10px; font-weight: 800; color: var(--tk-gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.gb-value { font-size: 22px; font-weight: 900; display: flex; align-items: baseline; gap: 4px; }
.gb-currency { font-size: 12px; color: var(--tk-cyan); }
.gb-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(0, 240, 255, 0.15); display: flex; align-items: center; justify-content: center; color: var(--tk-cyan); }
.chart-panel { overflow: hidden; }
.chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.live-indicator { display: flex; align-items: center; gap: 6px; }
.dot-pulse { width: 6px; height: 6px; background: #10b981; border-radius: 50%; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }
.live-text { font-size: 11px; font-weight: 800; color: #e2e8f0; text-transform: uppercase; letter-spacing: 1px; }
.live-badge { background: rgba(255,255,255,0.1); padding: 3px 8px; border-radius: 100px; font-size: 9px; font-weight: 800; display: flex; align-items: center; gap: 4px; }
.price-display { text-align: center; margin-bottom: 16px; }
.current-price { font-size: 38px; font-weight: 900; line-height: 1; margin-bottom: 6px; font-family: 'Oswald', sans-serif; transition: color 0.3s; text-shadow: 0 0 10px rgba(255,255,255,0.2);}
.price-change { font-size: 12px; font-weight: 800; display: flex; justify-content: center; align-items: center; gap: 4px; }
.price-up { color: var(--tk-cyan); text-shadow: 0 0 8px rgba(0, 240, 255, 0.5); } .price-down { color: var(--tk-red); text-shadow: 0 0 8px rgba(217, 0, 255, 0.5); }
.canvas-wrapper { width: 100%; height: 100px; position: relative; border-radius: 10px; overflow: hidden; background: rgba(0,0,0,0.5); }
#liveChart { position: absolute; inset: 0; width: 100%; height: 100%; }
.bet-input-container { background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; display: flex; align-items: center; padding: 4px 12px; margin-bottom: 12px; }
.bet-prefix { color: var(--tk-gray); font-weight: 800; font-size: 14px; }
.bet-input { width: 100%; background: transparent; color: #fff; font-size: 20px; font-weight: 900; padding: 10px 8px; outline: none; border: none; text-align: center; font-family: 'Oswald', sans-serif; }
.bet-clear { color: var(--tk-gray); padding: 6px; cursor: pointer; }
.chip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 20px; }
.bet-chip { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 10px; padding: 10px 0; text-align: center; font-weight: 800; font-size: 12px; transition: all 0.2s; }
.bet-chip.active { background: rgba(0,240,255,0.15); color: var(--tk-cyan); border-color: var(--tk-cyan); box-shadow: 0 0 10px rgba(0,240,255,0.3); transform: translateY(-2px); }
.chip-all { background: rgba(217,0,255,0.1); border-color: rgba(217,0,255,0.3); color: #f0abfc; }
.chip-all.active { background: var(--tk-red); border-color: #f5d0fe; box-shadow: 0 0 15px rgba(217,0,255,0.5); color: white; }
.action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-trade { border-radius: 16px; padding: 16px 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: none; position: relative; overflow: hidden; }
.btn-trade::after { content:''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%); pointer-events: none; }
.btn-call { background: linear-gradient(135deg, var(--tk-cyan) 0%, #00b4d8 100%); box-shadow: 0 8px 15px -4px rgba(0, 240, 255, 0.4); }
.btn-put { background: linear-gradient(135deg, var(--tk-red) 0%, #9d00ff 100%); box-shadow: 0 8px 15px -4px rgba(217, 0, 255, 0.4); }
.btn-call .trade-icon, .btn-call .trade-txt { color: #000; text-shadow: none; filter: none; }
.trade-icon { color: white; margin-bottom: 6px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); width: 26px; height: 26px; }
.trade-txt { color: white; font-weight: 900; font-size: 16px; letter-spacing: 1px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.countdown-mask { position: absolute; inset: 0; background: rgba(8, 3, 16, 0.9); backdrop-filter: blur(8px); z-index: 30; border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.countdown-mask.show { opacity: 1; pointer-events: auto; }
.cd-label { color: var(--tk-cyan); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.cd-timer { font-size: 50px; font-weight: 900; color: white; font-family: 'Oswald'; text-shadow: 0 0 20px rgba(0, 240, 255, 0.8); line-height: 1; margin-bottom: 16px; }
.cd-info { background: rgba(255,255,255,0.1); padding: 6px 16px; border-radius: 100px; font-size: 12px; font-weight: 700; color: white; border: 1px solid rgba(255,255,255,0.1);}
.game-result-modal { position: fixed; inset: 0; z-index: 110000; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.game-result-modal.show { opacity: 1; pointer-events: auto; }
.gr-box { width: 85%; max-width: 320px; border-radius: 28px; padding: 32px 20px; text-align: center; transform: scale(0.8) translateY(20px); transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; overflow: hidden; }
.game-result-modal.show .gr-box { transform: scale(1) translateY(0); }
.gr-win { background: linear-gradient(180deg, rgba(0,240,255,0.15) 0%, var(--tk-dark) 100%); border: 1px solid rgba(0,240,255,0.5); box-shadow: 0 0 50px rgba(0,240,255,0.2); }
.gr-lose { background: linear-gradient(180deg, rgba(217,0,255,0.15) 0%, var(--tk-dark) 100%); border: 1px solid rgba(217,0,255,0.5); box-shadow: 0 0 50px rgba(217,0,255,0.2); }
.gr-icon-wrapper { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px auto; position: relative; }
.gr-win .gr-icon-wrapper { background: rgba(0,240,255,0.2); border: 2px solid rgba(0,240,255,0.4); color: var(--tk-cyan); }
.gr-lose .gr-icon-wrapper { background: rgba(217,0,255,0.2); border: 2px solid rgba(217,0,255,0.4); color: var(--tk-red); }
.gr-icon-wrapper i { position: relative; z-index: 10; width: 32px; height: 32px; }
.gr-icon-glow { position: absolute; inset: 0; border-radius: 50%; filter: blur(12px); animation: pulse 2s infinite; }
.gr-win .gr-icon-glow { background: rgba(0,240,255,0.5); } .gr-lose .gr-icon-glow { background: rgba(217,0,255,0.5); }
.gr-title { font-size: 24px; font-weight: 900; color: white; margin-bottom: 4px; }
.gr-subtitle { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; margin-bottom: 20px; }
.gr-detail-box { background: rgba(0,0,0,0.4); border-radius: 14px; padding: 14px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.05); }
.gr-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.gr-row:last-child { margin-bottom: 0; }
.gr-label { font-size: 11px; color: var(--tk-gray); font-weight: 700; text-transform: uppercase; }
.gr-val { font-size: 13px; font-weight: 900; color: white; display: flex; align-items: center; gap: 4px; }
.gr-amount { font-size: 36px; font-weight: 900; font-family: 'Oswald'; margin-bottom: 20px; line-height: 1; }
.gr-win .gr-amount { color: var(--tk-cyan); text-shadow: 0 0 15px rgba(0, 240, 255, 0.4); }
.gr-lose .gr-amount { color: var(--tk-red); text-shadow: 0 0 15px rgba(217, 0, 255, 0.4); }
.btn-gr-close { width: 100%; padding: 14px; border-radius: 14px; font-size: 14px; font-weight: 900; text-transform: uppercase; border: none; }
.gr-win .btn-gr-close { background: var(--tk-cyan); color: #000; box-shadow: 0 8px 15px -4px rgba(0, 240, 255, 0.4); }
.gr-lose .btn-gr-close { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); }
.history-sheet { position: fixed; inset: 0; z-index: 100000; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(4px); display: flex; flex-direction: column; justify-content: flex-end; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.history-sheet.show { opacity: 1; pointer-events: auto; }
.hs-content { background: var(--tk-dark); height: 75dvh; border-radius: 28px 28px 0 0; padding: 20px; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28); display: flex; flex-direction: column; border-top: 1px solid rgba(217,0,255,0.3); box-shadow: 0 -10px 30px rgba(0,0,0,0.8);}
.history-sheet.show .hs-content { transform: translateY(0); }
.hs-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.hs-title { font-size: 18px; font-weight: 900; color: white; }
.hs-list { flex: 1; overflow-y: auto; padding-right: 2px; }
.hi-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 14px; margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; }
.hi-left .hi-time { font-size: 11px; color: var(--tk-gray); font-weight: 600; margin-bottom: 4px; display: block; }
.hi-left .hi-bet { font-size: 14px; font-weight: 900; color: white; }
.hi-right { text-align: right; }
.hi-right .hi-profit { font-size: 15px; font-weight: 900; font-family: 'Oswald'; margin-bottom: 2px; }
.hi-right .hi-status { font-size: 9px; font-weight: 800; text-transform: uppercase; padding: 2px 6px; border-radius: 100px; display: inline-block; }
.hi-win .hi-profit { color: var(--tk-cyan); } .hi-win .hi-status { background: rgba(0, 240, 255, 0.1); color: var(--tk-cyan); border: 1px solid rgba(0, 240, 255, 0.3); }
.hi-lose .hi-profit { color: var(--tk-red); } .hi-lose .hi-status { background: rgba(217, 0, 255, 0.1); color: var(--tk-red); border: 1px solid rgba(217, 0, 255, 0.3); }
#page-canhan { background-color: var(--tk-black); color: #fff; }
.profile-header { position: sticky; top: 0; z-index: 40; background: rgba(8, 3, 16, 0.9); backdrop-filter: blur(10px); padding: 30px 12px 10px 12px; display: flex; align-items: center; justify-content: space-between; }
.ph-badge { background: var(--purple-gradient); color: #fff; font-size: 10px; font-weight: 900; padding: 3px 6px; border-radius: 100px; letter-spacing: 1px; box-shadow: var(--zv-glow); border: none; }
.ph-name { font-size: 15px; font-weight: 900; margin-left: 6px; }
.profile-info-card { background: var(--tk-dark); margin: 10px 12px 16px 12px; border-radius: 24px; padding: 14px; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.pi-avatar { width: 56px; height: 56px; border-radius: 50%; padding: 2px; background: var(--purple-gradient); box-shadow: var(--zv-glow); }
.pi-avatar img { width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--tk-dark); object-fit: cover; background: #1a1a1a; }
.pi-details h2 { font-size: 16px; font-weight: 900; color: #fff; margin-bottom: 4px; letter-spacing: -0.5px; }
.pi-tag { background: rgba(0,240,255,0.1); color: var(--tk-cyan); font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 6px; display: inline-flex; align-items: center; gap: 4px; border: 1px solid rgba(0,240,255,0.3); }
.stats-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(217,0,255,0.2); margin: 0 12px 16px 12px; border-radius: 24px; padding: 16px; color: white; position: relative; overflow: hidden; }
.stats-card::after { content:''; position:absolute; top:-40px; right:-40px; width:120px; height:120px; background:var(--tk-red); border-radius:50%; filter:blur(40px); opacity: 0.2; pointer-events:none; }
.stats-card::before { content:''; position:absolute; bottom:-40px; left:-40px; width:120px; height:120px; background:var(--tk-cyan); border-radius:50%; filter:blur(40px); opacity: 0.1; pointer-events:none; }
.sc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px; position: relative; z-index: 2; }
.sc-title { font-size: 14px; font-weight: 800; }
.sc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sc-main { grid-column: span 2; margin-bottom: 6px; }
.sc-label { font-size: 10px; font-weight: 800; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.sc-val-large { font-size: 26px; font-weight: 900; line-height: 1; display: flex; align-items: baseline; gap: 4px; font-family: 'Oswald'; }
.sc-currency { font-size: 14px; color: var(--tk-cyan); }
.sc-sub { padding-right: 8px; }
.sc-sub:first-child { border-right: 1px solid rgba(255,255,255,0.1); }
.sc-val-small { font-size: 14px; font-weight: 800; font-family: 'Oswald'; }
.promo-banner { margin: 0 12px 16px 12px; background: var(--purple-gradient); border-radius: 14px; padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; box-shadow: var(--zv-glow); cursor: pointer; }
.pb-left { display: flex; align-items: center; gap: 10px; }
.pb-icon { color: #fff; width: 18px; height: 18px; }
.pb-text { font-size: 12px; font-weight: 800; color: #fff; }
.tools-section { background: var(--tk-dark); margin: 0 12px 20px 12px; border-radius: 24px; padding: 16px; border: 1px solid rgba(255,255,255,0.05); }
.ts-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.ts-title { font-size: 15px; font-weight: 900; color: #fff; }
.ts-view-all { font-size: 11px; font-weight: 700; color: var(--tk-gray); display: flex; align-items: center; }
.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 8px; }
.tool-item { display: flex; flex-direction: column; align-items: center; text-align: center; cursor: pointer; }
.tool-icon-box { width: 42px; height: 42px; background: rgba(255,255,255,0.05); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; color: var(--tk-gray); transition: all 0.2s; position: relative; border: 1px solid rgba(255,255,255,0.05); }
.tool-item:active .tool-icon-box { transform: scale(0.9); background: rgba(255,255,255,0.1); }
.tool-icon-box i { width: 20px; height: 20px; }
.tool-icon-box.primary { color: var(--tk-cyan); background: rgba(0,240,255,0.05); border-color: rgba(0,240,255,0.3); box-shadow: 0 0 10px rgba(0,240,255,0.2); }
.tool-label { font-size: 10px; font-weight: 700; color: var(--tk-gray); line-height: 1.2; }
.tool-item .tool-label.primary-text { color: var(--tk-cyan); font-weight: 800; }
.tool-badge { position: absolute; top: -2px; right: -2px; width: 10px; height: 10px; background: #ef4444; border-radius: 50%; border: 2px solid var(--tk-dark); }
.full-screen-modal { position: fixed; inset: 0; z-index: 100000; background: var(--tk-black); transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); overflow-y: auto; height: 100dvh; display: flex; flex-direction: column; color: #fff; }
.full-screen-modal.show { transform: translateX(0); }
.fsm-header { position: sticky; top: 0; z-index: 50; background: rgba(8,3,16,0.95); backdrop-filter: blur(10px); padding: 40px 16px 12px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.05); }
.fsm-btn-back { padding: 6px; margin-left: -6px; border-radius: 50%; color: #fff; }
.fsm-title { font-size: 17px; font-weight: 900; color: #fff; }
.fsm-content { padding: 20px 16px; flex: 1; }
.popup-modal { position: fixed; inset: 0; z-index: 110000; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.popup-modal.show { opacity: 1; pointer-events: auto; }
.pm-content { background: var(--tk-dark); border: 1px solid rgba(217,0,255,0.3); width: 100%; max-width: 320px; border-radius: 28px; padding: 28px 20px; transform: scale(0.9) translateY(10px); transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 20px rgba(217,0,255,0.1); position: relative;}
.popup-modal.show .pm-content { transform: scale(1) translateY(0); }
.pm-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px auto; }
.pm-icon.blue { background: rgba(0,240,255,0.1); color: var(--tk-cyan); } .pm-icon.green { background: rgba(16,185,129,0.1); color: #10b981; } .pm-icon.red { background: rgba(225,29,72,0.1); color: #f43f5e; }
.pm-title { font-size: 18px; font-weight: 900; color: #fff; text-align: center; margin-bottom: 20px; }
.input-group-form { margin-bottom: 14px; }
.label-form { display: block; font-size: 10px; font-weight: 800; color: var(--tk-gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; margin-left: 4px; }
.input-form { width: 100%; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 14px; font-size: 14px; font-weight: 600; color: #fff; outline: none; transition: all 0.2s; appearance: none; }
.input-form:focus { border-color: var(--tk-red); background: rgba(217,0,255,0.05); box-shadow: 0 0 0 4px rgba(217,0,255,0.1); }
.input-form.highlight { font-family: 'Oswald'; font-size: 18px; color: var(--tk-cyan); }
.pm-actions { display: flex; gap: 10px; margin-top: 24px; }
.pm-btn { flex: 1; padding: 14px; border-radius: 14px; font-size: 13px; font-weight: 800; border: none; }
.pm-btn-cancel { background: rgba(255,255,255,0.1); color: #fff; }
.pm-btn-submit { background: var(--purple-gradient); color: #fff; box-shadow: var(--zv-glow); }
.pm-btn-danger { background: #f43f5e; color: #fff; box-shadow: 0 8px 15px -4px rgba(244, 63, 94, 0.4); }
.wallet-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(0,240,255,0.3); border-radius: 24px; padding: 20px; color: white; box-shadow: 0 0 20px rgba(0,240,255,0.1); position: relative; overflow: hidden; margin-bottom: 24px; }
.wallet-card::before { content:''; position:absolute; top:-25px; right:-25px; width:100px; height:100px; background:var(--tk-cyan); border-radius:50%; filter:blur(40px); opacity: 0.2;}
.wc-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.7); margin-bottom: 6px; display: flex; justify-content: space-between; }
.wc-balance { font-size: 32px; font-weight: 900; font-family: 'Oswald'; margin-bottom: 20px; line-height: 1; display: flex; align-items: baseline; gap: 4px; }
.wc-actions { display: flex; gap: 10px; }
.btn-wallet { flex: 1; padding: 12px; border-radius: 12px; font-weight: 900; font-size: 13px; display: flex; justify-content: center; align-items: center; gap: 6px; border: none; }
.btn-deposit { background: var(--tk-cyan); color: #000; box-shadow: 0 0 15px rgba(0,240,255,0.4); }
.btn-withdraw { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(5px); }
.tx-section-title { font-size: 15px; font-weight: 900; color: #fff; margin-bottom: 14px; }
.tx-list { display: flex; flex-direction: column; gap: 10px; }
.tx-item { background: var(--tk-dark); border-radius: 16px; padding: 14px; display: flex; justify-content: space-between; align-items: center; border: 1px solid rgba(255,255,255,0.05); }
.tx-left { display: flex; align-items: center; gap: 10px; }
.tx-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.tx-deposit .tx-icon { background: rgba(0,240,255,0.1); color: var(--tk-cyan); } .tx-withdraw .tx-icon { background: rgba(217,0,255,0.1); color: var(--tk-red); }
.tx-name { font-size: 13px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.tx-date { font-size: 10px; font-weight: 600; color: var(--tk-gray); }
.tx-right { text-align: right; }
.tx-amount { font-size: 14px; font-weight: 900; font-family: 'Oswald'; margin-bottom: 2px; }
.tx-deposit .tx-amount { color: var(--tk-cyan); } .tx-withdraw .tx-amount { color: #fff; }
.tx-status { font-size: 9px; font-weight: 800; text-transform: uppercase; }
.status-pending { color: #f59e0b; } .status-approved { color: #10b981; } .status-rejected { color: #f43f5e; }
.empty-state { background: var(--tk-dark); border-radius: 20px; padding: 30px 16px; text-align: center; border: 1px dashed rgba(255,255,255,0.1); }
.empty-icon { color: var(--tk-gray); margin-bottom: 12px; display: flex; justify-content: center; }
.empty-text { font-size: 13px; font-weight: 600; color: var(--tk-gray); }
.bank-card { background: var(--tk-dark); border-radius: 16px; padding: 16px; display: flex; align-items: center; gap: 14px; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 10px; }
.bank-logo { width: 40px; height: 40px; border-radius: 10px; background: rgba(0,240,255,0.1); display: flex; align-items: center; justify-content: center; padding: 4px; border: 1px solid rgba(0,240,255,0.2); }
.bank-logo i { color: var(--tk-cyan); width: 20px; height: 20px; }
.bank-info h4 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 2px; line-height: 1.2; }
.bank-info p { font-size: 12px; font-weight: 700; color: var(--tk-gray); font-family: monospace; letter-spacing: 1px; }
.btn-add-bank { width: 100%; border: 2px dashed var(--tk-cyan); background: rgba(0,240,255,0.05); color: var(--tk-cyan); padding: 16px; border-radius: 16px; font-size: 13px; font-weight: 800; display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 16px; }
.bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; height: 80px; background: rgba(8, 3, 16, 0.95); backdrop-filter: blur(20px); border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-around; align-items: flex-start; padding-top: 10px; z-index: 80000; }
.nav-tab { display: flex; flex-direction: column; align-items: center; color: var(--tk-gray); width: 20%; transition: all 0.3s; }
.nav-tab.active { color: var(--tk-cyan); transform: scale(1.05); filter: drop-shadow(0 0 8px rgba(0,240,255,0.5)); }
.nav-tab.active.profile { color: var(--tk-red); filter: drop-shadow(0 0 8px rgba(217,0,255,0.5)); }
.nav-icon { margin-bottom: 2px; width: 22px; height: 22px; }
.nav-label { font-size: 9px; font-weight: 700; }
.nav-add-btn { position: relative; width: 44px; height: 34px; margin-top: -4px; }
.nav-add-bg { position: absolute; inset: 0; background: var(--purple-gradient); border-radius: 12px; box-shadow: var(--zv-glow); }
.nav-add-inner { position: absolute; inset: 2px; background: var(--tk-black); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; }