        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(115, 103, 240, 0.4);
        }
        .btn-outline-primary:hover {
            background: var(--primary-color);
            color: white;
        }
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-primary);
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            top: 30%;
            right: 30%;
            animation-delay: 4s;
        }

        .shape-4 {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        /* Hero Visual */
        .hero-visual {
            position: relative;
            animation: slideInRight 1s ease-out;
        }

        .earning-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-lg);
        }

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

        .card-header h3 {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .status-badge {
            background: var(--gradient-secondary);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .balance-display {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .balance-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .balance-change {
            color: var(--secondary-color);
            font-size: 0.9rem;
        }

        .quick-stats {
            display: flex;
            justify-content: space-between;
        }

        .quick-stat {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .quick-stat i {
            color: var(--primary-color);
            font-size: 1.5rem;
        }

        .quick-stat .stat-value {
            font-weight: 600;
            font-size: 1.1rem;
        }

        .quick-stat .stat-name {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .features-preview {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .feature-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(10px);
            background: rgba(115, 103, 240, 0.1);
        }

        .feature-item i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

/* Withdrawals Section CSS */
.withdrawals-section {
    padding: 5rem 0;
}

.withdrawals-table {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.table {
    color: var(--text-primary);
    margin-bottom: 0;
    background: transparent;
}

/* Table header styling */
.table thead th {
    background: linear-gradient(135deg, #7367f0 0%, #9c88ff 100%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 1.2rem 1rem;
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(115, 103, 240, 0.2);
}

.table thead th:first-child {
    border-top-left-radius: 12px;
}

.table thead th:last-child {
    border-top-right-radius: 12px;
}

/* Table body styling */
.table tbody {
    background: rgba(26, 26, 58, 0.3);
}

.table tbody td, 
.table tbody th {
    background: transparent;
    border-color: rgba(115, 103, 240, 0.15);
    border-width: 1px;
    border-style: solid;
    border-left: none;
    border-right: none;
    padding: 1.2rem 1rem;
    color: var(--text-primary);
    vertical-align: middle;
    text-align: center;
}

.table tbody tr {
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    border: none;
}

.table tbody tr:hover {
    background: rgba(115, 103, 240, 0.08);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(115, 103, 240, 0.1);
}

.table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.table tbody tr:nth-child(even):hover {
    background: rgba(115, 103, 240, 0.08);
}

/* Enhanced cell styling */
.currency-icon {
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 8px rgba(115, 103, 240, 0.3);
    border-radius: 50%;
}

.username-cell {
    color: var(--primary-color) !important;
    font-weight: 600;
    text-transform: capitalize;
}

.amount-cell {
    color: var(--secondary-color) !important;
    font-weight: 700;
    font-size: 1.05rem;
}

.wallet-cell {
    color: var(--text-secondary) !important;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Row number styling */
.table tbody th {
    color: rgba(115, 103, 240, 0.8);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Method column styling */
.table tbody td:nth-child(4) {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive table improvements */
@media (max-width: 768px) {
    .withdrawals-table {
        padding: 1rem;
        margin: 0 -15px;
        border-radius: 0;
    }

    .table-responsive {
        font-size: 0.85rem;
        border-radius: 12px;
        overflow: hidden;
    }

    .table thead th,
    .table tbody td,
    .table tbody th {
        padding: 0.8rem 0.5rem;
    }

    .currency-icon {
        width: 28px;
        height: 28px;
    }

    .wallet-cell {
        max-width: 120px;
        font-size: 0.8rem;
    }

    .table tbody td:nth-child(4) {
        flex-direction: column;
        gap: 0.25rem;
        font-size: 0.8rem;
    }

    .amount-cell {
        font-size: 0.95rem;
    }
}
