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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: backgroundFlow 20s ease-in-out infinite;
}

@keyframes backgroundFlow {
    0%, 100% { 
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.1) rotate(5deg);
    }
}

.app-container {
    max-width: 480px;
    margin: 0 auto;
    background: rgba(10, 10, 15, 0.8);
    min-height: 100vh;
    padding-bottom: 100px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 100px rgba(102, 126, 234, 0.1);
}

/* Liquid Background Animation */
.app-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: liquidFlow 15s ease-in-out infinite;
}

@keyframes liquidFlow {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-20px) scale(1.05);
        opacity: 0.8;
    }
}

/* Header Image */
.header-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.header-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    animation: gridFlow 30s linear infinite;
    pointer-events: none;
}

@keyframes gridFlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.header-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
    animation: ripple 3s ease-in-out infinite;
}

@keyframes ripple {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.header-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 2;
}

.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-3px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.header-content h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.balance {
    margin-top: 20px;
    text-align: center;
}

.balance-label {
    font-size: 14px;
    opacity: 0.9;
    display: block;
    margin-bottom: 8px;
}

.balance-amount {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.balance-crypto {
    font-size: 16px;
    opacity: 0.9;
    display: block;
    margin-top: 8px;
}

/* Modern Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.balance-card {
    text-align: center;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.balance-large {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 12px 0;
}

/* Modern Form Elements */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.modern-input {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    backdrop-filter: blur(20px);
}

.modern-input::placeholder {
    color: #6b7280;
}

.modern-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

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

.currency-symbol {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
}

.amount-input {
    padding-left: 48px;
    font-size: 24px;
    font-weight: 700;
}

.quick-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.quick-amount-btn {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #ffffff;
    backdrop-filter: blur(20px);
}

.quick-amount-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

/* Info Box */
.info-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-box.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    color: white;
}

.info-text {
    flex: 1;
}

.info-text strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #ffffff;
}

.info-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-text ul li {
    padding: 4px 0;
    font-size: 14px;
    color: #9ca3af;
}

/* Futuristic Button */
.btn-primary.futuristic,
.btn-secondary.futuristic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

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

.btn-primary.futuristic:hover::before {
    left: 100%;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.action-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.action-btn:hover::before {
    width: 200px;
    height: 200px;
}

.action-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(102, 126, 234, 0.1);
}

.action-icon {
    font-size: 28px;
}

