/* ========================================
   CRYPTOVAULT - COMPLETE DASHBOARD STYLES
   For: Login, Dashboard, Deposit, Withdraw, Admin
======================================== */

/* ========================================
   BASE STYLES & VARIABLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0f0c29;
    --secondary-dark: #302b63;
    --tertiary-dark: #24243e;
    --accent-cyan: #00d4ff;
    --accent-purple: #a445ed;
    --accent-green: #26de81;
    --accent-red: #ff4757;
    --accent-orange: #ffa502;
    --accent-blue: #3742fa;
    --text-white: #ffffff;
    --text-gray: #b8b8b8;
    --text-dark: #1a1a1a;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --card-bg: rgba(48, 43, 99, 0.3);
    --card-border: rgba(0, 212, 255, 0.1);
    --input-bg: rgba(255, 255, 255, 0.05);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    z-index: -1;
}

.animated-bg::before,
.animated-bg::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
    animation: ripple 12s ease-in-out infinite;
}

.animated-bg::after {
    background: radial-gradient(circle, rgba(164, 69, 237, 0.1) 0%, transparent 50%);
    animation: ripple 15s ease-in-out infinite reverse;
    animation-delay: -7.5s;
}

@keyframes ripple {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translate(30%, -20%) scale(1.2);
        opacity: 0.6;
    }
    66% {
        transform: translate(-20%, 30%) scale(0.9);
        opacity: 0.7;
    }
}

/* ========================================
   LOGIN/SIGNUP PAGE STYLES
======================================== */
.auth-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.auth-box {
    background: rgba(48, 43, 99, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 3rem;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-section i {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.logo-section h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-section p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.auth-form h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-cyan);
    font-size: 1.1rem;
}

.input-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--input-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.08);
}

.toggle-password {
    position: absolute;
    right: 1rem;
    left: auto;
    cursor: pointer;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--accent-cyan);
}

.password-strength {
    margin-bottom: 1.5rem;
}

.strength-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.strength-fill.weak {
    width: 33%;
    background: var(--accent-red);
}

.strength-fill.medium {
    width: 66%;
    background: var(--accent-orange);
}

.strength-fill.strong {
    width: 100%;
    background: var(--accent-green);
}

.strength-text {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-cyan);
}

.forgot-password {
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--accent-purple);
}

.terms {
    margin-bottom: 1.5rem;
}

.terms a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.auth-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.social-login {
    margin: 2rem 0;
}

.social-login p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.social-btn.google:hover {
    border-color: #db4437;
}

.social-btn.facebook:hover {
    border-color: #4267B2;
}

.switch-form {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.switch-form a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.switch-form a:hover {
    color: var(--accent-purple);
}

.admin-access {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 0.85rem;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.admin-access:hover {
    opacity: 1;
    color: var(--accent-cyan);
}

.login-stats {
    display: flex;
    justify-content: space-around;
    max-width: 800px;
    margin-top: 3rem;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(48, 43, 99, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--card-border);
}

.stat-item i {
    font-size: 2rem;
    color: var(--accent-cyan);
}

.stat-item h3 {
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ========================================
   MODAL STYLES
======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--secondary-dark);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.modal-content.large {
    max-width: 800px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    line-height: 1;
}

.close-modal:hover {
    color: var(--accent-red);
}

.modal h2 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal h2 i {
    color: var(--accent-cyan);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--input-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.08);
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.modal-section-title {
    margin: 2rem 0 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
    color: var(--accent-cyan);
    font-size: 1.1rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cancel-btn,
.save-btn {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cancel-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.cancel-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.save-btn {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: white;
}

.save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

/* ========================================
   DASHBOARD NAVIGATION
======================================== */
.dashboard-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-cyan);
}

.nav-brand i {
    font-size: 1.8rem;
}

.admin-badge {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-cyan);
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-white);
    background: rgba(0, 212, 255, 0.1);
}

