/* ===== BASE STYLES & ANIMATIONS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary: #7c4dff;
    --primary-dark: #5c2ae8;
    --primary-light: #9a79ff;
    --secondary: #00b4d8;
    --success: #06d6a0;
    --warning: #ffd166;
    --danger: #ef476f;
    --whatsapp: #25D366;
    
    /* Background Colors */
    --bg-primary: #0f0f23;
    --bg-secondary: #1a1a2e;
    --bg-card: #16213e;
    --bg-input: rgba(255, 255, 255, 0.05);
    --bg-modal: rgba(10, 10, 20, 0.95);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-muted: #737373;
    
    /* Border Colors */
    --border-light: rgba(255, 255, 255, 0.1);
    --border-primary: rgba(124, 77, 255, 0.3);
    --border-success: rgba(6, 214, 160, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(124, 77, 255, 0.2);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--primary); }
    50% { box-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary); }
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes progressFill {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes paymentPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes countdown {
    0% { color: var(--warning); }
    50% { color: var(--primary); }
    100% { color: var(--success); }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    animation: fadeIn 0.5s ease-out;
}

/* ===== STATUS BANNER ===== */
.status-banner {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: white;
    padding: var(--space-sm) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    animation: slideIn 0.3s ease-out;
}

.status-content {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.status-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
}

.status-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-primary);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: var(--space-md) 0;
    animation: slideIn 0.5s ease-out;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.diamond-icon {
    font-size: 32px;
    color: var(--primary);
    animation: float 3s ease-in-out infinite;
}

.brand-text h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pro-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

.tagline {
    font-size: 14px;
    color: var(--text-secondary);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.network-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    transition: all 0.3s ease;
}

.network-indicator:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.network-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--danger);
    transition: all 0.3s ease;
}

.network-dot.connected {
    background: var(--success);
    box-shadow: 0 0 10px var(--success);
    animation: pulse 1.5s infinite;
}

.connect-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.connect-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.connect-btn:hover::before {
    left: 100%;
}

.connect-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.connect-btn:active {
    transform: translateY(0) scale(0.98);
}

/* ===== MAIN CONTAINER ===== */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
    animation: fadeIn 0.8s ease-out;
}

/* ===== HERO SECTION ===== */
.hero-section {
    margin-bottom: var(--space-2xl);
    animation: slideIn 0.6s ease-out;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glow 2s infinite alternate;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
    animation: fadeIn 1s ease-out;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.stat-card:nth-child(1) { animation-delay: 0s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.4s; }
.stat-card:nth-child(4) { animation-delay: 0.6s; }

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== MODAL OVERLAY ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: var(--space-lg);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--bg-modal);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    animation: slideIn 0.3s ease-out;
}

.success-modal {
    max-width: 500px;
    text-align: center;
}

.modal-header {
    padding: var(--space-xl);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.modal-header h2 {
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-top: var(--space-xs);
    font-size: 14px;
}

.modal-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* ===== BALANCE WARNING ===== */
.balance-warning {
    background: linear-gradient(90deg, rgba(255, 209, 102, 0.2), rgba(255, 193, 7, 0.1));
    border: 1px solid var(--warning);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-md) var(--space-xl);
    animation: slideIn 0.3s ease-out;
    display: none;
}

.balance-warning .warning-content {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--warning);
    font-size: 14px;
    font-weight: 600;
}

.balance-warning .warning-content i {
    font-size: 18px;
}

/* ===== WALLET SELECTION ===== */
.wallet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    padding: var(--space-xl);
}

.wallet-card {
    background: var(--bg-input);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    position: relative;
    overflow: hidden;
}

.wallet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 77, 255, 0.1), transparent);
    transition: left 0.5s;
}

.wallet-card:hover::before {
    left: 100%;
}

.wallet-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px) scale(1.02);
}

.wallet-card.selected {
    background: rgba(124, 77, 255, 0.1);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    animation: pulse 2s infinite;
}

