body.dark-theme {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding-bottom: 70px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
}

.user-info { display: flex; align-items: center; gap: 10px; }
.logo-icon { background: #ff9800; color: #000; padding: 8px 12px; border-radius: 50%; font-size: 18px; }
.welcome-text { font-size: 12px; color: #aaa; }
.wallet-pill { background: #ff9800; color: #000; padding: 6px 14px; border-radius: 20px; font-weight: bold; cursor: pointer; }

.container { padding: 15px; }

/* Announcement Bar */
.announcement-bar {
    background: #1f1f1f;
    border: 1px solid #ff9800;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}
.cli-badge { background: #ff9800; color: #000; padding: 2px 8px; border-radius: 5px; font-size: 12px; font-weight: bold; }

/* Quick Nav Grid */
.quick-nav-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 15px; text-align: center; }
.quick-btn { background: #1a1a1a; padding: 10px 5px; border-radius: 10px; border: 1px solid #333; cursor: pointer; }
.q-icon.red-bg { background: #b71c1c; color: #fff; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 5px auto; }
.quick-btn span { font-size: 11px; color: #ccc; }

/* Help Banner */
.help-banner { background: #1a1a1a; border: 1px solid #ff9800; padding: 12px; border-radius: 10px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-weight: 500; }

.section-title-box h3 { margin: 0; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.section-title-box p { margin: 2px 0 10px 0; font-size: 12px; color: #888; }
.live-tag { background: #d32f2f; color: #fff; font-size: 9px; padding: 2px 6px; border-radius: 4px; }

/* Exclusive Grid */
.exclusive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.exc-card { background: #1a1a1a; border: 1px solid #333; padding: 15px; border-radius: 12px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: 0.2s; }
.exc-card:hover { border-color: #ff9800; }
.exc-icon { font-size: 24px; color: #ff9800; }
.exc-info h4 { margin: 0; font-size: 14px; }

/* Contests Status Grid */
.contests-status-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 15px; }
.contest-status-card { background: #1a1a1a; border: 1px solid #333; padding: 15px 10px; border-radius: 12px; text-align: center; cursor: pointer; }
.cs-icon { font-size: 20px; margin-bottom: 5px; }
.contest-status-card span { font-size: 12px; color: #ddd; }

/* Activity Ticker */
.activity-ticker { background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 10px; padding: 10px; display: flex; flex-direction: column; gap: 10px; }
.ticker-item { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.t-coin { background: #ff9800; color: #000; width: 25px; height: 25px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; }

/* Bottom Nav */
.bottom-nav { position: fixed; bottom: 0; left: 0; width: 100%; background: #181818; border-top: 1px solid #333; display: grid; grid-template-columns: repeat(5, 1fr); padding: 8px 0; z-index: 1000; }
.nav-item { display: flex; flex-direction: column; align-items: center; color: #888; font-size: 10px; cursor: pointer; }
.nav-item i { font-size: 16px; margin-bottom: 2px; }
.nav-item.active { color: #ff9800; }

/* Floating Support */
.floating-support { position: fixed; bottom: 75px; right: 15px; background: #d32f2f; color: #fff; width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.5); z-index: 999; }

/* Profile Menu Styles */
.profile-card-top { background: #1a1a1a; text-align: center; padding: 20px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #333; }
.profile-avatar { font-size: 40px; background: #333; width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px auto; border: 2px solid #ff9800; }
.kyc-badge { color: #4caf50; font-size: 12px; font-weight: bold; }
.profile-stats-box { display: grid; grid-template-columns: repeat(3, 1fr); background: #1a1a1a; padding: 12px; border-radius: 12px; text-align: center; margin-bottom: 15px; border: 1px solid #333; }
.profile-stats-box h4 { margin: 0; color: #ff9800; font-size: 16px; }
.profile-menu-list { display: flex; flex-direction: column; gap: 8px; }
.menu-item { background: #1a1a1a; padding: 12px 15px; border-radius: 10px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; border: 1px solid #2a2a2a; cursor: pointer; }
.menu-item i { color: #ff9800; margin-right: 10px; width: 20px; }
.logout-item { color: #ff5252; }
.logout-item i { color: #ff5252; }
.app-version { text-align: center; color: #666; font-size: 11px; margin-top: 15px; }

/* Wallet Styles */
.wallet-header-card { background: #1a1a1a; text-align: center; padding: 25px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #333; }
.big-coin-icon { font-size: 40px; margin-bottom: 5px; }
.wallet-breakdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 15px; }
.wb-box { background: #1a1a1a; padding: 12px; border-radius: 10px; text-align: center; border: 1px solid #333; font-size: 12px; }
.wallet-actions-grid { display: flex; flex-direction: column; gap: 10px; }
.wallet-action-btn { background: #ff9800; color: #000; border: none; padding: 12px; border-radius: 10px; font-weight: bold; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; }
/* Tournament Card ke andar ke bottom section ka design */
.card-progress-bar {
    background: #333;
    height: 6px;
    border-radius: 3px;
    width: 100%;
    margin: 10px 0;
    overflow: hidden;
}

.card-progress-fill {
    background: #2ecc71;
    height: 100%;
}

/* Join Button ko attractive banane ke liye */
.card-join-btn {
    background: linear-gradient(135deg, #ff9900, #ff5500);
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    border: none;
    font-size: 14px;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
}

.card-join-btn:active {
    transform: scale(0.98);
}