.action-btn span {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.action-icon-modern {
    width: 28px;
    height: 28px;
    color: #667eea;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
}

/* Section */
.section {
    padding: 0 20px 30px;
    position: relative;
    z-index: 1;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.see-all {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

/* Assets List */
.assets-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.asset-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.asset-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.4);
}

.asset-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.asset-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.asset-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.asset-symbol {
    font-size: 13px;
    color: #9ca3af;
}

.asset-balance {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    margin-right: 12px;
}

.asset-amount {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.asset-value {
    font-size: 13px;
    color: #9ca3af;
}

.asset-change {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 8px;
}

.asset-change.positive {
    color: #10b981;
    background: #d1fae5;
}

.asset-change.negative {
    color: #ef4444;
    background: #fee2e2;
}

/* Investment Card */
.investment-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 24px;
    padding: 20px;
    color: white;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.investment-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.investment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.investment-name {
    font-size: 18px;
    font-weight: 600;
}

.investment-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.investment-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
}

.stat-value.success {
    color: #10b981;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 16px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 10px;
    transition: width 0.3s;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    max-width: 480px;
    width: 100%;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    z-index: 99999 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    will-change: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #9ca3af;
    transition: color 0.2s ease;
    padding: 8px 16px;
    border-radius: 16px;
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px 3px 0 0;
    transition: width 0.2s ease;
}

.nav-item:hover {
    color: #667eea;
}

.nav-item.active {
    color: #667eea;
}

.nav-item.active::before {
    width: 60%;
}

.nav-icon {
    font-size: 24px;
}

.nav-label {
    font-size: 11px;
    font-weight: 600;
}

.nav-icon-modern {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item.active .nav-icon-modern svg {
    stroke: #667eea;
}

.nav-item:hover .nav-icon-modern svg {
    stroke: #667eea;
}

/* Investment Plans */
.investment-plan {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s;
}

.investment-plan:hover {
    border-color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    transform: translateY(-4px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-badge.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.plan-badge.gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.plan-badge.silver {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    color: white;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    text-align: center;
}

.plan-rate {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    text-align: center;
}

.plan-duration {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.plan-features {
    margin-bottom: 20px;
}

.feature {
    padding: 6px 0;
    color: #e5e7eb;
    font-size: 13px;
    opacity: 0.95;
}

.plan-input {
    margin-bottom: 20px;
}

.plan-input label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.input-field {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    backdrop-filter: blur(20px);
}

.input-field::placeholder {
    color: #6b7280;
}

.input-field:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.btn-primary {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    width: 100%;
    padding: 12px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 12px;
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

/* My Investment Item */
.my-investment-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.my-investment-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.investment-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.investment-plan-name {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
}

.investment-date {
    font-size: 13px;
    color: #9ca3af;
}

.investment-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.investment-status.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.investment-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span {
    font-size: 14px;
    color: #9ca3af;
}

.detail-row strong {
    font-size: 14px;
    color: #ffffff;
}

.detail-row .success {
    color: #10b981;
}

/* Check-in Hero */
.checkin-hero {
    text-align: center;
    padding: 40px 20px;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.checkin-coin {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 4px 20px rgba(245, 158, 11, 0.5));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.checkin-hero h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.checkin-reward {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.btn-checkin {
    padding: 18px 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.btn-checkin:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.btn-checkin:active {
    transform: scale(0.95);
}

.checkin-streak {
    margin-top: 20px;
    font-size: 16px;
    color: #e5e7eb;
}

.checkin-streak strong {
    color: #f59e0b;
    font-weight: 700;
}

/* Check-in Calendar */
.checkin-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    position: relative;
    transition: all 0.3s;
}

.calendar-day:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
}

.calendar-day.completed {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.3) 100%);
    border: 1px solid rgba(16, 185, 129, 0.5);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.calendar-day.today {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    border: 2px solid rgba(102, 126, 234, 0.6);
    color: white;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 30px rgba(102, 126, 234, 0.5);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(102, 126, 234, 0); }
}

.calendar-day.bonus {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(217, 119, 6, 0.3) 100%);
    border: 2px solid rgba(245, 158, 11, 0.6);
    color: white;
    box-shadow: 0 4px 30px rgba(245, 158, 11, 0.4);
}

.day-number {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.day-reward {
    font-size: 11px;
    opacity: 0.9;
    color: #e5e7eb;
}

.day-status {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 12px;
}

.day-badge {
    position: absolute;
    bottom: 2px;
    font-size: 8px;
    font-weight: 700;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.stat-label {
    font-size: 13px;
    color: #9ca3af;
}

/* Info Card */
.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
}

.info-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: #e5e7eb;
}

.info-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #667eea;
    font-weight: bold;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 8px;
    padding: 0 20px 20px;
    overflow-x: auto;
    position: relative;
    z-index: 2;
}

.tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    color: #9ca3af;
    backdrop-filter: blur(20px);
}

.tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Transaction Item */
.transaction-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.transaction-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
    border-color: rgba(102, 126, 234, 0.3);
}

.transaction-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.transaction-icon.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.transaction-icon.reward {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.2) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.transaction-icon.invest {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.transaction-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transaction-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.transaction-date {
    font-size: 12px;
    color: #9ca3af;
}

.transaction-detail {
    font-size: 12px;
    color: #6b7280;
}

.transaction-amount {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.transaction-amount.success {
    color: #10b981;
}

/* Modern Transaction Item */
.transaction-item.modern {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.transaction-item.modern:hover {
    border-color: #667eea;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

.transaction-icon-modern {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transaction-icon-modern.withdraw {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.transaction-icon-modern.deposit {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.transaction-info-modern {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transaction-title-modern {
    font-size: 15px;
    font-weight: 600;
}

.transaction-date-modern {
    font-size: 12px;
    color: #666;
}

.transaction-detail-modern {
    font-size: 12px;
    color: #999;
}

.transaction-amount-modern {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.transaction-amount-modern.success {
    color: #10b981;
}

/* Summary Card */
.summary-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 24px;
    color: white;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.summary-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 15px;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    padding-top: 16px;
    font-size: 18px;
    font-weight: 700;
}

.summary-row .success {
    color: #10b981;
}

/* Profile */
.profile-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.profile-info {
    text-align: center;
    padding: 20px;
}

.profile-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.profile-email {
    color: #9ca3af;
    margin-bottom: 24px;
}

.level-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.level-progress {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.level-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    transition: width 0.3s;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.level-text {
    font-size: 13px;
    color: #9ca3af;
}

/* Achievement Grid */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    opacity: 0.5;
}

.achievement-card.earned {
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.achievement-card:hover {
    transform: translateY(-4px);
}

.achievement-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.achievement-icon.locked {
    filter: grayscale(1);
}

.achievement-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.achievement-desc {
    font-size: 12px;
    color: #9ca3af;
}

/* Settings List */
.settings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.setting-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.setting-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.setting-icon {
    font-size: 24px;
}

.setting-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.setting-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.setting-desc {
    font-size: 12px;
    color: #9ca3af;
}

/* Toggle Switch */
.toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 28px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle input:checked + .toggle-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.toggle input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

/* Menu List */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
    border-color: rgba(102, 126, 234, 0.3);
}

.menu-icon {
    font-size: 24px;
}

.menu-item span:nth-child(2) {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
}

.menu-arrow {
    font-size: 20px;
    color: #667eea;
}

/* Logout Button */
.btn-logout {
    width: 100%;
    padding: 16px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(20px);
}

.btn-logout:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
}

.success {
    color: #10b981;
}

/* Deposit Grid */
.deposit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.deposit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    position: relative;
}

.deposit-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.deposit-card.popular {
    border-color: rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.deposit-card.premium {
    border-color: rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.popular-badge.premium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.deposit-icon {
    margin-bottom: 16px;
    color: #667eea;
}

.deposit-card.premium .deposit-icon {
    color: #f59e0b;
}

.deposit-amount {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.deposit-card.premium .deposit-amount {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.deposit-bonus {
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
}

/* Selected Card */
.selected-card {
    text-align: center;
}

.selected-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.selected-amount {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 12px 0;
}

.selected-bonus {
    font-size: 18px;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 24px;
}

/* Futuristic Investment Plans */
.investment-plan.futuristic {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 28px 24px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}


.investment-plan.futuristic:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.investment-plan.diamond-plan {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-color: rgba(102, 126, 234, 0.4);
}

.investment-plan.diamond-plan:hover {
    border-color: rgba(102, 126, 234, 0.7);
    box-shadow: 0 12px 48px rgba(102, 126, 234, 0.5);
}

.investment-plan.gold-plan {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%);
    border-color: rgba(245, 158, 11, 0.4);
}

.investment-plan.gold-plan:hover {
    border-color: rgba(245, 158, 11, 0.7);
    box-shadow: 0 12px 48px rgba(245, 158, 11, 0.5);
}

.investment-plan.silver-plan {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.15) 0%, rgba(107, 114, 128, 0.15) 100%);
    border-color: rgba(156, 163, 175, 0.4);
}

.investment-plan.silver-plan:hover {
    border-color: rgba(156, 163, 175, 0.7);
    box-shadow: 0 12px 48px rgba(156, 163, 175, 0.5);
}


.plan-icon {
    font-size: 56px;
    text-align: center;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.2));
}

.plan-investment-amount {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin: 12px 0 8px 0;
    letter-spacing: -1px;
}

.diamond-plan .plan-investment-amount {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.5));
}

.gold-plan .plan-investment-amount {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.silver-plan .plan-investment-amount {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-returns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.return-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.return-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    font-weight: 600;
    color: #9ca3af;
}

.return-value {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.return-value.profit {
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.plan-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-radius: 14px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    color: #ffffff;
}

.investment-plan.futuristic:hover .plan-cta {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.cta-icon {
    font-size: 22px;
}