.nav-links a.active {
    border-bottom: 2px solid var(--accent-cyan);
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.notification-icon {
    position: relative;
    font-size: 1.3rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.notification-icon:hover {
    color: var(--accent-cyan);
}

.notification-icon .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-red);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    font-weight: 600;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-cyan);
    cursor: pointer;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logout-btn {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid var(--accent-red);
    border-radius: 8px;
    color: var(--accent-red);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logout-btn:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   DASHBOARD CONTENT
======================================== */
.dashboard-content {
    margin-top: 80px;
    padding: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-header h1 i {
    color: var(--accent-cyan);
}

.page-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.welcome-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.welcome-text h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.welcome-text span {
    color: var(--accent-cyan);
}

.welcome-text p {
    color: var(--text-gray);
}

.quick-actions {
    display: flex;
    gap: 1rem;
}

.quick-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-btn.deposit {
    background: rgba(38, 222, 129, 0.1);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.quick-btn.withdraw {
    background: rgba(255, 71, 87, 0.1);
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.quick-btn.trade {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
/* ========================================
   BALANCE CARDS
======================================== */
.balance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.balance-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.balance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.balance-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.balance-card:hover::before {
    opacity: 1;
}

.main-balance {
    grid-column: span 2;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.card-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.card-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.balance-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.balance-input {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.8rem;
    font-weight: 700;
    width: 100%;
    max-width: 150px;
}

.balance-input:focus {
    outline: none;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 5px;
    padding: 0.2rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.deposit-icon {
    background: linear-gradient(135deg, var(--accent-green), #20bf6b);
}

.trading-icon {
    background: linear-gradient(135deg, var(--accent-orange), #fa8231);
}

.mining-icon {
    background: linear-gradient(135deg, var(--accent-purple), #5f27cd);
}

.profit-icon {
    background: linear-gradient(135deg, var(--accent-cyan), #0984e3);
}

.fee-icon {
    background: linear-gradient(135deg, var(--accent-red), #ee5a6f);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.change {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
}

.change.positive {
    color: var(--accent-green);
}

.change.negative {
    color: var(--accent-red);
}

.change.warning {
    color: var(--accent-orange);
}

.period {
    color: var(--text-gray);
}

/* Save Button Section */
.save-section {
    text-align: center;
    margin-bottom: 2rem;
}

.save-btn {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--accent-green), #20bf6b);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(38, 222, 129, 0.3);
}

.save-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(38, 222, 129, 0.5);
}

/* ========================================
   CHART SECTION
======================================== */
.chart-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header h2 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-header h2 i {
    color: var(--accent-cyan);
}

.chart-controls {
    display: flex;
    gap: 0.5rem;
}

.chart-btn {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-gray);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-btn:hover,
.chart-btn.active {
    background: var(--accent-cyan);
    color: white;
    border-color: var(--accent-cyan);
}

/* ========================================
   HOLDINGS SECTION
======================================== */
.holdings-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.holdings-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.holdings-section h2 i {
    color: var(--accent-cyan);
}

.holdings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.holding-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.holding-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.crypto-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.crypto-icon.btc {
    background: linear-gradient(135deg, #f7931a, #f2a900);
    color: white;
}

.crypto-icon.eth {
    background: linear-gradient(135deg, #627eea, #7c93ee);
    color: white;
}

.crypto-icon.xrp {
    background: linear-gradient(135deg, #23292f, #3c444a);
    color: white;
}

.crypto-icon.zec {
    background: linear-gradient(135deg, #ecb244, #f4c262);
    color: white;
}

.holding-info {
    flex: 1;
}

.holding-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.crypto-symbol {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.holding-amount {
    text-align: right;
}

.holding-input {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    text-align: right;
}

.holding-input:focus {
    outline: none;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 5px;
    padding: 0.2rem;
}

.holding-value {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ========================================
   TICKER SECTION
======================================== */
.ticker-section {
    margin: 2rem 0;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
}

/* ========================================
   TRANSACTIONS SECTION
======================================== */
.transactions-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.transactions-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transactions-section h2 i {
    color: var(--accent-cyan);
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.transaction-item:hover {
    border-color: var(--accent-cyan);
    transform: translateX(5px);
}

.transaction-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.transaction-icon.deposit {
    background: rgba(38, 222, 129, 0.2);
    color: var(--accent-green);
}

.transaction-icon.withdraw {
    background: rgba(255, 71, 87, 0.2);
    color: var(--accent-red);
}

.transaction-icon.trade {
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-cyan);
}

.transaction-details {
    flex: 1;
}

.transaction-details h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.transaction-details p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.transaction-amount {
    font-size: 1.1rem;
    font-weight: 700;
}

.transaction-amount.positive {
    color: var(--accent-green);
}

.transaction-amount.negative {
    color: var(--accent-red);
}

/* ========================================
   COMMUNITY SECTION
======================================== */
.community-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.community-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.community-section h2 i {
    color: var(--accent-cyan);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.community-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.community-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--accent-cyan);
    margin-bottom: 1rem;
}

.community-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.community-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.member-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent-cyan);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--accent-cyan);
}

/* ========================================
   DEPOSIT PAGE STYLES
======================================== */
.info-box {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent-cyan);
    border-left: 4px solid var(--accent-cyan);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
}

.info-box i {
    font-size: 2rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.info-box h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-cyan);
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

.deposit-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.deposit-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.deposit-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.deposit-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.deposit-header:hover {
    background: rgba(0, 212, 255, 0.05);
}

.crypto-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.crypto-icon-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

.crypto-icon-large.btc {
    background: linear-gradient(135deg, #f7931a, #f2a900);
    color: white;
}

.crypto-icon-large.eth {
    background: linear-gradient(135deg, #627eea, #7c93ee);
    color: white;
}

.crypto-icon-large.xrp {
    background: linear-gradient(135deg, #23292f, #3c444a);
    color: white;
}

.crypto-icon-large.ltc {
    background: linear-gradient(135deg, #345d9d, #5286c6);
    color: white;
}

.crypto-icon-large.zec {
    background: linear-gradient(135deg, #ecb244, #f4c262);
    color: white;
}

.crypto-icon-large.usdt {
    background: linear-gradient(135deg, #26a17b, #2fb388);
    color: white;
}

.crypto-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.crypto-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.deposit-fee {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.deposit-fee span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.expand-icon {
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

.expand-icon.rotate {
    transform: rotate(180deg);
}

.deposit-body {
    display: none;
    padding: 0 1.5rem 1.5rem 1.5rem;
    animation: slideDown 0.3s ease;
}

.deposit-body.active {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qr-section {
    text-align: center;
}

.qr-section canvas {
    border: 2px solid var(--card-border);
    border-radius: 10px;
    padding: 1rem;
    background: white;
}

.qr-label {
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.address-section {
    flex: 1;
}

.address-section label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.address-box {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.address-box input {
    flex: 1;
    padding: 0.8rem;
    background: var(--input-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-white);
    font-family: monospace;
    font-size: 0.9rem;
}

.copy-btn {
    padding: 0.8rem 1.5rem;
    background: var(--accent-cyan);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    background: var(--accent-purple);
    transform: translateY(-2px);
}

.warning-box {
    background: rgba(255, 165, 2, 0.1);
    border: 1px solid var(--accent-orange);
    border-left: 4px solid var(--accent-orange);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.warning-box i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.warning-box span {
    color: var(--text-white);
    font-size: 0.9rem;
}

.confirm-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-green), #20bf6b);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(38, 222, 129, 0.4);
}

/* Recent Deposits/Withdrawals Table */
.recent-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
}

.recent-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recent-section h2 i {
    color: var(--accent-cyan);
}

.deposits-table,
.withdrawals-table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
}

.deposits-table thead,
.withdrawals-table thead {
    background: rgba(0, 212, 255, 0.1);
}

.deposits-table th,
.deposits-table td,
.withdrawals-table th,
.withdrawals-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
}

.deposits-table th,
.withdrawals-table th {
    color: var(--accent-cyan);
    font-weight: 600;
    white-space: nowrap;
}

.deposits-table tbody,
.withdrawals-table tbody {
    display: table;
    width: 100%;
}

.crypto-label {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.crypto-label.btc {
    background: rgba(247, 147, 26, 0.2);
    color: #f7931a;
}

.crypto-label.eth {
    background: rgba(98, 126, 234, 0.2);
    color: #627eea;
}

.crypto-label.xrp {
    background: rgba(35, 41, 47, 0.4);
    color: #b8b8b8;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.status-badge.completed {
    background: rgba(38, 222, 129, 0.2);
    color: var(--accent-green);
}

.status-badge.pending {
    background: rgba(255, 165, 2, 0.2);
    color: var(--accent-orange);
}

.tx-id {
    font-family: monospace;
    color: var(--text-gray);
    font-size: 0.9rem;
}
/* ========================================
   WITHDRAW PAGE STYLES
======================================== */
.withdraw-form-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.withdraw-form {
    max-width: 700px;
    margin: 0 auto;
}

.withdraw-summary {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--accent-cyan);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.summary-row.total {
    border-top: 2px solid var(--accent-cyan);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.submit-withdraw-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.submit-withdraw-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.action-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn.cancel {
    background: rgba(255, 71, 87, 0.2);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

.action-btn.cancel:hover {
    background: var(--accent-red);
    color: white;
}

.action-btn.view {
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
}

.action-btn.view:hover {
    background: var(--accent-cyan);
    color: white;
}

/* ========================================
   ADMIN PANEL STYLES
======================================== */
.admin-nav {
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.95), rgba(48, 43, 99, 0.95));
}

.admin-content {
    margin-top: 90px;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.stat-icon.users {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: white;
}

.stat-icon.deposits {
    background: linear-gradient(135deg, var(--accent-green), #20bf6b);
    color: white;
}

.stat-icon.withdrawals {
    background: linear-gradient(135deg, var(--accent-orange), #fa8231);
    color: white;
}

.stat-icon.profit {
    background: linear-gradient(135deg, var(--accent-purple), #5f27cd);
    color: white;
}

.stat-info h3 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: var(--accent-cyan);
}

.stat-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.stat-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-change.positive {
    color: var(--accent-green);
}

.stat-change.warning {
    color: var(--accent-orange);
}

/* Quick Actions Admin */
.quick-actions-admin {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.admin-action-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    color: white;
}

.admin-action-btn.primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
}

.admin-action-btn.success {
    background: linear-gradient(135deg, var(--accent-green), #20bf6b);
}

.admin-action-btn.info {
    background: linear-gradient(135deg, var(--accent-blue), #4834df);
}

.admin-action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--card-border);
}

.admin-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Admin Chart */
.admin-chart {
    margin-bottom: 2rem;
}

/* Admin Section */
.admin-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.section-header-admin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header-admin h2 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-header-admin h2 i {
    color: var(--accent-cyan);
}

.search-filter {
    display: flex;
    gap: 1rem;
}

.search-filter input,
.search-filter select {
    padding: 0.7rem 1rem;
    background: var(--input-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 0.95rem;
}

.search-filter input:focus,
.search-filter select:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.pending-count {
    background: rgba(255, 165, 2, 0.2);
    border: 1px solid var(--accent-orange);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--accent-orange);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Admin Table */
.table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    min-width: 1200px;
    border-collapse: collapse;
}

.admin-table thead {
    background: rgba(0, 212, 255, 0.1);
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
}

.admin-table th {
    color: var(--accent-cyan);
    font-weight: 600;
    white-space: nowrap;
}

.admin-table tbody tr {
    transition: background 0.3s ease;
}

.admin-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

.admin-table .action-btn {
    margin-right: 0.5rem;
}

.table-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.table-btn.edit {
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
}

.table-btn.edit:hover {
    background: var(--accent-cyan);
    color: white;
}

.table-btn.delete {
    background: rgba(255, 71, 87, 0.2);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

.table-btn.delete:hover {
    background: var(--accent-red);
    color: white;
}

/* Withdrawals Grid */
.withdrawals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.withdrawal-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.withdrawal-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.withdrawal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--card-border);
}

.withdrawal-user {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.withdrawal-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-cyan);
}

.withdrawal-user h4 {
    font-size: 1rem;
}

.withdrawal-user p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.withdrawal-details {
    margin-bottom: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.detail-row span:first-child {
    color: var(--text-gray);
}

.detail-row span:last-child {
    font-weight: 600;
}

.withdrawal-actions {
    display: flex;
    gap: 0.5rem;
}

.withdrawal-actions button {
    flex: 1;
    padding: 0.7rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.approve-btn {
    background: linear-gradient(135deg, var(--accent-green), #20bf6b);
    color: white;
}

.approve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(38, 222, 129, 0.4);
}

.reject-btn {
    background: rgba(255, 71, 87, 0.2);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

.reject-btn:hover {
    background: var(--accent-red);
    color: white;
}

/* Activity Feed */
.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    border-color: var(--accent-cyan);
    transform: translateX(5px);
}

.activity-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.activity-icon.deposit {
    background: rgba(38, 222, 129, 0.2);
    color: var(--accent-green);
}

.activity-icon.withdraw {
    background: rgba(255, 71, 87, 0.2);
    color: var(--accent-red);
}

.activity-icon.user {
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-cyan);
}

.activity-icon.trade {
    background: rgba(164, 69, 237, 0.2);
    color: var(--accent-purple);
}

.activity-details h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.activity-details p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* ========================================
   LIVE NOTIFICATION POPUP SYSTEM
======================================== */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.live-notification {
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--notification-color, #00d4ff);
    border-left: 4px solid var(--notification-color, #00d4ff);
    border-radius: 12px;
    padding: 14px 16px;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(0, 212, 255, 0.2);
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: all;
    position: relative;
}

.live-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.live-notification.hide {
    transform: translateX(-120%);
    opacity: 0;
}

.notification-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(164, 69, 237, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 2px solid var(--notification-color, #00d4ff);
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-message {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 4px;
    word-wrap: break-word;
}

.notification-time {
    color: var(--notification-color, #00d4ff);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.live-notification:hover {
    transform: translateX(0) translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(0, 212, 255, 0.3);
}

@keyframes notificationPulse {
    0%, 100% {
        border-left-color: var(--notification-color, #00d4ff);
    }
    50% {
        border-left-color: rgba(0, 212, 255, 0.6);
    }
}

.live-notification.show {
    animation: notificationPulse 2s ease-in-out infinite;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    .dashboard-nav {
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(15, 12, 41, 0.98);
        width: 100%;
        padding: 2rem;
        transition: 0.3s;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin-bottom: 1rem;
    }

    .dashboard-content {
        padding: 1rem;
    }

    .balance-grid {
        grid-template-columns: 1fr;
    }

    .main-balance {
        grid-column: span 1;
    }

    .holdings-grid {
        grid-template-columns: 1fr;
    }

    .community-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .deposit-body.active {
        grid-template-columns: 1fr;
    }

    .quick-actions {
        flex-direction: column;
        width: 100%;
    }

    .quick-btn {
        width: 100%;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .quick-actions-admin {
        flex-direction: column;
    }

    .admin-action-btn {
        width: 100%;
        justify-content: center;
    }

    .search-filter {
        flex-direction: column;
        width: 100%;
    }

    .search-filter input,
    .search-filter select {
        width: 100%;
    }

    /* Mobile notifications */
    .notification-container {
        left: 50%;
        transform: translateX(-50%);
        bottom: 80px;
        width: calc(100% - 40px);
        max-width: 380px;
    }
    
    .live-notification {
        min-width: 100%;
        max-width: 100%;
        transform: translateY(120%);
    }
    
    .live-notification.show {
        transform: translateY(0);
    }
    
    .live-notification.hide {
        transform: translateY(120%);
    }
}

@media (max-width: 480px) {
    .auth-box {
        padding: 2rem 1.5rem;
    }

    .login-stats {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}