.wallet-icon {
    font-size: 24px;
    color: var(--primary);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.wallet-card:hover .wallet-icon {
    transform: rotate(360deg);
    background: rgba(124, 77, 255, 0.3);
}

.wallet-info {
    flex: 1;
}

.wallet-info h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.wallet-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

.wallet-check {
    color: var(--success);
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s;
    transform: scale(0);
}

.wallet-card.selected .wallet-check {
    opacity: 1;
    transform: scale(1);
    animation: pulse 1s infinite;
}

/* ===== CREDENTIALS MODAL ===== */
.credentials-tabs {
    padding: 0 var(--space-xl);
}

.tab-nav {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.tab-btn {
    flex: 1;
    padding: var(--space-md);
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s;
}

.tab-btn.active::after {
    width: 100%;
}

.tab-btn.active {
    background: rgba(124, 77, 255, 0.2);
    border-color: var(--primary);
    color: white;
}

.tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
    margin-bottom: var(--space-xl);
    animation: fadeIn 0.3s ease-out;
}

.tab-content.active {
    display: block;
}

/* Form Elements */
.form-group {
    margin-bottom: var(--space-lg);
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    font-size: 14px;
}

.credential-input {
    width: 100%;
    padding: var(--space-md);
    background: var(--bg-input);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    transition: all 0.3s;
    resize: vertical;
}

.credential-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.2);
    animation: glow 1.5s infinite alternate;
}

.credential-input.visible-input {
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.credential-input.visible-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Input Controls */
.input-controls {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.input-action-btn {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    min-width: 40px;
    min-height: 40px;
}

.visibility-toggle {
    background: rgba(124, 77, 255, 0.2);
    color: var(--primary-light);
    border: 1px solid var(--border-primary);
}

.visibility-toggle:hover {
    background: rgba(124, 77, 255, 0.3);
    transform: scale(1.1);
}

.clear-btn {
    background: rgba(239, 71, 111, 0.2);
    color: var(--danger);
    border: 1px solid rgba(239, 71, 111, 0.3);
}

.clear-btn:hover {
    background: rgba(239, 71, 111, 0.3);
    transform: scale(1.1);
}

.input-action-btn i {
    font-size: 16px;
}

.form-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    animation: fadeIn 0.5s ease-out;
}

.form-note.warning {
    color: var(--warning);
}

/* Other Options */
.other-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.option-card {
    background: var(--bg-input);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.option-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px) scale(1.05);
    animation: none;
}

.option-icon {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    transition: all 0.3s;
}

.option-card:hover .option-icon {
    transform: rotate(360deg) scale(1.2);
}

.option-info h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.option-info p {
    font-size: 12px;
    color: var(--text-secondary);
}

/* File Upload */
.file-upload-area {
    border: 3px dashed var(--border-primary);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    cursor: pointer;
    margin-bottom: var(--space-md);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.file-upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 77, 255, 0.1), transparent);
    transition: left 0.5s;
}

.file-upload-area:hover::before {
    left: 100%;
}

.file-upload-area:hover {
    border-color: var(--primary);
    background: rgba(124, 77, 255, 0.05);
    transform: translateY(-2px);
}

.upload-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: var(--space-md);
    animation: float 2s ease-in-out infinite;
}

.upload-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.upload-subtext {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Network Selection */
.network-selection {
    padding: 0 var(--space-xl);
    margin-bottom: var(--space-xl);
}

.network-select {
    width: 100%;
    padding: var(--space-md);
    background: var(--bg-input);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237c4dff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    background-size: 16px;
    padding-right: var(--space-2xl);
}

.network-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.2);
}

.network-select:hover {
    border-color: var(--primary);
}

/* Security Notice */
.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(6, 214, 160, 0.1);
    border-radius: var(--radius-md);
    margin: var(--space-xl);
    font-size: 12px;
    color: var(--success);
    animation: pulse 2s infinite;
}

/* Modal Actions */
.modal-actions {
    padding: var(--space-xl);
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
}

.modal-btn {
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    overflow: hidden;
}

.modal-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.modal-btn:hover::before {
    left: 100%;
}

.modal-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.modal-btn.primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.modal-btn.secondary {
    background: var(--bg-input);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.modal-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.modal-btn.whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), #128C7E);
    color: white;
}

.modal-btn.whatsapp:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

/* ===== SUCCESS MODAL ===== */
.success-icon {
    font-size: 80px;
    color: var(--success);
    margin-bottom: var(--space-xl);
    animation: successPulse 2s infinite;
}

.success-message {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    animation: fadeIn 1s ease-out;
}

