:root {
    /* Color Palette - White/Lilac/Purple (Roxo/Violeta) */
    --primary-color: #8b5cf6;
    /* Violet 500 */
    --primary-hover: #7c3aed;
    /* Violet 600 */
    --primary-light: #ddd6fe;
    /* Violet 200 */
    --primary-bg: #f5f3ff;
    /* Violet 50 */

    --secondary-color: #a78bfa;
    /* Violet 400 */
    --accent-color: #d8b4fe;
    /* Violet 300 */

    /* Backgrounds */
    --bg-body: #f8fafc;
    /* Slate 50 - slightly cooler white */
    --bg-sidebar: #ffffff;
    --bg-card: #ffffff;
    --bg-input: #f8fafc;

    /* Text */
    --text-main: #1e1b4b;
    /* Indigo 950 - Deep dark purple/blue */
    --text-muted: #64748b;
    /* Slate 500 */
    --text-light: #94a3b8;
    /* Slate 400 */
    --text-on-primary: #ffffff;

    /* Sidebar Specific */
    --sidebar-width: 260px;
    --sidebar-item-active: #f5f3ff;
    --sidebar-text: #4c1d95;
    /* Violet 900 */
    --sidebar-border: #e2e8f0;

    /* UI Elements */
    --border-color: #e2e8f0;
    --border-focus: #8b5cf6;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-primary: 0 4px 14px 0 rgba(139, 92, 246, 0.39);

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Global Reset & Typography */
body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 600;
}

a {
    color: var(--primary-color);
    transition: all 0.2s ease;
    text-decoration: none;
}

a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

/* App Container Layout */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(180deg, #ffffff 0%, #f1f0fb 100%);
    /* Subtle White to Lilac-Grey Gradient */
    border-right: none;
    display: flex;
    flex-direction: column;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    height: 100vh !important;
    z-index: 1000;
    transition: transform 0.3s ease;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.03);
    /* Soft shadow instead of border */
}

.sidebar-header {
    padding: 30px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Optional: Add a subtle fancy background to the logo area */
    background: linear-gradient(180deg, rgba(245, 243, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.sidebar-brand-img {
    max-height: 45px;
    max-width: 100%;
    filter: drop-shadow(0 2px 4px rgba(139, 92, 246, 0.1));
}

.sidebar-menu {
    flex: 1;
    overflow-y: auto;
    padding: 10px 16px;
    list-style: none;
    margin: 0;
}

.sidebar-menu-item {
    margin-bottom: 8px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    color: var(--text-muted);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Icon Styling - "Bubble" Look */
.sidebar-link i {
    width: 36px;
    height: 36px;
    margin-right: 14px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #f1f5f9;
    /* Slate 100 */
    color: var(--text-muted);
    transition: all 0.3s ease;
}

/* Sidebar Hover State */
.sidebar-link:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
}

.sidebar-link:hover i {
    background-color: var(--primary-bg);
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Sidebar Active State */
.sidebar-menu-item.active .sidebar-link {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 8px 16px rgba(139, 92, 246, 0.25);
}

.sidebar-menu-item.active .sidebar-link i {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 24px;
    background: linear-gradient(0deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.sidebar-user-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-user-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-muted);
    font-size: 14px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.2s;
    margin-top: 8px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.sidebar-user-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.15);
}

.sidebar-user-link i {
    margin-right: 12px;
    color: var(--accent-color);
}

/* Main Content Wrapper */
.main-content-wrapper {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--bg-body);
}

/* Top Navbar (Content Header) - ENHANCED */
.content-header-nav {
    display: flex;
    justify-content: flex-end;
    /* Align to right */
    align-items: center;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.85);
    /* More opaque */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 900;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    /* Subtle premium shadow */
}

/* Balance Badge - ENHANCED */
.balance-card {
    background: linear-gradient(135deg, #ffffff 0%, #fcfaff 100%);
    padding: 6px 10px;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-main);
    margin-left: 16px;
    cursor: pointer;
    transition: all 0.3s;
    height: 42px;
}

.balance-card:hover {
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15), inset 0 0 0 1px var(--primary-color);
    transform: translateY(-1px);
}

.balance-card .badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    margin-right: 10px;
    border-radius: var(--radius-full);
    padding: 6px 12px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(139, 92, 246, 0.3);
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Dropdown Menu Enhancement */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-md);
    padding: 10px;
    animation: slideInDown 0.2s cubic-bezier(0.2, 0.0, 0.2, 1);
    background: #ffffff;
}

