/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ca512b;
    --primary-dark: #b04525;
    --secondary: #0a0a0a;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --light-bg: #fafafa;
    --light-border: #f0f0f0;
    --text-primary: #0a0a0a;
    --text-secondary: #666;
    --shadow-sm: 0 4px 14px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 32px;
}

.nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(202, 81, 43, 0.05);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(202, 81, 43, 0.1);
}

.nav-link i {
    font-size: 16px;
}

.header-cta {
    margin-left: 16px;
}

.header-cta .btn {
    padding: 12px 28px;
    font-size: 15px;
}

/* Alerts */
.alert {
    padding: 16px 0;
    margin-bottom: 0;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
}

/* Main */
.main {
    min-height: calc(100vh - 200px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(202, 81, 43, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(202, 81, 43, 0.4);
}

.btn-secondary {
    background: var(--light-bg);
    color: var(--text-primary);
    border: 1px solid var(--light-border);
}

.btn-secondary:hover {
    background: #f0f0f0;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
}

.hero-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-card {
    max-width: 480px;
    margin: 0 auto;
}

/* Virtual Card */
.virtual-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    padding: 36px;
    aspect-ratio: 1.586/1;
    box-shadow: var(--shadow-lg);
    color: white;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.card-type {
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    letter-spacing: 1.5px;
}

.card-brand {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.card-chip {
    width: 48px;
    height: 36px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 6px;
    margin-bottom: 40px;
}

.card-number {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 28px;
    font-family: 'Courier New', monospace;
}

.card-info {
    display: flex;
    justify-content: space-between;
}

.card-label {
    font-size: 8px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.card-value {
    font-size: 13px;
    font-weight: 600;
}

/* Features */
.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Auth Page */
.auth-page {
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-box {
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-secondary);
}

.auth-form {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-border);
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.auth-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--light-border);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

/* Dashboard */
.dashboard {
    padding: 40px 0 80px;
}

.page-header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 2px solid var(--light-border);
    display: flex;
    gap: 20px;
    align-items: center;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
}

.stat-icon.active {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: var(--success);
}

.stat-icon.balance {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Quick Actions */
.quick-actions {
    margin-bottom: 60px;
}

.quick-actions h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.action-card {
    padding: 24px;
    background: var(--light-bg);
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.25s;
    border: 2px solid transparent;
}

.action-card:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.action-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 24px;
}

.empty-state i {
    font-size: 64px;
    color: var(--text-secondary);
    opacity: 0.3;
    margin-bottom: 24px;
}

.empty-state h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Table */
.table-responsive {
    overflow-x: auto;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--light-border);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    background: var(--light-bg);
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--light-border);
}

.table td {
    padding: 16px;
    border-bottom: 1px solid var(--light-border);
}

.table tr:last-child td {
    border-bottom: none;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-pending {
    background: #fef3c7;
    color: #92400e;
}

.badge-failed {
    background: #fee2e2;
    color: #991b1b;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 32px;
}

.card-item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 2px solid var(--light-border);
}

.card-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* Form */
.form-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    margin-top: 40px;
}

.card-form {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--light-border);
}

.form-section {
    margin-bottom: 32px;
}

.form-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 13px;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    padding-top: 24px;
    border-top: 1px solid var(--light-border);
}

.card-preview {
    position: sticky;
    top: 100px;
}

.card-preview h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.preview-info {
    margin-top: 20px;
    padding: 16px;
    background: var(--light-bg);
    border-radius: 12px;
}

.preview-info p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Profile */
.profile-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    margin-top: 40px;
}

.profile-sidebar {
    text-align: center;
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--light-border);
    height: fit-content;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
}

.profile-avatar i {
    font-size: 64px;
    color: var(--primary);
}

.profile-sidebar h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.profile-sidebar p {
    color: var(--text-secondary);
    font-size: 14px;
}

.profile-content {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--light-border);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: white;
    padding: 32px 0;
    text-align: center;
}

