﻿:root {
    --bg: #0B0F14;
    --card: #121821;
    --border: #1C2532;
    --primary: #11E9A1;
    --text: #FFFFFF;
    --muted: #94A3B8;
}

.panel-body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
}

.panel-layout {
    display: flex;
    min-height: 100vh;
}

/*.sidebar {
    width: 260px;
    background: #080C10;
    border-right: 1px solid var(--border);
    padding: 24px;
}*/
.sidebar {
    width: 260px;
    background: linear-gradient(125deg, #1C2532, transparent);
    border-right: 1px solid var(--border);
    padding: 24px;
}
.sidebar-logo img {
    width: 160px;
    margin-bottom: 32px;
}

.sidebar nav a {
    display: block;
    padding: 13px 16px;
    margin-bottom: 8px;
    color: var(--muted);
    text-decoration: none;
    border-radius: 12px;
}

    .sidebar nav a:hover {
        background: rgba(17,233,161,0.1);
        color: var(--primary);
    }

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .sidebar-nav .nav-item {
        display: flex;
        align-items: center;
        padding: 13px 16px;
        color: var(--muted);
        text-decoration: none;
        border-radius: 12px;
        transition: 0.2s ease;
    }

        .sidebar-nav .nav-item:hover {
            background: rgba(17,233,161,0.08);
            color: var(--primary);
        }

        .sidebar-nav .nav-item.active {
            background: rgba(17,233,161,0.14);
            color: var(--primary);
            border: 1px solid rgba(17,233,161,0.25);
        }
.logout-btn {
    margin-top: 30px;
    width: 100%;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: transparent;
    color: var(--muted);
}

    .logout-btn:hover {
        color: var(--primary);
        border-color: var(--primary);
    }

.panel-main {
    flex: 1;
}

.topbar {
    height: 76px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 32px;
    background: #0B0F14;
}

    .topbar h4 {
        margin: 0;
        font-weight: 800;
    }

.content {
    padding: 32px;
}

.panel-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
}
/*DashboardPanel*/
.dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dashboard-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(17,233,161,0.16), transparent 35%), #121821;
}

    .dashboard-hero h2 {
        font-weight: 900;
        margin-bottom: 8px;
    }

    .dashboard-hero p {
        color: var(--muted);
        margin: 0;
    }

.total-assets {
    text-align: right;
}

    .total-assets span,
    .wallet-card span,
    .card-label {
        color: var(--muted);
        font-size: 14px;
    }

    .total-assets strong {
        display: block;
        font-size: 34px;
        color: var(--primary);
        margin-top: 8px;
    }

