* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    min-height: 100vh;
    color: white;
    padding-top: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Page Header */
.page-header {
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.header-logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    margin-right: 20px;
}

.page-logo:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.page-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 14px;
    color: #94a3b8;
}

/* Page Navigation */
.page-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-nav-link {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.page-nav-link:hover {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}

.page-nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
}

.logout-btn {
    padding: 10px 24px;
    background: rgba(255, 59, 48, 0.2);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 10px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: rgba(255, 59, 48, 0.8);
    color: white;
    border-color: transparent;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.card h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.card-description {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Crypto Selector */
.crypto-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.crypto-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.crypto-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.crypto-option.selected {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.crypto-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.crypto-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.crypto-name {
    font-size: 18px;
    font-weight: 600;
}

.crypto-network {
    font-size: 13px;
    color: #94a3b8;
}

.crypto-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s;
}

.crypto-option.selected .crypto-check {
    opacity: 1;
    background: #10b981;
    border-color: #10b981;
}

/* Amount Input */
.amount-input-group {
    position: relative;
    margin-bottom: 15px;
}

.amount-input-group input {
    width: 100%;
    padding: 18px 80px 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.amount-input-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.currency-label {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-weight: 600;
}

.amount-note {
    color: #94a3b8;
    font-size: 13px;
}

/* Quick Amounts */
.quick-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.quick-amount-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-amount-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

/* Deposit Address */
.warning-text {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 25px;
}

.qr-code-section {
    text-align: center;
    margin-bottom: 25px;
}

.qr-code {
    display: inline-block;
    padding: 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
}

.qr-code img {
    display: block;
    width: 200px;
    height: 200px;
}

.qr-note {
    color: #94a3b8;
    font-size: 13px;
}

.address-box {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.address-box input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: white;
    font-size: 14px;
    font-family: monospace;
}

.copy-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Deposit Instructions */
.deposit-instructions {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
}

.deposit-instructions h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.deposit-instructions ul {
    list-style: none;
}

.deposit-instructions li {
    padding: 10px 0;
    font-size: 14px;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.deposit-instructions li:last-child {
    border-bottom: none;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.info-card h3 {
    font-size: 16px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: #94a3b8;
    font-size: 13px;
}

.info-value {
    font-weight: 600;
    font-size: 14px;
}

.info-card.support {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.info-card.support p {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 15px;
}

.support-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Transactions List */
.transactions-list {
    max-height: 200px;
    overflow-y: auto;
}

.no-transactions {
    text-align: center;
    color: #64748b;
    font-size: 14px;
    padding: 20px 0;
}

/* Withdraw Page Specific */
.balance-card {
    background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
}

.balance-info {
    text-align: center;
    padding: 20px 0;
}

.balance-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.balance-amount {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 15px;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-note {
    margin-top: 8px;
    font-size: 12px;
    color: #94a3b8;
}

.amount-details {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: #cbd5e1;
}

.detail-row.total {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    padding-top: 15px;
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.max-btn {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 10px 20px;
    border-radius: 10px;
    color: #60a5fa;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.max-btn:hover {
    background: rgba(59, 130, 246, 0.3);
}

.verification-group {
    display: flex;
    gap: 10px;
}

.send-code-btn {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 14px 20px;
    border-radius: 12px;
    color: #60a5fa;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.send-code-btn:hover {
    background: rgba(59, 130, 246, 0.3);
}

.security-note {
    text-align: center;
    margin-top: 20px;
    color: #94a3b8;
    font-size: 14px;
}

.info-card.warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.info-card.warning ul {
    list-style: none;
}

.info-card.warning li {
    padding: 8px 0;
    font-size: 13px;
    color: #fbbf24;
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.info-card.warning li:last-child {
    border-bottom: none;
}

/* Team Page Specific */
.team-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.team-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 36px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 12px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #60a5fa;
}

.stat-label {
    font-size: 13px;
    color: #94a3b8;
}

.referral-link-box {
    display: flex;
    gap: 10px;
}

.referral-link-box input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: white;
    font-size: 14px;
}

.referral-code-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.code-label {
    color: #94a3b8;
    font-size: 14px;
}

.code-value {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #60a5fa;
    font-family: monospace;
}

.copy-btn-small {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    color: #60a5fa;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn-small:hover {
    background: rgba(59, 130, 246, 0.3);
}

.level-filters {
    display: flex;
    gap: 8px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.filter-btn.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: #3b82f6;
    color: white;
}

.team-tree {
    min-height: 200px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.empty-state p {
    color: #94a3b8;
}

.members-table {
    overflow-x: auto;
}

.members-table table {
    width: 100%;
    border-collapse: collapse;
}

.members-table th {
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
}

.members-table td {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.members-table tr.no-data td {
    text-align: center;
    color: #64748b;
    padding: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 12px;
}

.benefit-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.benefit-content p {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 5px;
}

.benefit-req {
    font-size: 12px;
    color: #60a5fa;
}

.commission-list {
    list-style: none;
}

.commission-list li {
    padding: 12px 0;
    font-size: 14px;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.commission-list li:last-child {
    border-bottom: none;
}

.info-card.highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(16, 185, 129, 0.15));
    border-color: rgba(59, 130, 246, 0.3);
}

.info-card.highlight ul {
    list-style: none;
}

.info-card.highlight li {
    padding: 8px 0;
    font-size: 14px;
    color: #cbd5e1;
}

.social-share {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    padding: 12px;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.share-btn.telegram {
    background: #0088cc;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* About Page Specific */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-card {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1)) !important;
}

.hero-logo {
    margin-bottom: 30px;
    display: inline-block;
}

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero-tagline {
    font-size: 18px;
    color: #94a3b8;
    font-style: italic;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.how-it-works {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    opacity: 0.3;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #60a5fa;
}

.step-card p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
}

.levels-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.levels-table th {
    text-align: left;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
}

.levels-table td {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.levels-table tr.highlight-row {
    background: rgba(59, 130, 246, 0.05);
}

.why-choose {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.reason-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid #10b981;
}

.reason-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #60a5fa;
}

.reason-item p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

.stats-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(16, 185, 129, 0.15)) !important;
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.stat-box h3 {
    font-size: 36px;
    color: #60a5fa;
    margin-bottom: 10px;
}

.stat-box p {
    color: #94a3b8;
    font-size: 14px;
}

.cta-card {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1)) !important;
}

.cta-text {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.cta-btn.secondary {
    background: rgba(59, 130, 246, 0.2);
    border: 2px solid #3b82f6;
    color: #60a5fa;
}

.cta-btn.secondary:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: translateY(-3px);
}

.contact-card {
    background: rgba(59, 130, 246, 0.1) !important;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.contact-label {
    color: #94a3b8;
    font-size: 14px;
}

.contact-value {
    color: #60a5fa;
    font-weight: 600;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 2;
    }

    .main-content {
        order: 1;
    }

    .header-top {
        flex-direction: column;
        align-items: stretch;
    }

    .header-logo-section {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .logout-btn {
        width: 100%;
    }

    .page-nav {
        gap: 6px;
    }

    .page-nav-link {
        padding: 6px 12px;
        font-size: 12px;
    }

    .how-it-works {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }

    .quick-amounts {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-stats-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-choose {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .platform-stats {
        grid-template-columns: 1fr;
    }
}