/* Filters */
.filters {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-group label {
    font-weight: 600;
    font-size: 14px;
}

.filter-group .form-control {
    width: 200px;
}

/* Transaction amount */
.amount {
    font-weight: 700;
    font-size: 16px;
}

.amount.credit {
    color: var(--success);
}

.amount.debit {
    color: var(--text-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        border-top: 1px solid var(--light-border);
        gap: 0;
        z-index: 999;
    }
    
    .nav.active {
        display: flex !important;
    }
    
    .header {
        position: relative;
    }
    
    .nav-link {
        padding: 16px 20px;
        border-radius: 8px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .header-cta {
        margin-left: 0;
        margin-top: 12px;
    }
    
    .header-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .features h2 {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-container {
        grid-template-columns: 1fr;
    }

    .card-preview {
        position: static;
    }

    .profile-container {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .auth-box {
        padding: 32px 24px;
    }

    .filters {
        flex-direction: column;
    }

    .filter-group .form-control {
        width: 100%;
    }

    .actions-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Empty States & Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Empty State */
.empty-state-modern {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    border-radius: 24px;
    border: 2px dashed var(--light-border);
    animation: fadeInUp 0.6s ease;
}

.empty-illustration {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 32px;
}

.pulse-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(202, 81, 43, 0.1), rgba(202, 81, 43, 0.05));
    animation: pulse 2s ease-in-out infinite;
}

.empty-illustration i {
    position: relative;
    font-size: 64px;
    color: var(--primary);
    line-height: 160px;
}

.empty-state-modern h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.empty-state-modern p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.empty-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.empty-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.empty-stat i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 8px;
}

.empty-stat span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Enhanced Cards Empty State */
.empty-state-enhanced {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 24px;
    animation: fadeInUp 0.6s ease;
}

.empty-illustration-cards {
    position: relative;
    height: 200px;
    margin-bottom: 40px;
}

.floating-card-demo {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-card {
    position: absolute;
    width: 120px;
    height: 160px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.demo-card i {
    font-size: 48px;
    color: white;
}

.card-1 {
    z-index: 3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.card-2 {
    transform: translateX(-80px) translateY(20px) rotate(-10deg);
    z-index: 2;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    animation-delay: 0.3s;
}

.card-3 {
    transform: translateX(80px) translateY(20px) rotate(10deg);
    z-index: 1;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    animation-delay: 0.6s;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

.empty-state-enhanced h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.feature-highlight {
    text-align: center;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: transform 0.3s ease;
}

.feature-highlight:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary);
}

.feature-highlight h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-highlight p {
    font-size: 14px;
    color: var(--text-secondary);
}

.pulse-btn {
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(202, 81, 43, 0.4);
}

.trust-badges {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.badge-item i {
    color: var(--success);
    font-size: 18px;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-header h2 {
    margin: 0;
}

/* Stat Card Variants */
.stat-card-primary .stat-icon {
    background: linear-gradient(135deg, rgba(202, 81, 43, 0.1), rgba(202, 81, 43, 0.2));
    color: var(--primary);
}

.stat-card-success .stat-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
    color: var(--success);
}

.stat-card-warning .stat-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.2));
    color: var(--warning);
}

.stat-card-info .stat-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.2));
    color: #3b82f6;
}

.stat-change {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.stat-change.positive {
    color: var(--success);
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

/* Button Sizes */
.btn-lg {
    padding: 16px 48px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* Empty State for Tables */
.empty-state-table {
    padding: 80px 40px !important;
    text-align: center;
}

.empty-state-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.empty-icon-animated {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.empty-icon-animated i {
    font-size: 48px;
    color: var(--primary);
}

.empty-state-content h3 {
    font-size: 24px;
    margin: 0;
}

.empty-state-content p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0;
}

/* Enhanced Hero Section */
.hero-enhanced {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(202, 81, 43, 0.05), transparent);
    pointer-events: none;
}

.hero-enhanced .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-enhanced h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-enhanced p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.trust-indicators {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.5s backwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.trust-item i {
    color: var(--success);
    font-size: 18px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.cards-stack {
    position: relative;
    height: 100%;
    width: 100%;
}

.card-float {
    position: absolute;
    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
}

.card-float-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.card-float-2 {
    top: 55%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(8deg);
    z-index: 1;
    opacity: 0.9;
    animation: float 4s ease-in-out infinite 0.5s;
}

.crypto-badge {
    position: absolute;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    animation: float 3s ease-in-out infinite;
    border: 2px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crypto-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.crypto-badge i {
    font-size: 36px;
}

.crypto-badge span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.crypto-badge-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.crypto-badge-1 i {
    color: #f7931a;
}

.crypto-badge-1 span {
    color: #f7931a;
}

.crypto-badge-2 {
    bottom: 15%;
    right: 10%;
    animation-delay: 0.5s;
}

.crypto-badge-2 i {
    color: #627eea;
}

.crypto-badge-2 span {
    color: #627eea;
}

.crypto-badge-3 {
    top: 30%;
    left: 5%;
    animation-delay: 1s;
}

.crypto-badge-3 i {
    color: #26a17b;
}

.crypto-badge-3 span {
    color: #26a17b;
}

/* Smooth Transitions */
* {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Hover Effects */
.action-card:hover,
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Responsive for new elements */
@media (max-width: 968px) {
    .hero-enhanced .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .hero-enhanced h1 {
        font-size: 42px;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .empty-state-enhanced,
    .empty-state-modern {
        padding: 40px 24px;
    }
    
    .empty-illustration-cards {
        height: 150px;
    }
    
    .demo-card {
        width: 80px;
        height: 110px;
    }
    
    .demo-card i {
        font-size: 32px;
    }
    
    .features-highlight {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .empty-stats {
        gap: 24px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }
    
    .empty-state-enhanced h2 {
        font-size: 24px;
    }
    
    .hero-enhanced {
        padding: 60px 0;
    }
    
    .hero-enhanced h1 {
        font-size: 32px;
    }
    
    .hero-enhanced p {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .card-float-2 {
        display: none;
    }
    
    .crypto-badge {
        width: 80px;
        height: 80px;
        padding: 12px;
        border-radius: 16px;
    }
    
    .crypto-badge i {
        font-size: 28px;
    }
    
    .crypto-badge span {
        font-size: 10px;
    }
}
