* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #0f172a;
    color: #fff;
}

/* ===== AUTH PAGES LAYOUT ===== */
.container {
    display: flex;
    min-height: 100vh;
}

.left-panel {
    flex: 1;
    background: linear-gradient(135deg, #c2410c, #1e293b);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-panel.dark {
    background: linear-gradient(135deg, #1e293b, #c2410c);
}

.left-panel h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.left-panel p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.right-panel {
    flex: 1;
    background: #1e293b;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-panel h2 {
    margin-bottom: 25px;
    font-size: 26px;
}

/* ===== FORM STYLES ===== */
form {
    width: 100%;
}

input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 14px;
}

input:focus {
    box-shadow: 0 0 0 2px #c2410c;
}

button {
    width: 100%;
    padding: 14px;
    background: #c2410c;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #ea580c;
}

a {
    color: #f97316;
    text-decoration: none;
}

p {
    margin-top: 10px;
    font-size: 14px;
}

/* ===== HEADER BAR ===== */
.top-header {
    background: #1e293b;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #334155;
}

/* ===== FOOTER APP MENU ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1e293b;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid #334155;
}

.bottom-nav a {
    color: #cbd5e1;
    text-align: center;
    font-size: 12px;
}

.bottom-nav a.active {
    color: #f97316;
    font-weight: bold;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-panel {
        padding: 40px 20px;
        text-align: center;
    }

    .right-panel {
        padding: 40px 20px;
    }

    .left-panel h1 {
        font-size: 28px;
    }
}
.page-content {
    padding: 15px;
    padding-bottom: 80px;
}

.card {
    background: #1e293b;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.light-card {
    background: #f1f5f9;
    color: #111;
}

.banner-img {
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

.balance-title {
    font-size: 14px;
    opacity: 0.8;
}

.balance-row {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.balance-amount {
    font-size: 32px;
    font-weight: bold;
    margin-left: 8px;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.deposit { background: #2563eb; }
.withdraw { background: #16a34a; }

.section-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e2e8f0;
    padding: 12px;
    border-radius: 10px;
}

.divider {
    width: 1px;
    background: #94a3b8;
    height: 40px;
}

.small { font-size: 20px; color: gray; }
.big { font-size: 26px; font-weight: bold; }

.reward-box {
    background: #e2e8f0;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
    color: #1d4ed8;
}

.tutorial-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.thumb {
    width: 70px;
    border-radius: 8px;
}

.view-link {
    color: #2563eb;
    font-size: 14px;
}
.tutorial-link {
    color: #1d4ed8;
    font-weight: bold;
    text-decoration: none;
}

.bulletin-container {
    padding: 20px;
    text-align: center;
    background: white;
    color: black;
    min-height: 100vh;
}

.bulletin-container h2 {
    margin-top: 30px;
    font-size: 24px;
}

.bulletin-date {
    color: gray;
    margin: 10px 0 20px;
}

.bulletin-text {
    font-size: 18px;
    line-height: 1.6;
}

.back-btn {
    position: absolute;
    left: 15px;
    text-decoration: none;
    color: white;
    font-size: 18px;
}
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1e293b;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    border-top: 1px solid #334155;
    z-index: 1000;
}

.bottom-nav a {
    color: #cbd5e1;
    text-align: center;
    font-size: 12px;
    text-decoration: none;
}

.bottom-nav a.active {
    color: #f97316;
    font-weight: bold;
}
.stats-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.stats-grid div {
    flex: 1;
}
.big-number {
    font-size: 36px;
    font-weight: bold;
}

.stats-card {
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.stats-grid div {
    flex: 1;
}

.red { color: red; font-weight: bold; }
.mine-card {
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 16px;
    color: white;
    position: relative;
}

.mine-purple { background: #c084fc; }
.mine-green { background: #22c55e; }
.mine-blue { background: #3b82f6; }

.mine-title {
    font-size: 14px;
    opacity: 0.9;
}

.mine-amount {
    font-size: 28px;
    font-weight: bold;
    margin: 8px 0;
}

.mine-sub {
    font-size: 14px;
    opacity: 0.9;
}

.mine-btn {
    position: absolute;
    right: 15px;
    top: 18px;
    background: rgba(255,255,255,0.9);
    color: black;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 13px;
    text-decoration: none;
    font-weight: bold;
}

.mine-row {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.mine-row div {
    text-align: center;
    flex: 1;
}

.mine-label {
    font-size: 13px;
    opacity: 0.9;
}

.mine-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mine-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.func-section {
    margin-top: 18px;
}

.func-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #111;
}

.func-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.func-item {
    text-align: center;
    font-size: 13px;
    color: #111;
    text-decoration: none;
}

.func-item img {
    width: 42px;
    height: 42px;
    margin-bottom: 6px;
}
.add-btn {
    display:block;
    background:#4f46e5;
    color:white;
    text-align:center;
    padding:12px;
    border-radius:12px;
    margin:15px;
    text-decoration:none;
    font-weight:bold;
}
.wallet-card {
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:white;
    margin:12px;
    padding:14px;
    border-radius:14px;
}

.wallet-logo { width:90px; }

.buy-btn {
    background:#d1d5db;
    border:none;
    padding:5px 10px;
    border-radius:6px;
}

.sell-btn {
    background:#16a34a;
    color:white;
    padding:5px 10px;
    border-radius:6px;
    text-decoration:none;
    margin-left:6px;
}
.upi-form {
    padding:20px;
}

.upi-form input {
    width:100%;
    padding:12px;
    border-radius:8px;
    border:1px solid #ccc;
    margin-bottom:12px;
}

.upi-form button {
    width:100%;
    padding:12px;
    background:#4f46e5;
    color:white;
    border:none;
    border-radius:10px;
    font-weight:bold;
}
.add-btn {
    display:block;
    background:#4f46e5;
    color:white;
    text-align:center;
    padding:14px;
    border-radius:14px;
    margin:15px;
    text-decoration:none;
    font-weight:bold;
    font-size:16px;
}

.status-row {
    display:flex;
    justify-content:space-between;
    padding:0 15px 10px;
    align-items:center;
}

.status-desc {
    color:#f97316;
    font-weight:bold;
}

.fast-withdraw {
    background:#22c55e;
    color:white;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:bold;
}

.tool-container {
    padding:10px;
}

.tool-card {
    background:#1d4ed8;
    color:white;
    border-radius:18px;
    padding:15px;
    margin-bottom:15px;
}

.tool-left {
    display:flex;
    align-items:center;
    gap:12px;
}

.tool-logo {
    width:45px;
    height:45px;
    border-radius:50%;
    background:white;
    padding:5px;
}

.tool-right {
    text-align:right;
    margin-top:-40px;
}

.tool-status {
    display:block;
    margin-bottom:6px;
}

.operate-btn {
    background:black;
    color:white;
    border:none;
    padding:6px 14px;
    border-radius:10px;
}

.tool-bottom {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:12px;
}

.start-selling {
    margin-left:10px;
    flex:1;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}
.switch input { display:none; }

.slider {
    position:absolute;
    cursor:pointer;
    top:0; left:0; right:0; bottom:0;
    background:#ccc;
    border-radius:22px;
}

.slider:before {
    position:absolute;
    content:"";
    height:18px; width:18px;
    left:2px; bottom:2px;
    background:white;
    border-radius:50%;
    transition:0.3s;
}

input:checked + .slider {
    background:#22c55e;
}

input:checked + .slider:before {
    transform: translateX(18px);
}

.status-btn {
    background:#16a34a;
    color:white;
    border:none;
    padding:6px 12px;
    border-radius:10px;
}
.wallet-container {
    padding: 10px;
}

.wallet-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    margin: 12px;
    padding: 14px;
    border-radius: 16px;
}

.wallet-logo {
    width: 90px;
}

.buy-btn {
    background: #d1d5db;
    border: none;
    padding: 5px 12px;
    border-radius: 6px;
    margin-right: 6px;
}

.sell-btn {
    background: #16a34a;
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    text-decoration: none;
}
.wallet-card-link { text-decoration:none; color:black; }

.wallet-container { padding: 10px; }

.wallet-card {
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:white;
    margin:12px;
    padding:16px;
    border-radius:16px;
}

.wallet-logo { width:90px; }
.upi-form { padding:20px; }

.upi-form input {
    width:100%;
    padding:12px;
    border-radius:8px;
    border:1px solid #ccc;
    margin-bottom:12px;
}

.upi-form button {
    width:100%;
    padding:12px;
    background:#4f46e5;
    color:white;
    border:none;
    border-radius:10px;
    font-weight:bold;
}
.delete-btn {
    display:block;
    margin-top:6px;
    background:#dc2626;
    color:white;
    padding:5px 10px;
    border-radius:8px;
    text-decoration:none;
    font-size:12px;
}
.withdraw-box {
    background:white;
    margin:20px;
    padding:18px;
    border-radius:16px;
}

.withdraw-box input {
    width:100%;
    padding:12px;
    margin:10px 0;
    border-radius:8px;
    border:1px solid #ccc;
}

.withdraw-box button {
    width:100%;
    padding:12px;
    background:#16a34a;
    color:white;
    border:none;
    border-radius:10px;
    font-weight:bold;
}
.history-container { padding:15px; }

.history-card {
    background:white;
    padding:14px;
    border-radius:12px;
    margin-bottom:12px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.history-right { text-align:right; }

.status {
    padding:4px 10px;
    border-radius:8px;
    font-size:12px;
    color:white;
}

.status.pending { background:orange; }
.status.completed { background:green; }
.status.rejected { background:red; }
.deposit-filter {
    display:flex;
    gap:6px;
    padding:10px;
}

/* FILTER */
.deposit-filter {
    display:flex;
    gap:8px;
    padding:12px;
}

.deposit-filter input {
    width:70px;
    padding:6px;
    border-radius:6px;
    border:1px solid #ccc;
}

.deposit-filter button {
    padding:6px 12px;
    border:none;
    border-radius:6px;
    background:#4f46e5;
    color:white;
}

/* DEPOSIT LIST ITEM */
.deposit-item {
    padding:14px 16px;
    border-bottom:1px solid #eee;
    background:#fff;
}

/* TOP ROW */
.di-top {
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.di-left {
    display:flex;
    align-items:center;
    gap:10px;
}

.di-icon {
    width:38px;
    height:38px;
    background:#2d6cdf;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:18px;
}

.di-amount {
    font-size:20px;
    font-weight:700;
    color:#000;
}/* Amount */
.di-amount {
    font-size:20px;
    font-weight:700;
    color:#000 !important;
}

/* Reward text */
.di-reward {
    font-size:14px;
    color:#000 !important;
}

/* Reward extra (5%+6) */
.di-reward span {
    color:#000 !important;
}

/* InCoin text */
.di-incoin {
    color:#000 !important;
    font-weight:500;
}

/* Remove any global light text */
.deposit-item,
.deposit-item * {
    color:#000;
}


.di-buy {
    background:#2d6cdf;
    color:#fff;
    padding:6px 16px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

/* BOTTOM ROW */
.di-bottom {
    display:flex;
    justify-content:space-between;
    margin-top:6px;
    font-size:14px;
}

.di-reward span {
    color:#666;
    font-size:12px;
    margin-left:4px;
}

.di-incoin {
    font-weight:500;
}
/* Amount */
.di-amount {
    font-size:20px;
    font-weight:700;
    color:#000 !important;
}

/* Reward text */
.di-reward {
    font-size:14px;
    color:#000 !important;
}

/* Reward extra (5%+6) */
.di-reward span {
    color:#000 !important;
}

/* InCoin text */
.di-incoin {
    color:#000 !important;
    font-weight:500;
}

/* Remove any global light text */
.deposit-item,
.deposit-item * {
    color:#000;
}
.pay-box {
    padding:20px;
    text-align:center;
}

.qr {
    width:220px;
    margin:10px auto;
    display:block;
}

.upi-id {
    margin:10px 0;
    font-size:14px;
}

.pay-amount {
    font-size:16px;
    font-weight:600;
    margin-bottom:10px;
}

.pay-btn {
    display:block;
    background:#16a34a;
    color:white;
    padding:10px;
    border-radius:10px;
    margin:10px 0;
    text-decoration:none;
}

.app-buttons {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    justify-content:center;
}

.app-btn {
    background:#2563eb;
    color:white;
    padding:8px 12px;
    border-radius:8px;
    text-decoration:none;
    font-size:13px;
}

.utr-form {
    margin-top:15px;
}

.utr-form input {
    width:100%;
    padding:8px;
    border-radius:8px;
    border:1px solid #ccc;
    margin-bottom:8px;
}

.utr-form button {
    background:#4f46e5;
    color:white;
    padding:10px;
    border:none;
    border-radius:8px;
    width:100%;
}
/* HEADER BACK BUTTON */
.back-btn {
    position:absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);
    color:white;
    font-size:20px;
    text-decoration:none;
}

/* SERVICE PAGE */
.service-card {
    background:#ffffff;
    margin:12px;
    padding:14px;
    border-radius:12px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.service-left {
    display:flex;
    align-items:center;
    gap:12px;
}

.telegram-icon {
    width:42px;
    height:42px;
    background:#27a7e7;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:20px;
}

.service-title {
    font-weight:600;
    font-size:16px;
}

.service-status {
    color:#888;
    font-size:13px;
    margin-top:2px;
}

.contact-btn {
    background:#4f46e5;
    color:white;
    padding:8px 16px;
    border-radius:10px;
    text-decoration:none;
    font-weight:500;
}
.service-title {
    font-weight:600;
    font-size:16px;
    color:#000000;   /* FORCE BLACK */
}

.service-status {
    color:#000000;   /* Online text also black like screenshot */
    font-size:13px;
    margin-top:2px;
}
/* ===== FIX: Transactions page text invisible issue ===== */

/* Table data text black */
.table-box td,
.table-box td span,
.table-box td div {
    color: #111827 !important;
}

/* Status text visible */
.table-box td .status-pending,
.table-box td .status-approved,
.table-box td .status-rejected {
    font-weight: 600;
}

/* Deposit Bonus + Amount color */
.table-box td .green { color: #16a34a !important; }
.table-box td .red { color: #dc2626 !important; }
.table-box td .blue { color: #2563eb !important; }

/* Date text fix */
.table-box td:last-child {
    color: #111827 !important;
}
