/* User website styles */
:root { --primary: #3F51B5; --primary-light: #E8EAF6; --secondary: #ff9800; --success: #43A047; --danger: #D32F2F; --bg-color: #f0f2f5; --text-dark: #1d1b20; --white: #ffffff; --wallet-gradient: linear-gradient(135deg, #0d0d2b, #1a1a4e, #0d0d2b); --bkash-color: #E2136E; --rocket-color: #8C3494; --nagad-color: #F7941D; --bkash-dark: #b00e56; --rocket-dark: #6a2670; --nagad-dark: #c97612; --auth-bg-dark: #0a0a1a; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Lato', 'Hind Siliguri', sans-serif; -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; user-select: none; }
input, textarea, select { user-select: text; }
body { background-color: var(--bg-color); padding-bottom: 90px; overflow-x: hidden; min-height: 100vh; }
/* SPLASH SCREEN */ #app-splash { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, #0a0a1a 0%, #1a1a3e 50%, #0a0a1a 100%); z-index: 10000; display: flex; flex-direction: column; justify-content: center; align-items: center; color: white; transition: opacity 0.5s ease-out; overflow: hidden; }
.splash-logo-box { width: 130px; height: 130px; background: linear-gradient(135deg, #4a3f8a, #2a1a5a); border-radius: 30px; display: flex; align-items: center; justify-content: center; padding: 15px; margin-bottom: 25px; border: 2px solid rgba(255,215,0,0.2); box-shadow: 0 0 60px rgba(108,99,255,0.2); position: relative; }
.splash-logo-box::before { content: ''; position: absolute; inset: -3px; border-radius: 32px; padding: 2px; background: linear-gradient(135deg, #ffd700, #ff6b00, #ffd700); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.5; }
.splash-logo-box img { width: 100%; height: 100%; object-fit: contain; border-radius: 20px; }
.splash-app-name { font-size: 28px; font-weight: 800; letter-spacing: 2px; margin-bottom: 5px; text-align: center; background: linear-gradient(135deg, #ffd700, #ff8c00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; z-index: 2; }
.splash-version { font-size: 13px; color: #666; margin-bottom: 80px; z-index: 2; background: rgba(255,255,255,0.05); padding: 4px 16px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }
.splash-bottom-area { position: absolute; bottom: 60px; width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; z-index: 2; }
.splash-welcome { font-size: 13px; font-weight: 300; letter-spacing: 2px; margin-bottom: 12px; opacity: 0.6; color: #aaa; }
.splash-line { width: 120px; height: 2px; background: linear-gradient(90deg, transparent, #ffd700, transparent); border-radius: 2px; margin-bottom: 18px; animation: lineExpand 2s ease-in-out infinite alternate; }
.splash-dots-container { display: flex; gap: 8px; }
.splash-dot { width: 10px; height: 10px; background: #333; border-radius: 50%; animation: dotBounce 1.4s infinite ease-in-out both; }
.splash-dot:nth-child(1) { animation-delay: -0.32s; } .splash-dot:nth-child(2) { animation-delay: -0.16s; } .splash-dot:nth-child(3) { animation-delay: 0s; }
.particle { position: absolute; width: 3px; height: 3px; background: rgba(255, 215, 0, 0.3); border-radius: 50%; animation: floatUp linear infinite; bottom: -10px; z-index: 1; }
@keyframes floatUp { 0% { transform: translateY(0) scale(1); opacity: 0; } 20% { opacity: 0.8; } 100% { transform: translateY(-100vh) scale(0.3); opacity: 0; } }
@keyframes lineExpand { 0% { width: 60px; opacity: 0.3; } 100% { width: 160px; opacity: 1; } }
@keyframes dotBounce { 0%, 80%, 100% { transform: scale(0.4); opacity: 0.3; } 40% { transform: scale(1); opacity: 1; background: #ffd700; } }
/* GLOBAL LOADER */ #global-loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 9999; display: none; justify-content: center; align-items: center; backdrop-filter: blur(4px); } #global-loader.active { display: flex; }
.spinner { width: 50px; height: 50px; border: 4px solid rgba(255, 255, 255, 0.1); border-top: 4px solid #ffd700; border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
/* AUTH VIEW */ #auth-view { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--auth-bg-dark); z-index: 5000; display: none; flex-direction: column; overflow-y: auto; } #auth-view.active { display: flex; }
.auth-top-section { height: 35vh; width: 100%; background: linear-gradient(180deg, #0a0a1a, #1a1a3e); display: flex; flex-direction: column; justify-content: center; align-items: center; color: white; padding: 20px; text-align: center; }
.auth-title-large { font-size: 28px; font-weight: 800; margin-bottom: 5px; background: linear-gradient(135deg, #ffd700, #ff8c00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.auth-subtitle { font-size: 14px; color: #aaa; font-weight: 400; }
.auth-bottom-card { background-color: white; min-height: 65vh; width: 100%; border-top-left-radius: 30px; border-top-right-radius: 30px; padding: 30px 25px; display: flex; flex-direction: column; position: relative; }
.auth-card-title { font-size: 24px; font-weight: 800; text-align: center; color: #444; margin-bottom: 25px; }
.auth-input-group { margin-bottom: 15px; position: relative; }
.auth-input-field { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; outline: none; color: #333; } .auth-input-field:focus { border-color: #333; }
.auth-password-eye { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #777; cursor: pointer; }
.auth-checkbox-row { display: flex; align-items: center; gap: 10px; margin: 10px 0 20px; font-size: 12px; color: #555; }
.auth-checkbox-row input[type="checkbox"] { width: 16px; height: 16px; }
.auth-black-btn { width: 100%; background: linear-gradient(135deg, #1a1a2e, #2a1a4e); color: white; padding: 16px; border-radius: 30px; border: none; font-size: 16px; font-weight: 800; text-transform: uppercase; cursor: pointer; box-shadow: 0 4px 20px rgba(26,26,46,0.3); margin-bottom: 15px; transition: 0.3s; }
.auth-black-btn:active { transform: scale(0.96); }
.auth-footer-link { text-align: center; font-size: 13px; color: #888; margin-top: 10px; }
.auth-footer-link span { color: #0091EA; font-weight: 700; cursor: pointer; }
.auth-forget-link { text-align: right; font-size: 12px; color: #444; font-weight: 600; margin-top: -10px; margin-bottom: 20px; cursor: pointer; }
/* APP SECTIONS */ .app-section { display: none; background: var(--bg-color); min-height: 100vh; } .app-section.active { display: block; }
.sub-page .app-section { padding-top: 0; }
/* BACK NAV */ .back-nav { padding: 15px; color: #000; font-weight: 800; cursor: pointer; display: flex; align-items: center; gap: 10px; background: white; border-bottom: 1px solid #eee; font-size: 16px; width: 100%; position: sticky; top: 0; z-index: 100; }
.back-nav.dark-mode { background: #000000; color: white; border-bottom: 1px solid #333; }
/* SHOP - TOP-UP */ #tab-shop-view { background: white; padding: 20px; display: none; flex-direction: column; align-items: center; min-height: 100vh; } #tab-shop-view.active { display: flex; }
.shop-title { font-size: 24px; font-weight: 900; color: #333; margin-bottom: 20px; text-align: center; width: 100%; }
.shop-balance-card { background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); border-radius: 16px; padding: 20px; width: 100%; max-width: 400px; margin-bottom: 20px; color: white; text-align: center; border: 1px solid rgba(255,215,0,0.1); }
.shop-balance-label { font-size: 14px; opacity: 0.8; }
.shop-balance-amount { font-size: 32px; font-weight: 800; margin-top: 5px; color: #ffd700; }
.shop-balance-label-small { font-size: 12px; opacity: 0.6; margin-top: 5px; }
.shop-package-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; width: 100%; max-width: 400px; }
.shop-package-card { background: #f8f9fa; border-radius: 12px; padding: 16px; text-align: center; border: 1px solid #eee; transition: all 0.3s; cursor: pointer; }
.shop-package-card:active { transform: scale(0.96); }
.shop-package-icon { font-size: 30px; color: #4FC3F7; margin-bottom: 8px; }
.shop-package-name { font-weight: 800; font-size: 14px; color: #333; }
.shop-package-price { font-weight: 700; font-size: 16px; color: var(--primary); margin-top: 4px; }
.shop-package-btn { background: var(--primary); color: white; border: none; padding: 8px 20px; border-radius: 20px; font-size: 12px; font-weight: 700; cursor: pointer; margin-top: 10px; transition: 0.2s; }
.shop-package-btn:active { transform: scale(0.92); }
.shop-package-btn:disabled { background: #ccc; cursor: not-allowed; }
/* HOME */ .home-content-wrapper { padding: 15px; }
.hero-banner { border-radius: 0; overflow: hidden; background: #fff; margin-bottom: 0; position: relative; }
.slider-container { width: 100%; padding-bottom: 56.25%; position: relative; overflow: hidden; background: #1a1a2e; }
.slider-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); }
.slide { min-width: 100%; height: 100%; flex-shrink: 0; cursor: pointer; position: relative; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.6)); color: white; }
.slide-overlay h3 { font-size: 16px; font-weight: 800; }
.slide-overlay p { font-size: 12px; opacity: 0.8; }
.slider-dots { display: flex; justify-content: center; gap: 8px; padding: 12px 0; background: #fff; border-bottom: 1px solid #eee; position: relative; z-index: 10; }
.slider-dots .dot { width: 8px; height: 8px; background: #ddd; border-radius: 50%; transition: all 0.3s; cursor: pointer; }
.slider-dots .dot.active { background: var(--secondary); width: 24px; border-radius: 4px; }
/* MARQUEE - White Background, Black Text */ .marquee-container { background: #ffffff; padding: 12px 18px; border-radius: 14px; margin-bottom: 20px; overflow: hidden; position: relative; box-shadow: 0 2px 10px rgba(0,0,0,0.06); border: 1px solid #eee; display: flex; align-items: center; }
.marquee-container .notice-label { color: #333; font-weight: 900; font-size: 14px; white-space: nowrap; margin-right: 10px; flex-shrink: 0; }
#dynamic-notice { color: #222; font-weight: 600; font-size: 14px; display: inline-block; padding-left: 100%; animation: marqueeScroll 25s linear infinite; white-space: nowrap; }
@keyframes marqueeScroll { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }
.category-title { font-weight: 900; font-size: 18px; margin: 15px 0 20px; text-transform: uppercase; text-align: center; color: #333; position: relative; }
.category-title::after { content: ''; display: block; width: 50px; height: 3px; background: var(--secondary); margin: 8px auto 0; border-radius: 2px; }
.category-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0 5px; }
.cat-card-new { background: #EEEEEE; border-radius: 10px; overflow: hidden; cursor: pointer; border: 3px solid #546E7A; display: flex; flex-direction: column; transition: all 0.3s; }
.cat-card-new:active { transform: scale(0.96); }
.cat-card-img { width: 100%; height: 110px; object-fit: cover; background: white; border-bottom: 1px solid #ddd; }
.cat-card-info { padding: 10px; background: #EEEEEE; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.cat-card-title { font-weight: 900; font-size: 15px; color: #000; margin-bottom: 2px; text-transform: uppercase; line-height: 1.2; }
.cat-card-count { font-size: 12px; color: #777; font-weight: 600; }
/* PROFILE */ .profile-header-bg { background: linear-gradient(135deg, var(--primary), #42a5f5); padding: 40px 20px 30px; text-align: center; color: white; margin-bottom: 20px; border-radius: 0 0 20px 20px; }
.profile-avatar-box img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,0.8); }
.menu-list { background: white; border-radius: 8px; border: 1px solid #eee; }
.menu-item { padding: 15px; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid #eee; cursor: pointer; color: #333; font-weight: 600; }
.menu-item:last-child { border-bottom: none; }
.menu-item img { width: 20px; }
.menu-item .menu-icon { width: 24px; text-align: center; font-size: 18px; color: var(--primary); }
/* PROFILE RULES BUTTON */ .profile-rules-btn { background: linear-gradient(135deg, #1a1040, #2a1a60); border-radius: 12px; padding: 16px 20px; margin: 15px 0 10px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: 0.3s; border: 1px solid rgba(255,215,0,0.1); }
.profile-rules-btn:active { transform: scale(0.97); }
.profile-rules-btn .rules-left { display: flex; align-items: center; gap: 12px; color: white; }
.profile-rules-btn .rules-left i { font-size: 22px; color: #ffd700; }
.profile-rules-btn .rules-left span { font-weight: 700; font-size: 16px; }
.profile-rules-btn .rules-left small { font-size: 12px; opacity: 0.6; display: block; font-weight: 400; }
.profile-rules-btn i.fa-chevron-right { color: #666; }
/* RULES PAGE */ #rules-view { background: #f5f6fa; min-height: 100vh; }
.rules-page-header { background: linear-gradient(135deg, #1a1040, #2a1a60); padding: 30px 20px 20px; color: white; border-radius: 0 0 20px 20px; }
.rules-page-header h2 { font-size: 22px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.rules-page-header h2 i { color: #ffd700; }
.rules-page-header p { font-size: 13px; opacity: 0.7; margin-top: 5px; }
.rules-category-list { padding: 15px; display: flex; flex-direction: column; gap: 12px; }
.rules-category-item { background: white; border-radius: 12px; padding: 16px 18px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); cursor: pointer; transition: 0.3s; border: 1px solid #eee; }
.rules-category-item:active { transform: scale(0.97); }
.rules-category-item .rc-header { display: flex; align-items: center; gap: 14px; }
.rules-category-item .rc-header img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.rules-category-item .rc-header .rc-name { font-weight: 700; font-size: 15px; color: #333; flex: 1; }
.rules-category-item .rc-header .rc-arrow { color: #ccc; font-size: 14px; transition: transform 0.3s; }
.rules-category-item .rc-content { display: none; margin-top: 12px; padding-top: 12px; border-top: 1px solid #f0f0f0; }
.rules-category-item .rc-content.open { display: block; }
.rules-category-item .rc-content ul { list-style: none; padding: 0; }
.rules-category-item .rc-content ul li { padding: 6px 0 6px 20px; position: relative; color: #555; font-size: 14px; line-height: 1.6; border-bottom: 1px solid #f5f5f5; }
.rules-category-item .rc-content ul li::before { content: '▸'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.rules-category-item .rc-content ul li:last-child { border-bottom: none; }
/* MATCH TABS */ .match-tabs-container { display: flex; justify-content: space-between; background: white; padding: 10px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); position: sticky; top: 55px; z-index: 90; }
.m-tab { flex: 1; text-align: center; padding: 10px 0; font-weight: 600; font-size: 13px; color: #666; cursor: pointer; border-bottom: 3px solid transparent; text-transform: uppercase; }
.m-tab.active { color: var(--primary); font-weight: 900; border-bottom: 3px solid var(--primary); }
/* MATCH CARD */ .match-card { background: white; border-radius: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); margin-bottom: 18px; overflow: hidden; border: 1px solid #eee; transition: all 0.3s; }
.match-card.play-card { cursor: pointer; }
.match-card.play-card:active { transform: scale(0.98); }
.match-card.result-card { cursor: default; }
.match-card.result-card:active { transform: none; }
.mc-header { display: flex; padding: 14px 16px; gap: 14px; align-items: flex-start; background: #fafafa; border-bottom: 1px solid #f0f0f0; } .mc-thumb { width: 70px; height: 50px; border-radius: 8px; object-fit: cover; border: 1px solid #eee; flex-shrink: 0; }
.mc-header-info { flex: 1; min-width: 0; }
.mc-title-row { font-size: 15px; font-weight: 800; color: #333; margin-bottom: 3px; line-height: 1.2; }
.mc-date-row { font-size: 11px; color: #D32F2F; font-weight: 600; }
.mc-badge-row { display: flex; gap: 6px; margin-top: 4px; flex-wrap: wrap; }
.mc-badge { font-size: 9px; padding: 2px 10px; border-radius: 20px; font-weight: 700; text-transform: uppercase; background: #e8eaf6; color: #3F51B5; }
.mc-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; padding: 10px 10px 12px 10px; gap: 6px 0; background: #fff; border-bottom: 1px solid #f5f5f5; }
.mc-stat-box { display: flex; flex-direction: column; align-items: center; padding: 4px 0; }
.mc-stat-label { font-size: 8px; color: #999; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.mc-stat-value { font-size: 13px; font-weight: 900; color: #000; margin-top: 1px; }
.mc-join-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px 16px 16px; gap: 12px; }
.mc-progress-wrapper { flex: 1; min-width: 0; } .mc-prog-bar { height: 6px; background: #E0E0E0; border-radius: 3px; overflow: hidden; margin-bottom: 4px; } .mc-prog-fill { height: 100%; background: linear-gradient(90deg, #66BB6A, #43A047); border-radius: 3px; transition: width 0.5s ease; }
.mc-spots-info { display: flex; justify-content: space-between; font-size: 10px; color: #666; font-weight: 600; }
.btn-join-main { border: none; background: linear-gradient(135deg, #3F51B5, #5C6BC0); color: white; padding: 8px 24px; border-radius: 8px; font-size: 13px; font-weight: 800; cursor: pointer; flex-shrink: 0; transition: 0.2s; box-shadow: 0 2px 8px rgba(63,81,181,0.2); } .btn-join-main:active { transform: scale(0.94); } .btn-join-main.disabled { background: #ccc; color: #888; box-shadow: none; pointer-events: none; }
.mc-details-row { display: flex; justify-content: space-between; padding: 0 16px 16px 16px; gap: 10px; align-items: center; }
.btn-details { border: 1px solid #1565C0; color: #1565C0; background: white; padding: 7px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; display: flex; align-items: center; gap: 5px; cursor: pointer; flex: 1; justify-content: center; transition: 0.2s; }
.btn-details:active { transform: scale(0.94); }
.mc-footer-timer { background: #388E3C; color: white; text-align: center; padding: 10px; font-size: 13px; font-weight: 700; display: flex; justify-content: center; align-items: center; gap: 8px; }
/* WALLET - White Theme */ .wallet-redesign-container { background: #f0f2f5; min-height: 100vh; color: #333; padding-bottom: 50px; }
.wallet-gradient-card { background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); margin: 15px; border-radius: 20px; padding: 25px; position: relative; color: white; box-shadow: 0 10px 40px rgba(0,0,0,0.2); border: 1px solid rgba(255,215,0,0.08); overflow: hidden; }
.wallet-gradient-card::before { content: ''; position: absolute; top: -50%; right: -30%; width: 80%; height: 200%; background: radial-gradient(circle, rgba(255,215,0,0.03) 0%, transparent 70%); pointer-events: none; }
.wg-header { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 14px; margin-bottom: 25px; position: relative; z-index: 1; }
.wg-header i { color: #ffd700; font-size: 18px; } .wg-wallet-text { color: #ffd700; margin-left: 5px; font-weight: 900; } .wg-label { font-size: 12px; opacity: 0.7; font-weight: 400; color: #aaa; position: relative; z-index: 1; } .wg-balance { font-size: 36px; font-weight: 800; margin-top: 5px; letter-spacing: 1px; display: flex; align-items: center; gap: 5px; color: #ffd700; position: relative; z-index: 1; } .wg-footer { position: absolute; bottom: 15px; right: 20px; font-size: 10px; font-weight: 800; letter-spacing: 2px; opacity: 0.15; text-transform: uppercase; }
.wallet-stats-white-card { background: white; margin: 0 15px; border-radius: 16px; padding: 20px 10px; display: flex; justify-content: space-around; color: #333; box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.ws-item { text-align: center; flex: 1; } .ws-item:first-child { border-right: 1px solid #eee; } .ws-icon { font-size: 22px; margin-bottom: 6px; color: #333; } .ws-label { font-size: 10px; font-weight: 800; color: #5a3be2; text-transform: uppercase; margin-bottom: 4px; letter-spacing: 0.5px; } .ws-amount { font-size: 20px; font-weight: 900; color: #333; }
.wallet-action-row { display: flex; gap: 15px; padding: 20px 15px; } .wa-btn { flex: 1; padding: 15px; border-radius: 12px; border: none; color: white; font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.15); transition: 0.3s; } .wa-btn:active { transform: scale(0.96); } .wa-btn.add { background: linear-gradient(135deg, #5a4bda, #3f2b8a); } .wa-btn.withdraw { background: linear-gradient(135deg, #00c853, #009624); }
.wallet-section-title { padding: 10px 20px 0; font-size: 16px; font-weight: 800; color: #333; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.quick-action-card { background: white; margin: 0 15px 16px; border-radius: 14px; padding: 15px 18px; display: flex; align-items: center; justify-content: space-between; color: #333; border: 1px solid #eee; transition: 0.3s; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.quick-action-card:active { transform: scale(0.97); } .qa-info { display: flex; align-items: center; gap: 14px; } .qa-icon { width: 40px; height: 40px; background: #e8eaf6; color: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; } .qa-text div:first-child { font-weight: 700; font-size: 14px; color: #333; } .qa-text div:last-child { font-size: 11px; color: #999; margin-top: 2px; }
.learn-list { padding: 0 15px 30px; } .learn-item { background: white; border-radius: 14px; padding: 14px 18px; margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; color: #333; border: 1px solid #eee; cursor: pointer; transition: 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.learn-item:active { transform: scale(0.97); } .li-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-right: 14px; flex-shrink: 0; }
/* ADD MONEY */ .am-method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 15px 15px 0 15px; }
.am-card { background: white; border-radius: 8px; padding: 12px 5px; text-align: center; position: relative; box-shadow: 0 2px 5px rgba(0,0,0,0.05); border: 2px solid transparent; cursor: pointer; }
.am-card img { width: 35px; height: 35px; object-fit: contain; display: block; margin: 0 auto 5px; }
.am-card span { font-size: 12px; font-weight: 600; color: #555; }
.am-card.active { border-color: #9C27B0; }
.am-check { position: absolute; top: 5px; right: 5px; color: #9C27B0; font-size: 14px; display: none; } .am-card.active .am-check { display: block; }
.am-content-container { padding: 15px; }
.am-box { border-radius: 12px; padding: 20px; color: white; box-shadow: 0 4px 10px rgba(0,0,0,0.1); } .am-box.bkash { background-color: var(--bkash-color); } .am-box.rocket { background-color: var(--rocket-color); } .am-box.nagad { background-color: var(--nagad-color); }
.am-title { text-align: center; font-weight: 700; font-size: 16px; margin-bottom: 15px; }
.am-input { width: 100%; padding: 12px; border-radius: 5px; border: none; color: white; font-size: 14px; outline: none; margin-bottom: 15px; text-align: center; } .am-input::placeholder { color: rgba(255,255,255,0.7); }
.am-box.bkash .am-input { background: var(--bkash-dark); } .am-box.rocket .am-input { background: var(--rocket-dark); } .am-box.nagad .am-input { background: var(--nagad-dark); }
.am-list { list-style: none; font-size: 13px; line-height: 1.6; }
.am-list li { position: relative; padding-left: 15px; margin-bottom: 5px; }
.am-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; background: white; border-radius: 50%; }
.am-num-row { display: flex; align-items: center; gap: 10px; margin-top: 5px; font-weight: 800; color: #FFEB3B; font-size: 15px; flex-wrap: wrap; }
.am-copy-btn { background: rgba(255,255,255,0.2); color: white; border: none; border-radius: 4px; padding: 2px 8px; font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 4px; cursor: pointer; }
.am-verify-btn { width: 100%; padding: 14px; background: #E2136E; color: white; border: none; font-weight: 900; font-size: 18px; text-transform: uppercase; cursor: pointer; border-radius: 8px; margin-top: 15px; box-shadow: 0 4px 6px rgba(0,0,0,0.2); transition: background 0.3s; }
/* WITHDRAW */ .withdraw-new-container { background: #f5f5f5; min-height: 100vh; padding: 20px; } .withdraw-balance-card { background: white; border-radius: 12px; padding: 30px 20px; text-align: center; margin-bottom: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); } .wb-icon { font-size: 40px; color: #ffa000; margin-bottom: 10px; display: block; } .wb-icon img { width: 40px; } .wb-label { color: #777; font-weight: 700; font-size: 14px; margin-bottom: 5px; } .wb-amount { color: #1a237e; font-size: 28px; font-weight: 900; } .withdraw-section-box { background: white; border-radius: 12px; padding: 20px; margin-bottom: 20px; } .wsb-title { font-size: 14px; font-weight: 800; color: #333; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; } .method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; } .method-card { border: 1px solid #eee; border-radius: 8px; padding: 15px 5px; text-align: center; cursor: pointer; transition: all 0.2s; } .method-card img { width: 40px; height: 40px; object-fit: contain; display: block; margin: 0 auto 5px; } .method-card span { font-size: 11px; font-weight: 700; color: #555; } .method-card.active { border: 2px solid var(--primary); background: #e3f2fd; } .wd-input-group { display: flex; align-items: center; border-bottom: 1px solid #eee; padding: 10px 0; margin-bottom: 20px; } .wd-icon { color: #999; width: 30px; font-size: 18px; } .wd-input { border: none; outline: none; flex: 1; font-size: 16px; font-weight: 600; color: #333; background: transparent; } .min-notice { background: #fff3e0; color: #f57c00; padding: 10px; font-size: 12px; border-radius: 5px; display: flex; align-items: center; gap: 8px; font-weight: 700; margin-bottom: 20px; } .wd-submit-btn { background: #00c853; color: white; width: 100%; padding: 15px; border: none; border-radius: 8px; font-size: 16px; font-weight: 800; text-transform: uppercase; cursor: pointer; box-shadow: 0 4px 10px rgba(0,200,83,0.3); }
/* HISTORY */ .history-card { background: white; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); margin: 10px 15px; padding: 15px; display: flex; justify-content: space-between; align-items: center; border-left: 5px solid transparent; } .hc-left { display: flex; flex-direction: column; gap: 3px; } .hc-title { font-weight: 800; font-size: 14px; color: #333; text-transform: uppercase; } .hc-date { font-size: 11px; color: #888; } .hc-amount { font-size: 12px; font-weight: 800; color: #000; margin-top: 5px; } .hc-right { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; } .hc-tag { background: #111; color: white; padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 700; }
/* JOIN */ .join-card { background: white; margin: 15px; border-radius: 10px; padding: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.join-match-title { font-size: 18px; font-weight: 900; color: #333; margin-bottom: 5px; }
.join-meta { font-size: 13px; color: #666; margin-bottom: 15px; }
.join-info-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; font-weight: 700; color: #444; }
.join-warning { border: 1px dashed #ff9800; color: #ff9800; font-size: 13px; font-weight: 600; text-align: center; padding: 10px; border-radius: 5px; margin: 15px 0; }
.join-badge-container { text-align: center; margin-bottom: 20px; }
.join-badge { background: #ffc107; color: black; padding: 5px 20px; border-radius: 20px; font-weight: 800; font-size: 14px; display: inline-block; }
.join-input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-size: 14px; margin-bottom: 10px; outline: none; } .join-btn-full { position: fixed; bottom: 20px; left: 5%; width: 90%; background: #5E35B1; color: white; padding: 15px; border-radius: 30px; border: none; font-size: 18px; font-weight: 800; cursor: pointer; box-shadow: 0 4px 10px rgba(94, 53, 177, 0.4); z-index: 100; }
/* RULES */ .rules-container { background: #f0f4ff; margin: 10px 0 14px; padding: 12px 16px; border-radius: 8px; border: 1px solid #e0e8f0; }
.rules-container h4 { color: #d32f2f; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; font-size: 14px; }
.rules-container ul { list-style: none; padding: 0; }
.rules-container ul li { padding: 3px 0 3px 18px; position: relative; color: #444; font-size: 13px; line-height: 1.5; }
.rules-container ul li::before { content: '▸'; position: absolute; left: 0; color: var(--primary); }
/* LEADERBOARD - Only 20 Users */ .leaderboard-container { padding: 15px; }
.lb-header { text-align: center; padding: 25px; background: linear-gradient(135deg, #1a1040, #2a1a60); border-radius: 16px; margin-bottom: 20px; border: 1px solid rgba(255,215,0,0.08); }
.lb-header h2 { font-size: 24px; font-weight: 900; color: #ffd700; }
.lb-header p { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 4px; }
.lb-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: white; border-radius: 12px; margin-bottom: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: 0.3s; }
.lb-item:active { transform: scale(0.98); }
.lb-rank { font-size: 18px; font-weight: 900; min-width: 36px; text-align: center; color: #999; }
.lb-rank.top1 { color: #FFD700; font-size: 22px; } .lb-rank.top2 { color: #C0C0C0; font-size: 20px; } .lb-rank.top3 { color: #CD7F32; font-size: 20px; }
.lb-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #5C6BC0); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 16px; flex-shrink: 0; }
.lb-info { flex: 1; min-width: 0; }
.lb-name { font-weight: 700; font-size: 15px; color: #333; }
.lb-amount { font-weight: 900; font-size: 18px; color: var(--success); flex-shrink: 0; }
.lb-more { text-align: center; padding: 15px; color: #999; font-size: 13px; font-weight: 600; }
/* EDIT PROFILE */ .ep-container { padding: 20px; } .ep-avatar-section { text-align: center; margin-bottom: 25px; } .ep-avatar-ring { width: 100px; height: 100px; border-radius: 50%; border: 4px solid #42a5f5; padding: 5px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; } .ep-avatar-icon { font-size: 50px; color: #42a5f5; } .ep-username { font-size: 20px; font-weight: 800; color: #333; } .ep-email { font-size: 13px; color: #777; } .ep-card { background: white; border-radius: 12px; padding: 20px; margin-bottom: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } .ep-card-title { font-size: 16px; font-weight: 800; color: #333; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; } .ep-input-group { position: relative; margin-bottom: 15px; } .ep-input-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #333; font-size: 18px; } .ep-input { width: 100%; padding: 12px 12px 12px 45px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; outline: none; } .ep-input:disabled { background: #f5f5f5; } .ep-btn { width: 100%; padding: 15px; background: #263238; color: white; font-weight: 800; border: none; border-radius: 8px; cursor: pointer; }
/* DEVELOPER */ .dev-page { padding: 20px; background: #fff; min-height: 100vh; } .dev-card { background: #f8f9fa; border-radius: 12px; padding: 20px; } .dev-main-text { font-size: 18px; font-weight: 800; color: #333; margin-bottom: 10px; } .dev-desc { font-size: 14px; color: #555; line-height: 1.5; margin-bottom: 15px; } .dev-features { list-style: none; margin-bottom: 15px; } .dev-features li { font-size: 14px; font-weight: 600; color: #333; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; } .dev-price { font-size: 16px; font-weight: 800; color: #D32F2F; display: flex; align-items: center; gap: 5px; margin-top: 10px; } .dev-link { display: block; margin-top: 20px; color: var(--primary); font-weight: 800; text-decoration: underline; font-size: 14px; }
/* MODALS */ .modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 3000; display: none; align-items: center; justify-content: center; } .modal.active { display: flex; } .modal-box { background: white; width: 90%; max-width: 350px; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.3); } .popup-header-yellow { background: #FFD54F; padding: 15px; text-align: center; position: relative; } .popup-title { font-weight: 900; font-size: 18px; color: #000; text-transform: uppercase; } .popup-subtitle { font-size: 11px; color: #444; margin-top: 2px; } .popup-close-btn { position: absolute; top: -15px; left: 50%; transform: translateX(-50%) translateY(-50%); background: white; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #555; box-shadow: 0 2px 5px rgba(0,0,0,0.2); cursor: pointer; z-index: 5; } .popup-content { padding: 20px; background: white; text-align: center; } .prize-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 14px; color: #555; justify-content: flex-start; } .prize-icon { width: 16px; text-align: center; } .startup-modal-box { background: white; border-radius: 15px; padding: 25px; width: 85%; max-width: 320px; text-align: left; position: relative; } .startup-content { font-size: 14px; color: #333; line-height: 1.6; margin-bottom: 20px; } .startup-btn { background: #ff9800; color: white; font-weight: 800; font-size: 16px; width: 100%; padding: 12px; border: none; border-radius: 30px; cursor: pointer; } .warning-popup-icon { font-size: 40px; color: #FF5722; margin-bottom: 15px; } .warning-popup-btn { background: #FF5722; color: white; border: none; padding: 10px 25px; border-radius: 5px; font-weight: bold; margin-top: 15px; cursor: pointer; }
/* EMPTY */ .empty-msg { text-align: center; padding: 30px; color: #999; font-weight: 600; }
/* FAB TELEGRAM */ .fab-telegram { position: fixed; bottom: 80px; right: 20px; width: 50px; height: 50px; border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 999; cursor: pointer; background: var(--primary-light); padding: 5px; } .fab-telegram img { width: 100%; height: 100%; }
/* TAB BAR */ .tab-bar { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: white; display: flex; justify-content: space-around; align-items: center; box-shadow: 0 -2px 10px rgba(0,0,0,0.05); z-index: 1000; border-top: 1px solid #f0f0f0; } .tab-bar.hidden { display: none; } .tab-item { display: flex; flex-direction: column; align-items: center; width: 20%; color: #000; opacity: 1; cursor: pointer; } .tab-icon-box { display: flex; justify-content: center; align-items: center; margin-bottom: 2px; transition: all 0.2s ease; } .tab-item img { width: 24px; height: 24px; opacity: 1; filter: none; } .tab-item span { font-size: 10px; margin-top: 2px; font-weight: 600; color: #555; } .tab-item.active span { font-weight: 900; color: #000; } .tab-item.active .tab-icon-box { background-color: var(--primary-light); width: 60px; height: 32px; border-radius: 16px; }
/* MATCH DETAILS */ .md-info-card { background: white; padding: 20px; text-align: center; border-bottom: 1px solid #ddd; } .md-title { font-size: 18px; font-weight: 900; color: #333; margin-bottom: 5px; } .md-time { font-size: 14px; color: #666; margin-bottom: 10px; } .md-table-container { padding: 15px; background: white; margin-top: 10px; } .md-table-header { display: flex; justify-content: space-between; font-weight: 800; padding-bottom: 10px; border-bottom: 2px solid var(--primary); margin-bottom: 10px; } .md-p-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #eee; font-size: 13px; }
/* RESULT DETAILS - Read Only */ .rd-card { background: white; margin: 15px; border-radius: 5px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); pointer-events: none; }
.rd-card .rd-header-blue, .rd-card .rd-table-head, .rd-card .rd-row { pointer-events: none !important; }
.rd-title-box { padding: 15px; text-align: center; border-bottom: 1px solid #eee; } .rd-main-title { font-weight: 800; font-size: 16px; margin-bottom: 5px; text-transform: uppercase; } .rd-sub-title { font-size: 12px; color: #666; } .rd-stats-row { display: flex; justify-content: space-around; padding: 15px 0; text-align: center; } .rd-stat-item div:first-child { font-size: 11px; color: #888; font-weight: 700; margin-bottom: 5px; } .rd-stat-item div:last-child { font-size: 14px; font-weight: 900; color: #000; } .rd-header-blue { background: #3F51B5; color: white; text-align: center; font-weight: 800; font-size: 14px; padding: 8px; text-transform: uppercase; } .rd-table-head { display: flex; background: #000; color: white; padding: 8px 10px; font-size: 12px; font-weight: 700; } .rd-row { display: flex; padding: 10px; background: white; border-bottom: 1px solid #eee; font-size: 13px; align-items: center; } .col-hash { width: 10%; text-align: center; } .col-name { width: 50%; font-weight: 600; } .col-kill { width: 20%; text-align: center; } .col-win { width: 20%; text-align: right; }
/* UID MODAL */ .uid-modal-input { width: 100%; padding: 14px; border: 2px solid #e0e0e0; border-radius: 10px; font-size: 16px; text-align: center; outline: none; transition: 0.3s; }
.uid-modal-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(63,81,181,0.1); }

/* ===== SINGLE-LINE SCROLLING NOTICE FIX ===== */
.marquee-container {
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}
#dynamic-notice {
    display: inline-block;
    width: max-content;
    max-width: none;
    white-space: nowrap !important;
    overflow-wrap: normal;
    word-break: normal;
    line-height: 1.4;
    padding-left: 100%;
    animation: marqueeScroll 22s linear infinite;
    will-change: transform;
}
#dynamic-notice br { display: none; }
@media (prefers-reduced-motion: reduce) {
    #dynamic-notice { animation-duration: 40s; }
}