.dropdown-menu>li>a {
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.dropdown-menu>li>a:hover {
    background-color: var(--primary-bg);
    color: var(--primary-color);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content Body */
.content-body {
    padding: 32px;
    flex: 1;
}

/* Buttons */
.btn {
    border: none;
    border-radius: var(--radius-md);
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
    text-transform: none;
    /* Removed capitalize for more natural text */
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-default {
    background: white;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-default:hover {
    background: var(--bg-body);
    border-color: var(--text-muted);
}

/* Form Controls */
.form-control {
    height: 50px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background-color: var(--bg-input);
    padding: 10px 16px;
    font-size: 15px;
    box-shadow: none;
    transition: all 0.2s;
    color: var(--text-main);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
    /* Violet ring */
    background-color: white;
}

label.control-label {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    font-size: 14px;
}

/* Cards / Well */
.well {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
}

/* Login Page Specifics (Still used) */
.login-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(216, 180, 254, 0.1), transparent 40%);
    padding: 20px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.auth-logo {
    height: 50px;
    margin-bottom: 20px;
    object-fit: contain;
}

/* Sign In Extras */
.forgot-password {
    font-size: 13px;
    color: var(--primary-color);
    float: right;
    margin-top: -30px;
    /* Hack to align with label */
    position: relative;
    z-index: 2;
}

.form-group__password {
    position: relative;
}

.pull-right-middle {
    font-size: 14px;
    color: var(--text-muted);
}

.pull-right-middle a {
    font-weight: 600;
}

/* Alerts */
.alert {
    border-radius: var(--radius-md);
    border: none;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
}

.alert-danger {
    background-color: #fef2f2;
    color: #ef4444;
    border-left: 4px solid #ef4444;
}

.alert-success {
    background-color: #f0fdf4;
    color: #22c55e;
    border-left: 4px solid #22c55e;
}

/* Footer Customization */
footer {
    background: transparent;
    padding: 30px 0;
    margin-top: auto;
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
}

/* Custom Utilities */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Mobile Responsiveness & Logic */

/* Utility Classes for Visibility */
@media (min-width: 769px) {
    .visible-xs {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hidden-xs {
        display: none !important;
    }

    /* Disable Flex on App Container for Mobile to avoid layout interference */
    .app-container {
        display: block !important;
    }

    .sidebar {
        /* Switch from transform to left positioning for robust 'fixed' behavior */
        transform: none !important;
        left: -320px !important;
        /* Hide off-screen */
        width: 280px;
        box-shadow: none;
        transition: left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        overflow: hidden;
        /* Ensure only menu scrolls */
        z-index: 100001 !important;
        /* Super high to cover WhatsApp/Chat widgets */
    }

    .sidebar.open {
        left: 0 !important;
        /* Slide in */
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
    }

    /* Overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(30, 27, 75, 0.4);
        /* Dark Purple tint */
        backdrop-filter: blur(2px);
        z-index: 100000 !important;
        /* Just below sidebar */
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .main-content-wrapper {
        margin-left: 0;
    }

    /* Mobile Header */
    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        background: #ffffff;
        border-bottom: 1px solid var(--border-color);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 800;
        height: 70px;
        /* Explicit height */
    }

    /* Push content down because header is fixed */
    .main-content-wrapper {
        padding-top: 70px;
    }

    .mobile-menu-toggle {
        background: none;
        border: none;
        font-size: 24px;
        color: var(--text-main);
        padding: 0;
        cursor: pointer;
    }

    .mobile-logo img {
        height: 32px;
    }

    .mobile-logo {
        font-weight: 700;
        font-size: 18px;
        color: var(--text-main);
    }

    /* Mobile Sidebar Info (Balance/Lang) */
    .mobile-sidebar-info {
        padding: 16px;
        /* background-color: var(--primary-bg); */
        margin: 0 16px 16px 16px;
        /* border-radius: var(--radius-md); */
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .sidebar-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: white;
        padding: 12px 16px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        color: var(--text-main);
        font-weight: 600;
        width: 100%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    }

    .sidebar-dropdown.open .sidebar-btn {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    .sidebar-dropdown .dropdown-menu {
        width: 100%;
        position: relative;
        /* Static position inside flex container or specific logic */
        box-shadow: none;
        border: 1px solid var(--border-color);
        background: #fafafa;
        margin-top: 5px;
        float: none;
    }

    .sidebar-balance {
        margin-bottom: 10px;
        text-align: center;
    }

    .balance-pill {
        display: inline-flex;
        align-items: center;
        background: white;
        padding: 8px 16px;
        border-radius: var(--radius-full);
        box-shadow: var(--shadow-sm);
        font-weight: 700;
        color: var(--text-main);
    }

    .badge-icon {
        margin-right: 8px;
    }

    .sidebar-lang {
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .lang-pill {
        font-size: 12px;
        padding: 4px 10px;
        background: white;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-sm);
        color: var(--text-muted);
    }

    .lang-pill.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .sidebar-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 20px;
        color: var(--text-muted);
    }

    .sidebar-header {
        justify-content: flex-start;
        /* Left align logo on mobile sidebar */
        padding-left: 20px;
    }
}

/* Social Media Filter Cards */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
    animation: fadeIn 0.5s ease;
}

.platform-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.platform-card i {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-muted);
    transition: all 0.2s;
}

.platform-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.platform-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.platform-card.active {
    background: var(--primary-bg);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.platform-card.active i,
.platform-card.active span {
    color: var(--primary-color);
}

/* Brand Specific Styles (Active/Hover Override) */

/* Instagram */
.platform-card.brand-instagram:hover i,
.platform-card.brand-instagram.active i {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.platform-card.brand-instagram.active {
    border-color: #d6249f;
    background: #fff0f9;
}

/* TikTok */
.platform-card.brand-tiktok:hover i,
.platform-card.brand-tiktok.active i {
    color: #000000;
    filter: drop-shadow(2px 0px 0px #F00) drop-shadow(-2px -2px 0px #0FF);
}

.platform-card.brand-tiktok.active {
    border-color: #000000;
    background: #f0f0f0;
}

/* YouTube */
.platform-card.brand-youtube:hover i,
.platform-card.brand-youtube.active i {
    color: #FF0000;
}

.platform-card.brand-youtube.active {
    border-color: #FF0000;
    background: #fff0f0;
}

/* Facebook */
.platform-card.brand-facebook:hover i,
.platform-card.brand-facebook.active i {
    color: #1877F2;
}

.platform-card.brand-facebook.active {
    border-color: #1877F2;
    background: #eff6ff;
}

/* Twitter/X */
.platform-card.brand-twitter:hover i,
.platform-card.brand-twitter.active i {
    color: #000000;
}

/* Telegram */
.platform-card.brand-telegram:hover i,
.platform-card.brand-telegram.active i {
    color: #24A1DE;
}

/* WhatsApp */
.platform-card.brand-whatsapp:hover i,
.platform-card.brand-whatsapp.active i {
    color: #25D366;
}

/* Spotify */
.platform-card.brand-spotify:hover i,
.platform-card.brand-spotify.active i {
    color: #1DB954;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WhatsApp Widget Fixes */
.integration-fixed,
.whatsapp-container,
.whatsapp-button {
    z-index: 9000 !important;
    /* Force below Sidebar (100001) */
}

.whatsapp-button {
    position: fixed !important;
    /* Ensure it doesn't flow in document causing scroll */
}

/* Add Funds - Banking App Style */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.payment-method-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    height: 100%;
    min-height: 120px;
}

.payment-method-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.payment-method-card.active {
    border-color: var(--primary-color);
    background-color: #f5f3ff;
    /* Very light primary bg */
    box-shadow: 0 0 0 2px var(--primary-color);
}

.payment-icon {
    font-size: 32px;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: all 0.2s;
}

.payment-method-card.active .payment-icon {
    color: var(--primary-color);
}

.payment-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 8px;
}


/* Landing Page Redesign */
.landing-wrapper {
    background: #ffffff;
    overflow-x: hidden;
}

.landing-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    color: #fff;
    padding-top: 80px;
    /* Navbar space */
    padding-bottom: 80px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.text-gradient {
    background: linear-gradient(to right, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
}

/* Floating Login Card */
.floating-login-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: var(--text-main);
}

.floating-login-card .auth-header {
    margin-bottom: 30px;
}

.floating-login-card h2 {
    font-weight: 700;
    color: #1e293b;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    color: #94a3b8;
    z-index: 10;
}

.form-control.with-icon {
    padding-left: 45px;
}

.shadow-btn {
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.shadow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -3px rgba(124, 58, 237, 0.4);
}

.or-separator {
    margin: 24px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    text-align: center;
}

.or-separator span {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 12px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
}

/* Features Section */
.landing-features {
    padding: 80px 0;
    background: #f8fafc;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #a78bfa;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #fdf4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #d946ef;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.feature-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Landing */
@media (max-width: 768px) {
    .landing-hero {
        padding-top: 40px;
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-stats {
        justify-content: center;
        margin-bottom: 40px;
    }

    .display-flex-center {
        display: block;
        /* Stack flex items */
    }

    .floating-login-card {
        padding: 24px;
        margin-top: 20px;
    }
}

display: flex;
align-items: center;
justify-content: center;
margin-top: 10px;
position: relative;
}

.currency-symbol {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 8px;
}

.amount-input-large {
    font-size: 42px !important;
    font-weight: 700 !important;
    text-align: center !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    height: auto !important;
    padding: 10px !important;
    color: var(--text-main) !important;
    width: 200px !important;
    /* Allow growing */
    border-bottom: 2px solid var(--border-color) !important;
    border-radius: 0 !important;
}

.amount-input-large:focus {
    border-color: var(--primary-color) !important;
    outline: none !important;
}

.instruction {
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px dashed var(--border-color);
    margin-bottom: 24px;
}