.wallet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.wallet-card strong {
    display: block;
    font-size: 26px;
    margin-top: 10px;
    color: var(--text);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

    .info-grid h3 {
        margin-top: 10px;
        font-weight: 800;
    }

.progress-wrapper {
    width: 100%;
    height: 10px;
    background: #0B1118;
    border-radius: 999px;
    margin-top: 16px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: var(--primary);
    border-radius: 999px;
    transition: width 0.4s ease;
}

@media (max-width: 992px) {
    .wallet-grid,
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .total-assets {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .wallet-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/*Wallets*/
.page-header-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .page-header-card h2 {
        font-weight: 900;
        margin-bottom: 8px;
    }

    .page-header-card p,
    .wallet-card p {
        color: var(--muted);
        margin: 0;
    }

.panel-primary-btn {
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 12px;
    height: 46px;
    padding: 0 22px;
    font-weight: 800;
}

    .panel-primary-btn:hover {
        background: #18F5AC;
        color: #000;
    }

.wallet-page-grid {
    margin-top: 24px;
}

.wallet-main {
    background: radial-gradient(circle at top right, rgba(17,233,161,0.14), transparent 35%), var(--card);
}

.wallet-invest {
    background: radial-gradient(circle at top right, rgba(17,233,161,0.11), transparent 35%), var(--card);
}

.wallet-profit {
    background: radial-gradient(circle at top right, rgba(17,233,161,0.09), transparent 35%), var(--card);
}

.wallet-referral {
    background: radial-gradient(circle at top right, rgba(17,233,161,0.07), transparent 35%), var(--card);
}

.rules-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 14px 24px;
    margin-top: 20px;
    color: var(--muted);
}

    .rules-grid div:nth-child(odd) {
        color: var(--primary);
        font-weight: 700;
    }

.transfer-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.transfer-modal {
    width: 100%;
    max-width: 480px;
}

.modal-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

    .modal-header-custom h4 {
        margin: 0;
        font-weight: 800;
    }

    .modal-header-custom button {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,0.06);
        color: var(--text);
        font-size: 22px;
        line-height: 1;
    }

.panel-input {
    height: 48px;
    background: #0B1118;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 12px;
}

    .panel-input:focus {
        background: #0B1118;
        color: var(--text);
        border-color: var(--primary);
        box-shadow: 0 0 0 0.2rem rgba(17,233,161,0.12);
    }

@media (max-width: 768px) {
    .page-header-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .rules-grid {
        grid-template-columns: 1fr;
    }
}
/*Contracts*/
/*.hidden {
    display: none !important;
}

.contract-details {
    display: grid;
    gap: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}*/
.contract-message {
    color: #94A3B8;
    font-size: 14px;
}

.contract-status {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}

    .contract-status.active {
        color: #11E9A1;
        background: rgba(17, 233, 161, 0.08);
        border: 1px solid rgba(17, 233, 161, 0.25);
    }

    .contract-status.inactive {
        color: #94A3B8;
        background: rgba(148, 163, 184, 0.08);
        border: 1px solid #1C2532;
    }

.contract-description {
    color: #94A3B8;
    margin-bottom: 22px;
}

.contract-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.contract-info-item {
    background: #0B0F14;
    border: 1px solid #1C2532;
    border-radius: 16px;
    padding: 16px;
}

    .contract-info-item span {
        display: block;
        color: #94A3B8;
        font-size: 13px;
        margin-bottom: 8px;
    }

    .contract-info-item strong {
        color: #FFFFFF;
        font-size: 16px;
    }

.contract-agreement-box {
    background: rgba(17, 233, 161, 0.04);
    border: 1px solid #1C2532;
    border-radius: 16px;
    padding: 18px;
    margin-top: 18px;
}

    .contract-agreement-box p {
        color: #94A3B8;
        line-height: 1.7;
        margin-bottom: 14px;
    }

.contract-agreement-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 14px;
}

    .contract-agreement-check input {
        margin-top: 3px;
        accent-color: #11E9A1;
    }

.panel-primary-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 992px) {
    .contract-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contract-grid {
        grid-template-columns: 1fr;
    }
}
/*Deposit*/
.deposit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

    .deposit-header h3 {
        color: #FFFFFF;
        margin-bottom: 6px;
    }

    .deposit-header p {
        color: #94A3B8;
        margin: 0;
        max-width: 620px;
        line-height: 1.7;
    }

.deposit-form {
    display: grid;
    gap: 18px;
    max-width: 560px;
}

.deposit-form-group {
    display: grid;
    gap: 8px;
}

    .deposit-form-group label {
        color: #FFFFFF;
        font-size: 14px;
        font-weight: 500;
    }

.deposit-message {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-size: 14px;
}

    .deposit-message.success {
        color: #11E9A1;
        background: rgba(17, 233, 161, 0.08);
        border: 1px solid rgba(17, 233, 161, 0.25);
    }

    .deposit-message.error {
        color: #ff6b6b;
        background: rgba(255, 107, 107, 0.08);
        border: 1px solid rgba(255, 107, 107, 0.25);
    }

.panel-primary-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.deposit-wallet-box {
    background: rgba(17, 233, 161, 0.04);
    border: 1px solid rgba(17, 233, 161, 0.25);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 22px;
}

.deposit-wallet-title {
    color: #FFFFFF;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
}

.deposit-wallet-content {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 14px;
    align-items: center;
    background: #0B0F14;
    border: 1px solid #1C2532;
    border-radius: 16px;
    padding: 16px;
}

    .deposit-wallet-content span {
        display: block;
        color: #94A3B8;
        font-size: 12px;
        margin-bottom: 5px;
    }

    .deposit-wallet-content strong {
        color: #11E9A1;
        font-size: 14px;
        word-break: break-all;
    }