.connection-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    animation: slideIn 0.5s ease-out;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-light);
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

.detail-item:nth-child(1) { animation-delay: 0.1s; }
.detail-item:nth-child(2) { animation-delay: 0.2s; }
.detail-item:nth-child(3) { animation-delay: 0.3s; }
.detail-item:nth-child(4) { animation-delay: 0.4s; }

.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.detail-value {
    font-weight: 600;
    font-size: 14px;
}

.detail-value.success {
    color: var(--success);
    animation: pulse 2s infinite;
}

.detail-value.balance {
    color: var(--primary);
    animation: pulse 2s infinite;
}

/* Notification Box */
.notification-box {
    background: rgba(124, 77, 255, 0.1);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    animation: slideIn 0.5s ease-out;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    color: var(--primary);
    font-weight: 600;
}

.notification-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

.notification-item:nth-child(1) { animation-delay: 0.1s; }
.notification-item:nth-child(2) { animation-delay: 0.2s; }
.notification-item:nth-child(3) { animation-delay: 0.3s; }
.notification-item:nth-child(4) { animation-delay: 0.4s; }
.notification-item:nth-child(5) { animation-delay: 0.5s; }

.notification-item i {
    color: var(--primary);
    margin-top: 2px;
}

.notification-item.success i {
    color: var(--success);
}

/* Verification Timer */
.verification-timer {
    background: rgba(255, 215, 102, 0.15);
    border: 2px solid var(--warning);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    text-align: center;
    animation: pulse 2s infinite;
}

.timer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    color: var(--warning);
    font-weight: 600;
}

.timer-display {
    font-family: 'Courier New', monospace;
    font-size: 42px;
    font-weight: 800;
    color: var(--warning);
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 10px rgba(255, 209, 102, 0.5);
    letter-spacing: 2px;
    animation: countdown 5s linear infinite;
}

.timer-note {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: var(--space-sm);
}

/* Payment Notification */
.payment-notification {
    background: linear-gradient(90deg, rgba(6, 214, 160, 0.2), rgba(0, 200, 83, 0.1));
    border: 1px solid var(--success);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    animation: slideIn 0.5s ease-out;
    display: none;
}

.payment-notification .notification-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.payment-notification .notification-icon {
    font-size: 36px;
    color: var(--success);
    animation: successPulse 1s infinite;
}

.payment-notification .notification-details h4 {
    color: var(--success);
    margin-bottom: var(--space-xs);
    font-size: 18px;
}

.payment-notification .notification-details p {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.payment-notification .balance-reminder {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 12px;
    color: var(--warning);
    margin-top: var(--space-sm);
}

/* ===== DASHBOARD SECTION ===== */
.dashboard-section {
    margin-bottom: var(--space-2xl);
    animation: slideIn 0.6s ease-out;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.dashboard-header h3 {
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.refresh-btn {
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all 0.3s;
}

.refresh-btn:hover {
    background: var(--primary);
    color: white;
    transform: rotate(180deg);
}

/* Balance Reminder */
.balance-reminder-notification {
    background: rgba(124, 77, 255, 0.1);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    animation: slideIn 0.5s ease-out;
    display: none;
}

.balance-reminder-notification .reminder-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.balance-reminder-notification .reminder-content i {
    font-size: 32px;
    color: var(--primary);
    animation: float 2s ease-in-out infinite;
}

.balance-reminder-notification .reminder-content strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: var(--space-xs);
}

.balance-reminder-notification .reminder-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    font-size: 14px;
}

.balance-reminder-notification .warning-text {
    color: var(--warning);
    font-weight: 600;
}

/* Low Balance Warning */
.low-balance-warning {
    background: linear-gradient(90deg, rgba(239, 71, 111, 0.2), rgba(211, 47, 47, 0.1));
    border: 1px solid var(--danger);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    animation: slideIn 0.5s ease-out;
    display: none;
}

.low-balance-warning .warning-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.low-balance-warning .warning-content i {
    font-size: 32px;
    color: var(--danger);
    animation: pulse 1s infinite;
}

.low-balance-warning .warning-content strong {
    color: var(--danger);
    display: block;
    margin-bottom: var(--space-xs);
}

.low-balance-warning .warning-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    font-size: 14px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.dashboard-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}

