/* Custom CSS for CoinBean */

:root {
    --primary-color: #ffc107;
    --secondary-color: #212529;
    --accent-color: #0d6efd;
    --success-color: #198754;
    --danger-color: #dc3545;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --card-hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    min-height: 130px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-brand {
    font-size: 2.5rem;
    font-weight: bold;
	margin-right: 10%;
}

.navbar-collapse {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
	text-align: center;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.hero-particles::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem !important;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, #ffc107, #ff9800, #ffc107);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Hero Badge */
.hero-badge .badge {
    font-size: 0.9rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* Trust Indicators */
.trust-indicators .trust-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
}

/* Pulse Button */
.pulse-btn {
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 20px rgba(255, 193, 7, 0.4); }
    50% { box-shadow: 0 0 30px rgba(255, 193, 7, 0.6); }
    100% { box-shadow: 0 0 20px rgba(255, 193, 7, 0.4); }
}

/* Social Proof */
.social-proof .rating-stars i {
    font-size: 1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

/* Crypto Dashboard */
.crypto-dashboard {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 250px;
}

.dashboard-card.floating {
    animation: float 3s ease-in-out infinite;
}

.dashboard-card .card-header h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-value h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.portfolio-value p {
    color: #666;
    margin: 0;
}

.portfolio-change {
    margin-top: 1rem;
}

/* Hero Stats */
.hero-stats {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card .stat-icon {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Crypto Animation */
.crypto-animation {
    position: relative;
    height: 400px;
    width: 100%;
}

.floating-coin {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    animation: float 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-coin:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
}

.floating-coin .coin-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: bold;
    color: #ffc107;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    white-space: nowrap;
}

.coin-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.coin-2 {
    top: 60%;
    left: 30%;
    animation-delay: 1s;
    background: linear-gradient(135deg, #627eea, #4f46e5);
}

.coin-3 {
    top: 30%;
    right: 20%;
    animation-delay: 2s;
    background: linear-gradient(135deg, #f0b90b, #f3ba2f);
}

.coin-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
    background: linear-gradient(135deg, #26a17b, #009688);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 15%;
    right: 30%;
    animation-delay: 1s;
}

.element-2 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.element-3 {
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
    margin: 0 auto;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0.5; }
    100% { top: 6px; opacity: 1; }
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Pulse Animation for Coins */
.pulse {
    animation: pulse-coin 2s infinite;
}

@keyframes pulse-coin {
    0% {
        box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(255, 193, 7, 0.6);
    }
    100% {
        box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    }
}

/* Investment Plans */
.plan-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plan-card.popular {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 1;
}

.plan-header {
    background: linear-gradient(135deg, var(--secondary-color), #343a40);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.plan-header h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-roi {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.plan-body {
    padding: 30px 20px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--success-color);
    margin-right: 10px;
}

/* Calculator */
.calculator-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
	margin-bottom: 1.5rem;
}

.result-display {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

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

.result-item.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--success-color);
    border-top: 2px solid var(--primary-color);
    margin-top: 15px;
    padding-top: 15px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 5px;
}

.testimonial-author small {
    color: #666;
}

/* Forms */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #eee;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.btn {
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning {
    background: var(--primary-color);
    border: none;
    color: var(--secondary-color);
}

.btn-warning:hover {
    background: #e0a800;
    transform: translateY(-2px);
}

/* Dashboard */
.dashboard-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-3px);
}

.dashboard-stat {
    text-align: center;
    padding: 20px;
}

.dashboard-stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.investment-item {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
}

.status-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.status-active {
    background: var(--success-color);
    color: white;
}

.status-pending {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.status-completed {
    background: var(--accent-color);
    color: white;
}

/* Referral */
.referral-card {
    background: linear-gradient(135deg, var(--primary-color), #e0a800);
    color: var(--secondary-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.referral-link {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    word-break: break-all;
    font-family: monospace;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 80px 0 40px;
    }
    
    .plan-card.popular {
        transform: none;
        margin-bottom: 20px;
    }
    
    .calculator-card {
        padding: 20px;
    }
    
    .form-container {
        padding: 20px;
        margin: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
    padding: 15px 20px;
}

.alert-success {
    background: rgba(25, 135, 84, 0.1);
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
    border-left: 4px solid var(--danger-color);
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    color: #856404;
    border-left: 4px solid var(--primary-color);
}

/* Tables */
.table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.table thead th {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px;
}

.table tbody td {
    padding: 15px;
    border-color: #eee;
}

.table tbody tr:hover {
    background: var(--light-bg);
}

/* File Upload */
.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.file-upload input[type=file] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: block;
    padding: 12px 15px;
    border: 2px dashed #ddd;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.file-upload:hover .file-upload-label {
    border-color: var(--primary-color);
    background: rgba(255, 193, 7, 0.1);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Dashboard Styles */
.dashboard-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-2px);
}

.dashboard-stat {
    padding: 1rem 0;
}

.dashboard-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
    background: linear-gradient(135deg, var(--primary-color), #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-stat i {
    opacity: 0.8;
}

/* Plan Cards */
.plan-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.plan-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.plan-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.plan-header h5 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.plan-roi {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.plan-body {
    padding: 1.5rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--success-color);
    margin-right: 0.75rem;
    width: 16px;
}

/* Referral Card */
.referral-card {
    background: linear-gradient(135deg, var(--primary-color), #ff8c00);
    color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.referral-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-2px);
}

.referral-link {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.referral-link .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
}

.referral-link .btn {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: white;
}

/* Status Badges */
.status-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-active {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.status-completed {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Table Enhancements */
.table-hover tbody tr:hover {
    background-color: rgba(255, 193, 7, 0.05);
}

.table th {
    border-top: none;
    font-weight: 600;
    color: #495057;
    background: #f8f9fa;
}

/* Button Enhancements */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-warning {
    background: linear-gradient(135deg, var(--primary-color), #ff8c00);
    border: none;
    color: #000;
    font-weight: 600;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ff8c00, var(--primary-color));
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .dashboard-stat h3 {
        font-size: 2rem;
    }
    
    .plan-card {
        margin-bottom: 1rem;
    }
    
    .referral-card {
        margin-bottom: 1rem;
    }
}

/* Loading Animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Welcome Section Enhancement */
.dashboard-card h2 {
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dashboard-card .text-muted {
    font-size: 0.95rem;
    color: #6c757d !important;
}

::-webkit-scrollbar-thumb:hover {
    background: #e0a800;
}

/* Modern Wallet Balance Card */
.wallet-balance-card {
    background: green;
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.wallet-balance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.wallet-balance-card:hover::before {
    left: 100%;
}

.wallet-balance-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.wallet-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.wallet-info {
    display: flex;
    flex-direction: column;
    color: white;
}

.wallet-label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.wallet-amount {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wallet-balance-card {
        min-width: 180px;
        padding: 1rem 1.2rem;
    }
    
    .wallet-amount {
        font-size: 1.2rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }
}

@media (max-width: 576px) {
    .wallet-balance-card {
        width: 100%;
        margin-bottom: 1rem;
    }
}