.deposit-copy-btn {
    border: none;
    background: #11E9A1;
    color: #0B0F14;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 768px) {
    .deposit-wallet-content {
        grid-template-columns: 1fr;
    }
}
/*Withdrawal*/
.withdrawal-header {
    margin-bottom: 24px;
}

    .withdrawal-header h3 {
        color: #FFFFFF;
        font-size: 28px;
        margin-bottom: 10px;
    }

    .withdrawal-header p {
        color: #94A3B8;
        line-height: 1.8;
        margin: 0;
    }

.withdraw-balance-box {
    background: rgba(17, 233, 161, 0.05);
    border: 1px solid rgba(17, 233, 161, 0.25);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 22px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    max-width: 850px;
}

    .withdraw-balance-box span {
        color: #94A3B8;
        font-size: 14px;
    }

.withdraw-balance-right strong {
    color: #11E9A1;
    font-size: 20px;
    font-weight: 800;
}

.withdrawal-form {
    display: grid;
    gap: 18px;
    max-width: 850px;
}

.withdrawal-form-group {
    display: grid;
    gap: 8px;
}

    .withdrawal-form-group label {
        color: #FFFFFF;
        font-size: 14px;
        font-weight: 600;
    }

.withdrawal-message {
    color: #94A3B8;
    font-size: 14px;
}

.withdrawal-table-wrapper {
    overflow-x: auto;
    width: 100%;
}

.withdrawal-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

    .withdrawal-table th {
        color: #94A3B8;
        font-size: 13px;
        font-weight: 500;
        padding: 14px 12px;
        border-bottom: 1px solid #1C2532;
        white-space: nowrap;
    }

    .withdrawal-table td {
        color: #FFFFFF;
        padding: 16px 12px;
        border-bottom: 1px solid #1C2532;
        font-size: 14px;
        vertical-align: middle;
    }

.withdraw-wallet-address {
    max-width: 420px;
    word-break: break-all;
    color: #CBD5E1;
}

.withdraw-network {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    color: #11E9A1;
    background: rgba(17, 233, 161, 0.08);
    border: 1px solid rgba(17, 233, 161, 0.25);
    font-size: 12px;
    font-weight: 700;
}

.withdraw-amount {
    color: #11E9A1;
    font-weight: 800;
    white-space: nowrap;
}