.dashboard-card:nth-child(1) { animation-delay: 0s; }
.dashboard-card:nth-child(2) { animation-delay: 0.2s; }
.dashboard-card:nth-child(3) { animation-delay: 0.4s; }

.dashboard-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    animation: none;
}

.card-header {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
}

.card-body {
    padding: var(--space-lg);
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-light);
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

.status-item:nth-child(1) { animation-delay: 0.1s; }
.status-item:nth-child(2) { animation-delay: 0.2s; }
.status-item:nth-child(3) { animation-delay: 0.3s; }
.status-item:nth-child(4) { animation-delay: 0.4s; }

.status-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.status-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.status-value {
    font-weight: 600;
    text-align: right;
    font-size: 14px;
}

.status-value.earnings {
    color: var(--success);
    font-size: 18px;
    animation: pulse 2s infinite;
}

.status-value.required {
    color: var(--warning);
    font-weight: 700;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
}

.status-badge.disconnected {
    background: rgba(239, 71, 111, 0.2);
    color: var(--danger);
}

.status-badge.connected {
    background: rgba(6, 214, 160, 0.2);
    color: var(--success);
    animation: pulse 1.5s infinite;
}

/* Verification Progress */
.verification-progress {
    margin-bottom: var(--space-lg);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
    font-size: 14px;
}

.progress-bar {
    height: 8px;
    background: var(--bg-input);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--success));
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 4px;
    background-size: 300% 100%;
    animation: progressFill 5s linear infinite;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-secondary);
}

.verification-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.stat-small {
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.stat-value {
    font-size: 14px;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(10, 10, 20, 0.95);
    border-top: 1px solid var(--border-primary);
    padding: var(--space-2xl) var(--space-lg);
    margin-top: var(--space-2xl);
    animation: slideIn 0.6s ease-out;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.footer-section h4 {
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    font-size: 16px;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
}

/* WhatsApp Contact in Footer */
.whatsapp-contact {
    margin-top: var(--space-md);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, var(--whatsapp), #128C7E);
    color: white;
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-note {
    margin-top: var(--space-sm);
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 12px;
}

/* ===== WHATSAPP MODAL ===== */
.whatsapp-form {
    padding: var(--space-xl);
}

.whatsapp-info {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(37, 211, 102, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

.whatsapp-icon {
    font-size: 48px;
    color: var(--whatsapp);
    animation: float 2s ease-in-out infinite;
}

.whatsapp-details h3 {
    margin-bottom: var(--space-sm);
    color: var(--whatsapp);
}

.whatsapp-details p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.whatsapp-number {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-primary);
    font-weight: 600;
}

.whatsapp-number i {
    color: var(--whatsapp);
}

.form-input {
    width: 100%;
    padding: var(--space-md);
    background: var(--bg-input);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--whatsapp);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

/* WhatsApp Preview */
.whatsapp-preview {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    animation: slideIn 0.5s ease-out;
}

.whatsapp-preview h4 {
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.preview-content {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    font-family: 'Courier New', monospace;
    font-size: 12px;
    white-space: pre-wrap;
    line-height: 1.6;
    max-height: 200px;
    overflow-y: auto;
    animation: fadeIn 0.5s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .wallet-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
        justify-content: center;
    }
    
    .nav-container {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .nav-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .whatsapp-info {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .timer-display {
        font-size: 32px;
    }
    
    .success-icon {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .stat-card {
        animation: none;
    }
    
    .dashboard-card {
        animation: none;
    }
    
    .tab-nav {
        flex-direction: column;
    }
    
    .input-controls {
        flex-direction: column;
    }
    
    .input-action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .timer-display {
        font-size: 28px;
    }
}

/* ===== ERROR STATES ===== */
.error-shake {
    animation: shake 0.5s;
}

.error-border {
    border-color: var(--danger) !important;
    animation: pulse 0.5s;
}

/* ===== LOADING STATES ===== */
.loading {
    position: relative;
    color: transparent !important;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-input);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== SELECTION STYLING ===== */
::selection {
    background: rgba(124, 77, 255, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(124, 77, 255, 0.3);
    color: white;
}

/* ===== PAYMENT ANIMATION ===== */
.payment-animation {
    animation: paymentPulse 0.5s ease-in-out;
}