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

body {
    font-family: 'Inter', 'Arial', sans-serif;
    background: linear-gradient(135deg, #FFD700 0%, #FF6B35 50%, #FF0000 100%);
    color: #2C3E50;
    line-height: 1.6;
    font-weight: 200;
}

.app {
    max-width: 428px;
    margin: 0 auto;
    background: #FFFFFF;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    border: 4px solid #FF0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    margin: 0;
    border-bottom: 4px solid #2C3E50;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Header */
.header {
    padding: 12px 20px;
    background: linear-gradient(135deg, #FF0000 0%, #FF6B35 50%, #FFD700 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 4px solid #2C3E50;
    box-shadow: 0 4px 0 #B71C1C;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid #FFD700;
}

.greeting {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 100;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.username {
    font-size: 14px;
    font-weight: 200;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.notification-btn {
    background: #FFD700;
    border: 2px solid #2C3E50;
    padding: 6px;
    border-radius: 6px;
    color: #2C3E50;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 300;
}

.notification-btn:hover {
    background: #FFC107;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Balance Card */
.balance-card {
    margin: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    border-radius: 16px;
    box-shadow: 0 8px 0 #2E7D32, 0 12px 20px rgba(0,0,0,0.2);
    border: 4px solid #1B5E20;
    color: white;
}

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

.balance-label {
    font-size: 14px;
    font-weight: 200;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.eye-btn {
    background: #FFD700;
    border: 3px solid #2C3E50;
    color: #2C3E50;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 300;
}

.eye-btn:hover {
    background: #FFC107;
    transform: scale(1.1);
}

.balance-amount {
    font-size: 32px;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.balance-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    flex: 1;
    padding: 12px 16px;
    border: 3px solid #2C3E50;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-btn.primary {
    background: #2196F3;
    color: white;
}

.action-btn.primary:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #1565C0;
}

.action-btn.secondary {
    background: #FFD700;
    color: #2C3E50;
    box-shadow: 0 4px 0 #F57F17;
}

.action-btn.secondary:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #F57F17;
}

/* Products Section */
.products-section {
    padding: 0 20px 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 16px;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 0 #E0E0E0, 0 12px 20px rgba(0,0,0,0.1);
    border: 4px solid #2C3E50;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #FF0000 0%, #FFD700 25%, #4CAF50 50%, #2196F3 75%, #9C27B0 100%);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 0 #E0E0E0, 0 16px 24px rgba(0,0,0,0.15);
}

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

.product-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    border: 3px solid #2C3E50;
    box-shadow: 0 4px 0 rgba(0,0,0,0.2);
}

.product-icon.crypto {
    background: #FF9800;
    color: white;
}

.product-icon.stocks {
    background: #2196F3;
    color: white;
}

.product-icon.gold {
    background: #FFD700;
    color: #2C3E50;
}

.product-yield {
    background: #FF0000;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 300;
    border: 3px solid #2C3E50;
    box-shadow: 0 4px 0 #B71C1C;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 8px;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-description {
    font-size: 14px;
    color: #5D4037;
    margin-bottom: 16px;
    font-weight: 200;
}

.product-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

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

.stat-label {
    font-size: 12px;
    color: #5D4037;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 14px;
    font-weight: 300;
    color: #2C3E50;
}

.invest-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    border: 3px solid #2C3E50;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 0 #2E7D32;
}

.invest-btn:hover {
    background: linear-gradient(135deg, #66BB6A 0%, #9CCC65 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #2E7D32;
}

/* Check-in Section */
.checkin-section {
    padding: 0 20px 20px;
}

.checkin-card {
    background: linear-gradient(135deg, #9C27B0 0%, #E91E63 100%);
    color: white;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 4px solid #2C3E50;
    box-shadow: 0 8px 0 #6A1B9A;
}

.checkin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 0 #6A1B9A;
}

.checkin-icon {
    font-size: 32px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.checkin-content h3 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.checkin-content p {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 200;
}

.checkin-streak {
    margin-left: auto;
    text-align: center;
    background: #FFD700;
    color: #2C3E50;
    padding: 12px;
    border-radius: 12px;
    border: 3px solid #2C3E50;
    box-shadow: 0 4px 0 #F57F17;
}

.streak-number {
    display: block;
    font-size: 24px;
    font-weight: 300;
}

.streak-label {
    font-size: 12px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quick Actions */
.quick-actions {
    padding: 0 20px 20px;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.quick-action {
    background: white;
    border: 4px solid #2C3E50;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 #E0E0E0;
}

.quick-action:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 0 #E0E0E0;
}

.quick-action-icon {
    font-size: 24px;
    margin-bottom: 4px;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.2));
}

.quick-action span {
    font-size: 12px;
    font-weight: 200;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 428px;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    border-top: 4px solid #FF0000;
    padding: 8px 0;
    display: flex;
    justify-content: space-around;
    z-index: 100;
    box-shadow: 0 -4px 0 #1B2631;
}

.nav-item {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    color: #BDC3C7;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 200;
}

.nav-item.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-item span {
    font-size: 10px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 428px) {
    .app {
        max-width: 100%;
    }
    
    .bottom-nav {
        max-width: 100%;
    }
}

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

.product-card {
    animation: fadeIn 0.6s ease-out;
}

.product-card:nth-child(2) {
    animation-delay: 0.1s;
}

.product-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Additional styles for new pages */
.back-btn {
    background: #FFD700;
    border: 3px solid #2C3E50;
    padding: 8px;
    border-radius: 8px;
    color: #2C3E50;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 300;
}

.back-btn:hover {
    background: #FFC107;
    transform: scale(1.1);
}

.page-title {
    font-size: 18px;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.header-spacer {
    width: 40px;
}

.hidden {
    display: none !important;
}

/* Filter Section */
.filter-section {
    padding: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    border-bottom: 4px solid #2C3E50;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.filter-tab {
    background: white;
    border: 3px solid #2C3E50;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 0 #E0E0E0;
}

.filter-tab.active {
    background: #FF0000;
    color: white;
    border-color: #2C3E50;
    box-shadow: 0 4px 0 #B71C1C;
}

.filter-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #E0E0E0;
}

.filter-tab.active:hover {
    box-shadow: 0 6px 0 #B71C1C;
}

/* Transactions */
.transactions-container {
    padding: 20px;
    background: linear-gradient(135deg, #E8F5E8 0%, #F3E5F5 100%);
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 4px solid #2C3E50;
    background: white;
    margin-bottom: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 0 #E0E0E0;
}

.transaction-item:last-child {
    border-bottom: 4px solid #2C3E50;
}

.transaction-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 3px solid #2C3E50;
    box-shadow: 0 4px 0 rgba(0,0,0,0.2);
    font-weight: 300;
}

.transaction-icon.income {
    background: #4CAF50;
}

.transaction-icon.investment {
    background: #2196F3;
}

.transaction-icon.deposit {
    background: #00BCD4;
}

.transaction-icon.affiliate {
    background: #FF5722;
}

.transaction-details {
    flex: 1;
}

.transaction-title {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 4px;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transaction-subtitle {
    font-size: 14px;
    color: #5D4037;
    font-weight: 200;
}

.transaction-amount {
    font-size: 16px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.transaction-amount.positive {
    color: #4CAF50;
}

.transaction-amount.negative {
    color: #F44336;
}

/* Affiliate Stats */
.affiliate-stats {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #FFE0B2 0%, #FFCCBC 100%);
}

.stat-card {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 0 #E0E0E0;
    text-align: center;
    border: 4px solid #2C3E50;
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 8px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.stat-card h3 {
    font-size: 24px;
    font-weight: 300;
    color: #2C3E50;
    margin-bottom: 4px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.stat-card p {
    font-size: 14px;
    color: #5D4037;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Referral Section */
.referral-section {
    padding: 0 20px 20px;
    background: linear-gradient(135deg, #E1F5FE 0%, #F3E5F5 100%);
}

.referral-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 0 #E0E0E0;
    border: 4px solid #2C3E50;
}

.referral-link {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.referral-link input {
    flex: 1;
    padding: 12px;
    border: 3px solid #2C3E50;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 200;
    background: #F5F5F5;
}

.copy-btn {
    background: #2196F3;
    color: white;
    border: 3px solid #2C3E50;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 300;
    box-shadow: 0 4px 0 #1565C0;
}

.copy-btn:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #1565C0;
}

.referral-description {
    font-size: 14px;
    color: #5D4037;
    text-align: center;
    font-weight: 200;
}

/* Commission Structure */
.commission-section {
    padding: 0 20px 20px;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
}

.commission-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 0 #E0E0E0;
    overflow: hidden;
    border: 4px solid #2C3E50;
}

.commission-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 3px solid #2C3E50;
    background: linear-gradient(90deg, #FFD700 0%, #FFEB3B 100%);
}

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

.commission-level {
    font-size: 16px;
    font-weight: 300;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.commission-percentage {
    font-size: 18px;
    font-weight: 300;
    color: #F44336;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.commission-description {
    font-size: 14px;
    color: #5D4037;
    font-weight: 200;
}

/* Recent Commissions */
.recent-commissions {
    padding: 0 20px 20px;
    background: linear-gradient(135deg, #E8F5E8 0%, #F3E5F5 100%);
}

.commission-list {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 0 #E0E0E0;
    overflow: hidden;
    border: 4px solid #2C3E50;
}

.commission-transaction {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 3px solid #2C3E50;
}

.commission-transaction:last-child {
    border-bottom: none;
}

.commission-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.commission-details h4 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 4px;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.commission-details p {
    font-size: 14px;
    color: #5D4037;
    font-weight: 200;
}

.commission-amount {
    font-size: 16px;
    font-weight: 300;
    color: #4CAF50;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Portfolio Summary */
.portfolio-summary {
    padding: 20px;
    background: linear-gradient(135deg, #FFE0B2 0%, #FFCCBC 100%);
}

.summary-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 0 #E0E0E0;
    text-align: center;
    border: 4px solid #2C3E50;
}

.summary-card h2 {
    font-size: 16px;
    color: #5D4037;
    margin-bottom: 8px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-invested {
    font-size: 32px;
    font-weight: 300;
    color: #2C3E50;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.summary-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.positive {
    color: #4CAF50;
}

/* Investment Cards */
.investments-section {
    padding: 0 20px 20px;
    background: linear-gradient(135deg, #E8F5E8 0%, #F3E5F5 100%);
}

.investment-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 8px 0 #E0E0E0;
    border: 4px solid #2C3E50;
}

.investment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.investment-info {
    flex: 1;
}

.investment-info h3 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 4px;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.investment-info p {
    font-size: 14px;
    color: #5D4037;
    font-weight: 200;
}

.investment-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid #2C3E50;
}

.investment-status.active {
    background: #4CAF50;
    color: white;
}

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

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.investment-progress {
    margin-top: 16px;
}

.progress-bar {
    height: 12px;
    background: #E0E0E0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
    border: 2px solid #2C3E50;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 100%);
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: #5D4037;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Check-in Styles */
.checkin-status {
    padding: 20px;
    background: linear-gradient(135deg, #FFE0B2 0%, #FFCCBC 100%);
}

.status-card {
    background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
    color: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    border: 4px solid #2C3E50;
    box-shadow: 0 8px 0 #D84315;
}

.status-icon {
    font-size: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.status-card h2 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.status-card p {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 200;
}

/* Check-in Calendar */
.checkin-calendar {
    padding: 0 20px 20px;
    background: linear-gradient(135deg, #E1F5FE 0%, #F3E5F5 100%);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    background: white;
    padding: 12px 8px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 0 #E0E0E0;
    position: relative;
    border: 3px solid #2C3E50;
}

.calendar-day.completed {
    background: #4CAF50;
    border: 3px solid #2C3E50;
    color: white;
}

.day-number {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 4px;
}

.day-reward {
    font-size: 12px;
    color: #5D4037;
    margin-bottom: 4px;
    font-weight: 200;
}

.day-status {
    font-size: 16px;
    color: #FFD700;
    font-weight: 300;
}

/* Today's Check-in */
.today-checkin {
    padding: 0 20px 20px;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
}

.checkin-card-large {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 0 #E0E0E0;
    text-align: center;
    border: 4px solid #2C3E50;
}

.checkin-reward {
    margin-bottom: 24px;
}

.reward-icon {
    font-size: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.checkin-reward h3 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 8px;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reward-amount {
    font-size: 28px;
    font-weight: 300;
    color: #FF5722;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.checkin-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
    color: white;
    border: 3px solid #2C3E50;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 0 #D84315;
}

.checkin-btn:hover {
    background: linear-gradient(135deg, #F4511E 0%, #FB8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #D84315;
}

/* Bonus Information */
.bonus-info {
    padding: 0 20px 20px;
    background: linear-gradient(135deg, #E8F5E8 0%, #F3E5F5 100%);
}

.bonus-list {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 0 #E0E0E0;
    overflow: hidden;
    border: 4px solid #2C3E50;
}

.bonus-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 3px solid #2C3E50;
    background: linear-gradient(90deg, #FFD700 0%, #FFEB3B 100%);
}

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

.bonus-days {
    font-size: 16px;
    font-weight: 300;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-multiplier {
    font-size: 16px;
    font-weight: 300;
    color: #F44336;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Deposit/Withdrawal Styles */
.deposit-methods,
.withdrawal-methods {
    padding: 0 20px 20px;
    background: linear-gradient(135deg, #E1F5FE 0%, #F3E5F5 100%);
}

.method-card {
    background: white;
    border: 4px solid #2C3E50;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 #E0E0E0;
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 0 #E0E0E0;
}

.method-card.active {
    border-color: #FF5722;
    background: #FFF3E0;
    box-shadow: 0 8px 0 #FFAB91;
}

.method-icon {
    font-size: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFD700;
    border-radius: 12px;
    border: 3px solid #2C3E50;
    box-shadow: 0 4px 0 #F57F17;
}

.method-info {
    flex: 1;
}

.method-info h3 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 4px;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-info p {
    font-size: 14px;
    color: #5D4037;
    margin-bottom: 4px;
    font-weight: 200;
}

.method-time {
    font-size: 12px;
    color: #4CAF50;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-check {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #FF5722;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 3px solid #2C3E50;
    box-shadow: 0 4px 0 #D84315;
}

.method-card.active .method-check {
    opacity: 1;
}

/* Form Styles */
.deposit-form,
.withdrawal-form {
    padding: 0 20px 20px;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 8px;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 3px solid #2C3E50;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 200;
    transition: border-color 0.3s ease;
    background: white;
    box-shadow: 0 4px 0 #E0E0E0;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF5722;
    box-shadow: 0 4px 0 #FFAB91;
}

.amount-input {
    position: relative;
}

.currency {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #5D4037;
    font-weight: 300;
}

.amount-input input {
    padding-left: 36px;
}

.input-hint {
    font-size: 12px;
    color: #5D4037;
    margin-top: 4px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-amounts {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.quick-amount {
    flex: 1;
    padding: 12px;
    background: #FFD700;
    border: 3px solid #2C3E50;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 0 #F57F17;
}

.quick-amount:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #F57F17;
}

.generate-pix-btn,
.generate-crypto-btn,
.withdrawal-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    border: 3px solid #2C3E50;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 0 #2E7D32;
}

.generate-pix-btn:hover,
.generate-crypto-btn:hover,
.withdrawal-btn:hover {
    background: linear-gradient(135deg, #66BB6A 0%, #9CCC65 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #2E7D32;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    max-width: 400px;
    width: 90%;
    border-radius: 16px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
    border: 4px solid #2C3E50;
    box-shadow: 0 8px 0 #E0E0E0;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 20px;
    border-bottom: 3px solid #2C3E50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 300;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.close-btn {
    background: #FF5722;
    border: 3px solid #2C3E50;
    font-size: 24px;
    cursor: pointer;
    color: white;
    padding: 4px 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 300;
    box-shadow: 0 4px 0 #D84315;
}

.close-btn:hover {
    background: #F4511E;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #D84315;
}

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

.qr-code {
    margin-bottom: 20px;
}

.qr-code img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    border: 4px solid #2C3E50;
    box-shadow: 0 4px 0 #E0E0E0;
}

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

.pix-details p {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #2C3E50;
}

.pix-code {
    text-align: left;
}

.pix-code label {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 8px;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.code-input {
    display: flex;
    gap: 8px;
}

.code-input input {
    flex: 1;
    padding: 8px;
    border: 3px solid #2C3E50;
    border-radius: 4px;
    font-size: 12px;
    font-family: monospace;
    font-weight: 200;
    background: #F5F5F5;
}

.code-input button {
    padding: 8px 16px;
    background: #2196F3;
    color: white;
    border: 3px solid #2C3E50;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 0 #1565C0;
}

.code-input button:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #1565C0;
}

/* Balance Info */
.balance-info {
    padding: 20px;
    background: linear-gradient(135deg, #E8F5E8 0%, #F3E5F5 100%);
}

.available-balance {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 0 #E0E0E0;
    text-align: center;
    border: 4px solid #2C3E50;
}

.available-balance h2 {
    font-size: 16px;
    color: #5D4037;
    margin-bottom: 8px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Withdrawal Fee */
.withdrawal-fee {
    background: #FFD700;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 3px solid #2C3E50;
    box-shadow: 0 4px 0 #F57F17;
}

.fee-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 200;
    color: #2C3E50;
}

.fee-info:last-child {
    margin-bottom: 0;
}

.fee-value {
    color: #F44336;
    font-weight: 300;
}

.receive-value {
    color: #4CAF50;
    font-weight: 300;
}

/* Crypto Conversion */
.crypto-conversion {
    background: #E3F2FD;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 3px solid #2C3E50;
    box-shadow: 0 4px 0 #BBDEFB;
}

.conversion-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 200;
    color: #2C3E50;
}

.conversion-info:last-child {
    margin-bottom: 0;
}

.conversion-rate {
    font-weight: 200;
    color: #5D4037;
}

.crypto-amount {
    font-weight: 300;
    color: #2196F3;
}

/* Withdrawal History */
.recent-withdrawals {
    padding: 0 20px 20px;
    background: linear-gradient(135deg, #E8F5E8 0%, #F3E5F5 100%);
}

.withdrawal-history {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 0 #E0E0E0;
    overflow: hidden;
    border: 4px solid #2C3E50;
}

.withdrawal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 3px solid #2C3E50;
}

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

.withdrawal-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 3px solid #2C3E50;
    box-shadow: 0 4px 0 rgba(0,0,0,0.2);
}

.withdrawal-icon.completed {
    background: #4CAF50;
}

.withdrawal-icon.pending {
    background: #FF9800;
}

.withdrawal-details {
    flex: 1;
}

.withdrawal-details h4 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 4px;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.withdrawal-details p {
    font-size: 14px;
    color: #5D4037;
    font-weight: 200;
}

.withdrawal-amount {
    font-size: 16px;
    font-weight: 300;
    color: #2C3E50;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Login Page Styles */
.logo h1 {
    font-size: 24px;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.help-btn {
    background: #FFD700;
    border: 3px solid #2C3E50;
    padding: 8px;
    border-radius: 8px;
    color: #2C3E50;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 300;
}

.help-btn:hover {
    background: #FFC107;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.login-container,
.register-container {
    padding: 20px;
    background: linear-gradient(135deg, #E8F5E8 0%, #F3E5F5 100%);
    min-height: calc(100vh - 240px);
}

.login-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 8px 0 #E0E0E0, 0 12px 20px rgba(0,0,0,0.1);
    border: 4px solid #2C3E50;
    max-width: 400px;
    margin: 0 auto;
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-header h2 {
    font-size: 24px;
    font-weight: 300;
    color: #2C3E50;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-header p {
    font-size: 16px;
    color: #5D4037;
    font-weight: 200;
}

.login-form {
    margin-bottom: 24px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 8px;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-form input {
    width: 100%;
    padding: 16px;
    border: 3px solid #2C3E50;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 200;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 4px 0 #E0E0E0;
}

.login-form input:focus {
    outline: none;
    border-color: #FF5722;
    box-shadow: 0 4px 0 #FFAB91;
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #5D4037;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.toggle-password:hover {
    background: #F5F5F5;
    color: #2C3E50;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 200;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #5D4037;
}

.remember-me input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 3px solid #2C3E50;
    border-radius: 4px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.remember-me input[type="checkbox"]:checked + .checkmark {
    background: #4CAF50;
    border-color: #2C3E50;
}

.remember-me input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: 300;
}

.forgot-password {
    color: #2196F3;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #1976D2;
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
    color: white;
    border: 3px solid #2C3E50;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 0 #D84315;
}

.login-btn:hover {
    background: linear-gradient(135deg, #F4511E 0%, #FB8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #D84315;
}

.login-divider {
    text-align: center;
    position: relative;
    margin: 24px 0;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #2C3E50;
}

.login-divider span {
    background: white;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 300;
    color: #5D4037;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.social-login {
    margin-bottom: 24px;
}

.social-btn {
    width: 100%;
    padding: 16px;
    border: 3px solid #2C3E50;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 0 #E0E0E0;
}

.google-btn {
    background: white;
    color: #2C3E50;
}

.google-btn:hover {
    background: #F5F5F5;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #E0E0E0;
}

.register-link {
    text-align: center;
    font-size: 14px;
    font-weight: 200;
    color: #5D4037;
}

.register-link a {
    color: #2196F3;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.register-link a:hover {
    color: #1976D2;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 428px) {
    .app {
        max-width: 100%;
        border-left: none;
        border-right: none;
    }
    
    .bottom-nav {
        max-width: 100%;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 4px;
    }
    
    .calendar-day {
        padding: 8px 4px;
        font-size: 12px;
    }
    
    .day-number {
        font-size: 14px;
    }
    
    .quick-amounts {
        flex-wrap: wrap;
    }
    
    .quick-amount {
        min-width: calc(50% - 4px);
    }
    
    .hero-section {
        height: 140px;
    }
}

/* Bottom nav spacing */
.app > *:last-child:not(.bottom-nav) {
    margin-bottom: 60px;
}