.withdraw-cancel-btn {
    border: none;
    background: rgba(255, 107, 107, 0.12);
    color: #ff6b6b;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

    .withdraw-cancel-btn:hover {
        background: rgba(255, 107, 107, 0.22);
    }
/*Profit*/
.profits-page {
    display: grid;
    gap: 24px;
}

.profits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.profit-summary-card {
    display: grid;
    gap: 8px;
}

    .profit-summary-card span {
        color: #94A3B8;
        font-size: 14px;
    }

    .profit-summary-card strong {
        color: #FFFFFF;
        font-size: 26px;
        font-weight: 700;
    }

.profits-header {
    margin-bottom: 20px;
}

    .profits-header h3 {
        color: #FFFFFF;
        margin-bottom: 6px;
    }

    .profits-header p {
        color: #94A3B8;
        margin: 0;
    }

.profits-message {
    color: #94A3B8;
    font-size: 14px;
}

.profits-table-wrapper {
    overflow-x: auto;
}

.profits-table {
    width: 100%;
    border-collapse: collapse;
}

    .profits-table th {
        color: #94A3B8;
        font-size: 13px;
        font-weight: 500;
        padding: 14px 12px;
        border-bottom: 1px solid #1C2532;
    }

    .profits-table td {
        color: #FFFFFF;
        padding: 16px 12px;
        border-bottom: 1px solid #1C2532;
        font-size: 14px;
    }

.profit-type {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

    .profit-type.investment {
        color: #11E9A1;
        background: rgba(17, 233, 161, 0.08);
        border: 1px solid rgba(17, 233, 161, 0.25);
    }

    .profit-type.referral {
        color: #94A3B8;
        background: rgba(148, 163, 184, 0.08);
        border: 1px solid #1C2532;
    }

@media (max-width: 992px) {
    .profits-grid {
        grid-template-columns: 1fr;
    }
}
/*Referral*/
.referral-page {
    display: grid;
    gap: 24px;
}

.referral-header {
    margin-bottom: 20px;
}

    .referral-header h3,
    .referral-section-header h3 {
        color: #FFFFFF;
        margin-bottom: 6px;
    }

    .referral-header p,
    .referral-section-header p {
        color: #94A3B8;
        margin: 0;
        line-height: 1.7;
    }

.referral-message {
    color: #94A3B8;
    font-size: 14px;
}

.referral-code-box {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    background: rgba(17, 233, 161, 0.04);
    border: 1px solid #1C2532;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
}

    .referral-code-box span {
        display: block;
        color: #94A3B8;
        font-size: 13px;
        margin-bottom: 6px;
    }

    .referral-code-box strong {
        color: #11E9A1;
        font-size: 22px;
        letter-spacing: 1px;
    }

.referral-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 18px;
}

.referral-summary-item,
.referral-percent-box > div {
    background: #0B0F14;
    border: 1px solid #1C2532;
    border-radius: 16px;
    padding: 16px;
}

    .referral-summary-item span,
    .referral-percent-box span {
        display: block;
        color: #94A3B8;
        font-size: 13px;
        margin-bottom: 8px;
    }

    .referral-summary-item strong,
    .referral-percent-box strong {
        color: #FFFFFF;
        font-size: 18px;
    }

.referral-percent-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.referral-section-header {
    margin-bottom: 18px;
}

.referral-table-wrapper {
    overflow-x: auto;
}

.referral-table {
    width: 100%;
    border-collapse: collapse;
}

    .referral-table th {
        color: #94A3B8;
        font-size: 13px;
        font-weight: 500;
        padding: 14px 12px;
        border-bottom: 1px solid #1C2532;
    }

    .referral-table td {
        color: #FFFFFF;
        padding: 16px 12px;
        border-bottom: 1px solid #1C2532;
        font-size: 14px;
    }

.referral-bonus-type {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    color: #11E9A1;
    background: rgba(17, 233, 161, 0.08);
    border: 1px solid rgba(17, 233, 161, 0.25);
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .referral-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .referral-percent-box {
        grid-template-columns: 1fr;
    }

    .referral-code-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .referral-summary-grid {
        grid-template-columns: 1fr;
    }
}
/*Rank*/
.rank-page {
    display: grid;
    gap: 24px;
}

.rank-header,
.rank-section-header {
    margin-bottom: 20px;
}

    .rank-header h3,
    .rank-section-header h3 {
        color: #FFFFFF;
        margin-bottom: 6px;
    }

    .rank-header p,
    .rank-section-header p {
        color: #94A3B8;
        margin: 0;
        line-height: 1.7;
    }

.rank-message {
    color: #94A3B8;
    font-size: 14px;
}

.rank-current-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 20px;
}

    .rank-current-box > div,
    .rank-benefit-item {
        background: #0B0F14;
        border: 1px solid #1C2532;
        border-radius: 16px;
        padding: 18px;
    }

        .rank-current-box span,
        .rank-benefit-item span,
        .rank-progress-info span,
        .rank-progress-footer span {
            display: block;
            color: #94A3B8;
            font-size: 13px;
            margin-bottom: 8px;
        }

    .rank-current-box strong {
        color: #11E9A1;
        font-size: 26px;
    }

.rank-progress-box {
    background: rgba(17, 233, 161, 0.04);
    border: 1px solid #1C2532;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 20px;
}

.rank-progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

    .rank-progress-info strong {
        color: #FFFFFF;
    }

.rank-progress-track {
    height: 10px;
    background: #0B0F14;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid #1C2532;
}

.rank-progress-bar {
    height: 100%;
    background: #11E9A1;
    border-radius: 999px;
}

.rank-progress-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.rank-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.rank-benefit-item strong {
    color: #FFFFFF;
    font-size: 18px;
}

.rank-table-wrapper {
    overflow-x: auto;
}

.rank-table {
    width: 100%;
    border-collapse: collapse;
}

    .rank-table th {
        color: #94A3B8;
        font-size: 13px;
        font-weight: 500;
        padding: 14px 12px;
        border-bottom: 1px solid #1C2532;
    }

    .rank-table td {
        color: #FFFFFF;
        padding: 16px 12px;
        border-bottom: 1px solid #1C2532;
        font-size: 14px;
    }

.current-rank-row {
    background: rgba(17, 233, 161, 0.05);
}

    .current-rank-row td:first-child {
        color: #11E9A1;
        font-weight: 700;
    }

@media (max-width: 992px) {
    .rank-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rank-current-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .rank-benefits-grid {
        grid-template-columns: 1fr;
    }
}
/*Reports*/
.reports-page {
    display: grid;
    gap: 24px;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.report-summary-card {
    display: grid;
    gap: 8px;
}

    .report-summary-card span {
        color: #94A3B8;
        font-size: 14px;
    }

    .report-summary-card strong {
        color: #FFFFFF;
        font-size: 24px;
        font-weight: 700;
    }

.reports-header {
    margin-bottom: 20px;
}

    .reports-header h3 {
        color: #FFFFFF;
        margin-bottom: 6px;
    }

    .reports-header p {
        color: #94A3B8;
        margin: 0;
        line-height: 1.7;
    }

.reports-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.report-tab {
    border: 1px solid #1C2532;
    background: #0B0F14;
    color: #94A3B8;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s ease;
}

    .report-tab:hover,
    .report-tab.active {
        color: #11E9A1;
        border-color: rgba(17, 233, 161, 0.45);
        background: rgba(17, 233, 161, 0.08);
    }

.reports-message {
    color: #94A3B8;
    font-size: 14px;
}

.reports-table-wrapper {
    overflow-x: auto;
}

.reports-table {
    width: 100%;
    border-collapse: collapse;
}

    .reports-table th {
        color: #94A3B8;
        font-size: 13px;
        font-weight: 500;
        padding: 14px 12px;
        border-bottom: 1px solid #1C2532;
    }

    .reports-table td {
        color: #FFFFFF;
        padding: 16px 12px;
        border-bottom: 1px solid #1C2532;
        font-size: 14px;
    }

.report-status {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

    .report-status.approved,
    .report-status.success {
        color: #11E9A1;
        background: rgba(17, 233, 161, 0.08);
        border: 1px solid rgba(17, 233, 161, 0.25);
    }

    .report-status.pending {
        color: #facc15;
        background: rgba(250, 204, 21, 0.08);
        border: 1px solid rgba(250, 204, 21, 0.25);
    }

    .report-status.rejected {
        color: #ff6b6b;
        background: rgba(255, 107, 107, 0.08);
        border: 1px solid rgba(255, 107, 107, 0.25);
    }

    .report-status.neutral {
        color: #94A3B8;
        background: rgba(148, 163, 184, 0.08);
        border: 1px solid #1C2532;
    }

@media (max-width: 992px) {
    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .reports-grid {
        grid-template-columns: 1fr;
    }
}
/*Tickets*/
.tickets-page {
    display: grid;
    gap: 24px;
}

.tickets-header {
    margin-bottom: 20px;
}

    .tickets-header h3 {
        color: #FFFFFF;
        margin-bottom: 6px;
    }

    .tickets-header p {
        color: #94A3B8;
        margin: 0;
        line-height: 1.7;
    }

.ticket-form,
.ticket-reply-form {
    display: grid;
    gap: 16px;
}

.ticket-form {
    max-width: 680px;
}

.ticket-form-group {
    display: grid;
    gap: 8px;
}

    .ticket-form-group label {
        color: #FFFFFF;
        font-size: 14px;
        font-weight: 500;
    }

.ticket-textarea,
.ticket-reply-input {
    min-height: 120px;
    resize: vertical;
}

.ticket-message {
    color: #94A3B8;
    font-size: 14px;
}

    .ticket-message.success {
        color: #11E9A1;
        background: rgba(17, 233, 161, 0.08);
        border: 1px solid rgba(17, 233, 161, 0.25);
        padding: 14px 16px;
        border-radius: 14px;
        margin-bottom: 18px;
    }

    .ticket-message.error {
        color: #ff6b6b;
        background: rgba(255, 107, 107, 0.08);
        border: 1px solid rgba(255, 107, 107, 0.25);
        padding: 14px 16px;
        border-radius: 14px;
        margin-bottom: 18px;
    }

.tickets-list {
    display: grid;
    gap: 18px;
}

.ticket-item {
    background: #0B0F14;
    border: 1px solid #1C2532;
    border-radius: 18px;
    padding: 18px;
}

.ticket-item-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}

    .ticket-item-header h4 {
        color: #FFFFFF;
        margin: 0 0 6px 0;
        font-size: 18px;
    }

    .ticket-item-header span {
        color: #94A3B8;
        font-size: 13px;
    }

.ticket-status {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

    .ticket-status.open {
        color: #11E9A1;
        background: rgba(17, 233, 161, 0.08);
        border: 1px solid rgba(17, 233, 161, 0.25);
    }

    .ticket-status.closed {
        color: #94A3B8;
        background: rgba(148, 163, 184, 0.08);
        border: 1px solid #1C2532;
    }

.ticket-messages {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.ticket-message-item {
    border: 1px solid #1C2532;
    border-radius: 14px;
    padding: 14px;
    background: #121821;
}

.ticket-message-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

    .ticket-message-meta strong {
        color: #11E9A1;
        font-size: 13px;
    }

    .ticket-message-meta span {
        color: #94A3B8;
        font-size: 12px;
    }

.ticket-message-item p {
    color: #FFFFFF;
    margin: 0;
    line-height: 1.7;
    font-size: 14px;
}

@media (max-width: 576px) {
    .ticket-item-header,
    .ticket-message-meta {
        flex-direction: column;
    }
}
/*Profile*/
.profile-page {
    display: grid;
    gap: 24px;
}

.profile-header {
    margin-bottom: 20px;
}

    .profile-header h3 {
        color: #FFFFFF;
        margin-bottom: 6px;
    }

    .profile-header p {
        color: #94A3B8;
        margin: 0;
        line-height: 1.7;
    }

.profile-message {
    color: #94A3B8;
    font-size: 14px;
}

.profile-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.profile-info-item {
    background: #0B0F14;
    border: 1px solid #1C2532;
    border-radius: 16px;
    padding: 16px;
}

    .profile-info-item span {
        display: block;
        color: #94A3B8;
        font-size: 13px;
        margin-bottom: 8px;
    }

    .profile-info-item strong {
        color: #FFFFFF;
        font-size: 16px;
    }

.profile-status.pending {
    color: #facc15;
}

.profile-status.approved {
    color: #11E9A1;
}

.profile-status.rejected {
    color: #ff6b6b;
}

.profile-form {
    display: grid;
    gap: 18px;
    max-width: 680px;
}

.profile-form-group {
    display: grid;
    gap: 8px;
}

    .profile-form-group label {
        color: #FFFFFF;
        font-size: 14px;
        font-weight: 500;
    }

.profile-alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-size: 14px;
}

    .profile-alert.success {
        color: #11E9A1;
        background: rgba(17, 233, 161, 0.08);
        border: 1px solid rgba(17, 233, 161, 0.25);
    }

    .profile-alert.error {
        color: #ff6b6b;
        background: rgba(255, 107, 107, 0.08);
        border: 1px solid rgba(255, 107, 107, 0.25);
    }

@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}
/*Systemsettings*/
.admin-settings-form {
    display: grid;
    gap: 18px;
}

.admin-settings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.admin-setting-group {
    display: grid;
    gap: 8px;
}

    .admin-setting-group label {
        color: #FFFFFF;
        font-size: 14px;
        font-weight: 500;
    }

@media (max-width: 768px) {
    .admin-settings-grid {
        grid-template-columns: 1fr;
    }
}
/*transferMAX*/
.transfer-amount-wrapper {
    position: relative;
}

.transfer-amount-input {
    padding-right: 78px !important;
}

.transfer-max-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    border-radius: 999px;
    padding: 6px 12px;
    background: rgba(17, 233, 161, 0.12);
    color: #11E9A1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    cursor: pointer;
    transition: 0.2s ease;
}

    .transfer-max-btn:hover {
        background: rgba(17, 233, 161, 0.24);
    }