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

body {
    background-color: #0A0E17;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
}

.app-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background-color: #0A0E17;
    min-height: 100vh;
    position: relative;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 16px;
}

.logo { font-size: 20px; font-weight: 700; }
.logo span { color: #2B7FFF; }

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 200, 83, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #00C853;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.live-text { font-size: 11px; font-weight: 600; color: #00C853; }

@keyframes pulse {
    0% { opacity: 1; transform: scale(1);}
    100% { opacity: 0; transform: scale(1.5);}
}

.main-content { padding: 0 16px; padding-bottom: 80px; }
.page { display: none; }
.page.active { display: block; }

.accounts-card {
    background: linear-gradient(135deg, #0F172A, #0A0E17);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #2D3A5E;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.account-header { margin-bottom: 20px; }
.account-title { font-size: 14px; font-weight: 600; color: #2B7FFF; margin-bottom: 6px; }
.account-subtitle { font-size: 12px; color: #8E9EBB; }
.account-number { font-size: 12px; color: #8E9EBB; margin-bottom: 14px; }

.account-badges { display: flex; gap: 10px; margin-bottom: 20px; }
.badge-flag { font-size: 14px; padding: 5px 10px; border-radius: 12px; background: #1E2A3A; }
.badge-mt5, .badge-standard { font-size: 10px; padding: 5px 10px; border-radius: 12px; background: #1E2A3A; color: #8E9EBB; }

.account-balance-large { font-size: 28px; font-weight: 600; margin-bottom: 24px; }

.account-actions { display: flex; gap: 12px; }
.account-actions button {
    flex: 1;
    padding: 12px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: transparent;
    transition: transform 0.05s;
}
.account-actions button:active { transform: scale(0.96); }
.action-svg { width: 22px; height: 22px; stroke-width: 2.5; }
.action-trade { background: #2B7FFF; border: none; color: white; }
.action-deposit { border: 1.5px solid #2B7FFF; color: #2B7FFF; }
.action-withdraw { border: 1.5px solid #2D3A5E; color: white; }
.action-details { border: 1.5px solid #2D3A5E; color: #8E9EBB; }

.orders-tabs { display: flex; gap: 20px; margin-bottom: 16px; border-bottom: 1px solid #1E2A3A; }
.order-tab { background: none; border: none; color: #8E9EBB; font-size: 14px; font-weight: 600; padding: 10px 0; cursor: pointer; }
.order-tab.active { color: #2B7FFF; border-bottom: 2px solid #2B7FFF; }
.orders-list { min-height: 200px; }
.no-orders { text-align: center; padding: 40px; color: #8E9EBB; font-size: 14px; }

.trade-header { margin-bottom: 16px; }
.asset-search input {
    width: 100%;
    background: #131B2C;
    border: 1px solid #1E2A3A;
    padding: 12px 16px;
    border-radius: 12px;
    color: white;
    font-size: 14px;
    margin-bottom: 16px;
}
.asset-search input:focus { outline: none; border-color: #2B7FFF; }

.tabs-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin-bottom: 16px;
}
.tabs-scroll-wrapper::-webkit-scrollbar { height: 3px; }
.tabs-scroll-wrapper::-webkit-scrollbar-track { background: #1E2A3A; border-radius: 10px; }
.tabs-scroll-wrapper::-webkit-scrollbar-thumb { background: #2B7FFF; border-radius: 10px; }
.tabs-scroll { display: flex; gap: 16px; padding-bottom: 8px; min-width: min-content; }

.tab-filter {
    background: none;
    border: none;
    padding: 8px 0;
    color: #8E9EBB;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}
.tab-filter.active { color: #2B7FFF; border-bottom-color: #2B7FFF; }
.tab-filter:active { transform: scale(0.96); }

.chart-container {
    background: #0A0E17;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #1E2A3A;
}
.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}
.selected-asset { font-weight: 700; font-size: 16px; color: #2B7FFF; }
.chart-timeframes { display: flex; gap: 8px; }
.tf-btn {
    background: #1E2A3A;
    border: none;
    padding: 4px 10px;
    border-radius: 6px;
    color: #8E9EBB;
    font-size: 11px;
    cursor: pointer;
}
.tf-btn.active { background: #2B7FFF; color: white; }
#priceChart { width: 100%; height: 200px; }

.markets-list { margin-top: 8px; }
.market-item {
    background: #131B2C;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.market-item:active { background: #1E2A3A; transform: scale(0.99); }
.market-info { flex: 1; }
.market-name { font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.market-symbol { font-size: 11px; color: #8E9EBB; }
.market-price { text-align: right; }
.market-price-value { font-weight: 700; font-size: 14px; }
.market-change { font-size: 11px; }
.market-change.positive { color: #00C853; }
.market-change.negative { color: #FF3B5C; }
.fav-star { cursor: pointer; color: #8E9EBB; font-size: 16px; }
.fav-star.active { color: #FFC107; }

/* Insights Page - CSS handles visibility, no inline styles needed */
.insights-tabs-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin-bottom: 16px;
}
.insights-tabs-scroll-wrapper::-webkit-scrollbar { height: 3px; }
.insights-tabs-scroll-wrapper::-webkit-scrollbar-track { background: #1E2A3A; border-radius: 10px; }
.insights-tabs-scroll-wrapper::-webkit-scrollbar-thumb { background: #2B7FFF; border-radius: 10px; }
.insights-tabs-scroll {
    display: flex;
    gap: 16px;
    padding-bottom: 8px;
    min-width: min-content;
}
.insights-tab-filter {
    background: none;
    border: none;
    padding: 8px 0;
    color: #8E9EBB;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}
.insights-tab-filter.active { color: #2B7FFF; border-bottom-color: #2B7FFF; }
.insights-tab-filter:active { transform: scale(0.96); }

/* CRITICAL FIX: CSS controls visibility - no inline styles needed */
.insights-content { display: none; }
.insights-content.active { display: block; }

.insights-section { margin-bottom: 24px; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.section-header h3 { font-size: 14px; font-weight: 600; color: #8E9EBB; }
.show-more { background: none; border: none; color: #2B7FFF; font-size: 11px; cursor: pointer; }
.signal-date { font-size: 10px; color: #8E9EBB; }

.top-movers-list, .signals-list, .events-list, .news-list, .more-content {
    background: #131B2C;
    border-radius: 16px;
    padding: 12px;
}
.more-content { margin-top: 8px; }

.top-mover-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #1E2A3A; }
.top-mover-item:last-child { border-bottom: none; }
.top-mover-change { font-weight: 600; }
.top-mover-change.positive { color: #00C853; }
.top-mover-change.negative { color: #FF3B5C; }

.signal-item { padding: 12px; border-bottom: 1px solid #1E2A3A; }
.signal-item:last-child { border-bottom: none; }
.signal-title { font-weight: 600; font-size: 13px; margin-bottom: 4px; }
.signal-details { font-size: 11px; color: #8E9EBB; }
.signal-chart { font-family: monospace; font-size: 10px; margin-top: 8px; color: #2B7FFF; }
.signal-action { margin-top: 8px; }
.signal-action-buy { background: rgba(0,200,83,0.15); color: #00C853; padding: 4px 8px; border-radius: 12px; font-size: 10px; font-weight: 600; display: inline-block; }
.signal-action-sell { background: rgba(255,59,92,0.15); color: #FF3B5C; padding: 4px 8px; border-radius: 12px; font-size: 10px; font-weight: 600; display: inline-block; }
.signal-action-watch { background: rgba(255,152,0,0.15); color: #FF9800; padding: 4px 8px; border-radius: 12px; font-size: 10px; font-weight: 600; display: inline-block; }

.event-item, .news-item { padding: 10px 0; border-bottom: 1px solid #1E2A3A; font-size: 12px; }
.event-item:last-child, .news-item:last-child { border-bottom: none; }
.event-time { color: #2B7FFF; font-size: 10px; display: block; margin-bottom: 4px; }
.event-impact { font-size: 10px; padding: 2px 6px; border-radius: 10px; margin-left: 8px; }
.event-impact.high { background: rgba(255,59,92,0.2); color: #FF3B5C; }
.event-impact.medium { background: rgba(255,152,0,0.2); color: #FF9800; }
.event-impact.low { background: rgba(0,200,83,0.2); color: #00C853; }
.news-title { font-weight: 500; margin-bottom: 4px; font-size: 13px; }
.news-source { font-size: 10px; color: #8E9EBB; }

.performance-header { margin-bottom: 20px; }
.time-note { font-size: 10px; color: #8E9EBB; margin-bottom: 12px; }
.performance-filters { display: flex; gap: 12px; }
.performance-filters select { flex: 1; background: #131B2C; border: 1px solid #1E2A3A; padding: 10px; border-radius: 8px; color: white; font-size: 12px; }
.performance-chart { background: #131B2C; border-radius: 16px; padding: 40px 20px; text-align: center; }
.no-data-icon { font-size: 48px; margin-bottom: 16px; }
.no-data-text { font-weight: 600; margin-bottom: 8px; }
.no-data-sub { font-size: 12px; color: #8E9EBB; margin-bottom: 20px; }
.start-trading-btn { background: #2B7FFF; border: none; padding: 12px 24px; border-radius: 40px; color: white; font-weight: 600; cursor: pointer; }

.profile-section { text-align: center; padding: 24px; background: #131B2C; border-radius: 20px; margin-bottom: 20px; }
.profile-avatar { font-size: 56px; margin-bottom: 12px; }
.profile-name { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.profile-email { font-size: 12px; color: #8E9EBB; }
.profile-menu { background: #131B2C; border-radius: 20px; overflow: hidden; margin-bottom: 20px; }
.menu-item { display: flex; justify-content: space-between; align-items: center; padding: 16px; border-bottom: 1px solid #1E2A3A; cursor: pointer; }
.menu-item:active { background: #1E2A3A; }
.menu-arrow { color: #8E9EBB; font-size: 18px; }
.auth-buttons-profile { display: flex; gap: 12px; margin-bottom: 16px; }
.login-btn-profile, .register-btn-profile { flex: 1; padding: 14px; border-radius: 40px; font-weight: 600; cursor: pointer; }
.login-btn-profile { background: #2B7FFF; border: none; color: white; }
.register-btn-profile { background: transparent; border: 1px solid #2B7FFF; color: #2B7FFF; }
.logout-btn-profile { width: 100%; padding: 14px; background: rgba(255,59,92,0.1); border: 1px solid #FF3B5C; color: #FF3B5C; border-radius: 40px; font-weight: 600; cursor: pointer; margin-bottom: 16px; }

.bottom-tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 500px;
    margin: 0 auto;
    background: #131B2C;
    display: flex;
    justify-content: space-around;
    padding: 12px 16px 20px;
    border-top: 1px solid #1E2A3A;
    z-index: 100;
}
.tab-btn {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #8E9EBB;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 30px;
}
.tab-btn:active { background: #1E2A3A; transform: scale(0.96); }
.tab-btn.active { color: #2B7FFF; }

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: #131B2C;
    width: 90%;
    max-width: 340px;
    padding: 24px;
    border-radius: 20px;
    position: relative;
}
.modal-content h3 { margin-bottom: 16px; font-size: 18px; }
.modal-content p { font-size: 13px; color: #8E9EBB; margin-bottom: 16px; }
.modal-content input { width: 100%; background: #0A0E17; border: 1px solid #1E2A3A; padding: 12px; border-radius: 10px; color: white; margin: 8px 0; }
.modal-content button { width: 100%; padding: 12px; background: #2B7FFF; border: none; border-radius: 10px; color: white; font-weight: 600; margin-top: 16px; cursor: pointer; }
.close-modal { position: absolute; top: 16px; right: 20px; font-size: 24px; cursor: pointer; color: #8E9EBB; }
.bitcoin-address { background: #0A0E17; padding: 12px; border-radius: 10px; font-family: monospace; font-size: 12px; word-break: break-all; margin: 10px 0; text-align: center; }
.error-message { color: #FF3B5C; font-size: 12px; margin-top: 8px; text-align: center; }
.switch-auth { text-align: center; font-size: 12px; margin-top: 16px; }
.switch-auth a { color: #2B7FFF; text-decoration: none; }
.modal-note { font-size: 11px; text-align: center; margin-top: 12px; color: #8E9EBB; }

.support-options { text-align: center; }
.support-whatsapp { display: inline-block; background: #25D366; color: #000; padding: 12px 24px; border-radius: 40px; text-decoration: none; font-weight: 600; font-size: 14px; margin: 10px 0; }
.language-options { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.lang-option { background: #1E2A3A; border: none; padding: 10px 16px; border-radius: 30px; color: white; font-size: 13px; cursor: pointer; }
.lang-option:active { background: #2B7FFF; }
.notification-item { padding: 12px; background: #0A0E17; border-radius: 10px; margin-bottom: 8px; font-size: 13px; }
.order-price-info { display: flex; justify-content: space-between; padding: 12px; background: #0A0E17; border-radius: 10px; margin: 16px 0; }
.order-price { font-weight: 700; color: #2B7FFF; }
.order-total { display: flex; justify-content: space-between; padding: 12px; background: #1E2A3A; border-radius: 10px; margin: 16px 0; font-weight: 600; }
.execute-btn { width: 100%; padding: 14px; background: #2B7FFF; border: none; border-radius: 40px; color: white; font-weight: 600; font-size: 16px; cursor: pointer; }
.details-content { text-align: center; }
.detail-stat { margin: 20px 0; }
.detail-number { font-size: 28px; font-weight: 700; color: #2B7FFF; display: block; }
.detail-label { font-size: 12px; color: #8E9EBB; }
.detail-text { font-size: 13px; line-height: 1.5; margin: 20px 0; color: #8E9EBB; }

.chatbot-toggle {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #2B7FFF, #1E3A8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(43,127,255,0.4);
    z-index: 200;
}
.chatbot-toggle:active { transform: scale(0.94); }
.chatbot-toggle-icon { font-size: 26px; }

.chatbot-container {
    position: fixed;
    bottom: 160px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: #131B2C;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    z-index: 200;
    overflow: hidden;
    border: 1px solid #1E2A3A;
}
.chatbot-header {
    background: linear-gradient(135deg, #2B7FFF, #1E3A8A);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: grab;
    user-select: none;
}
.chatbot-header:active { cursor: grabbing; }
.chatbot-close { background: none; border: none; color: white; font-size: 20px; cursor: pointer; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.chatbot-close:active { background: rgba(255,255,255,0.2); transform: scale(0.94); }
.chatbot-messages { flex: 1; padding: 15px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.message { display: flex; margin-bottom: 8px; }
.message.bot { justify-content: flex-start; }
.message.user { justify-content: flex-end; }
.message-bubble { max-width: 85%; padding: 10px 14px; border-radius: 18px; font-size: 13px; line-height: 1.4; }
.message.bot .message-bubble { background: #0A0E17; color: white; border-bottom-left-radius: 4px; }
.message.user .message-bubble { background: #2B7FFF; color: white; border-bottom-right-radius: 4px; }
.chatbot-input-area { padding: 12px; border-top: 1px solid #1E2A3A; display: flex; gap: 10px; }
.chatbot-input { flex: 1; background: #0A0E17; border: 1px solid #1E2A3A; padding: 12px; border-radius: 20px; color: white; font-size: 13px; }
.chatbot-input:focus { outline: none; border-color: #2B7FFF; }
.chatbot-send { background: #2B7FFF; border: none; padding: 0 16px; border-radius: 20px; color: white; font-weight: 600; cursor: pointer; }
/* ============================================ */
/* PROFESSIONAL LOGIN MODAL BACKGROUND
/* ============================================ */

/* Modal overlay background - dark with subtle pattern */
.modal {
    background: rgba(5, 10, 20, 0.95);
    backdrop-filter: blur(8px);
}

/* Modal content with premium styling */
.modal-content {
    background: linear-gradient(145deg, #131B2C 0%, #0F172A 100%);
    border: 1px solid rgba(43, 127, 255, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(43, 127, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
}

/* Animated gradient border effect */
.modal-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(43, 127, 255, 0.3) 0%, 
        rgba(43, 127, 255, 0) 25%,
        rgba(43, 127, 255, 0) 75%,
        rgba(43, 127, 255, 0.3) 100%);
    border-radius: 22px;
    z-index: -1;
    animation: borderPulse 3s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Background pattern - subtle grid */
.modal-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(43, 127, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(43, 127, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    border-radius: 20px;
}

/* Login modal specific enhancements */
#loginModal .modal-content h3,
#registerModal .modal-content h3 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF 0%, #2B7FFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

#loginModal .modal-content p,
#registerModal .modal-content p {
    color: #8E9EBB;
    font-size: 13px;
}

/* Input fields with glow effect */
#loginModal .modal-content input,
#registerModal .modal-content input {
    background: rgba(10, 14, 23, 0.8);
    border: 1px solid rgba(43, 127, 255, 0.3);
    transition: all 0.3s ease;
}

#loginModal .modal-content input:focus,
#registerModal .modal-content input:focus {
    outline: none;
    border-color: #2B7FFF;
    box-shadow: 0 0 15px rgba(43, 127, 255, 0.2);
    background: #0A0E17;
}

/* Login button with gradient */
#loginBtn, #registerBtn {
    background: linear-gradient(135deg, #2B7FFF 0%, #1a4fcc 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: 0.5px;
}

#loginBtn:hover, #registerBtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px -5px rgba(43, 127, 255, 0.4);
}

#loginBtn:active, #registerBtn:active {
    transform: translateY(1px);
}

/* Button shine effect */
#loginBtn::after, #registerBtn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    transform: rotate(25deg);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(25deg); }
    20%, 100% { transform: translateX(200%) rotate(25deg); }
}

/* Switch auth link styling */
.switch-auth {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(43, 127, 255, 0.2);
}

.switch-auth a {
    color: #2B7FFF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.switch-auth a:hover {
    text-shadow: 0 0 8px rgba(43, 127, 255, 0.5);
}

.switch-auth a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #2B7FFF;
    transition: width 0.3s ease;
}

.switch-auth a:hover::after {
    width: 100%;
}

/* Close button styling */
.close-modal {
    color: #8E9EBB;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: 12px;
    right: 12px;
}

.close-modal:hover {
    color: #FFFFFF;
    background: rgba(43, 127, 255, 0.2);
    transform: rotate(90deg);
}

/* Error message styling */
.error-message {
    background: rgba(255, 59, 92, 0.1);
    border: 1px solid rgba(255, 59, 92, 0.3);
    border-radius: 8px;
    padding: 8px;
    margin-top: 12px;
}

/* Additional decorative elements for modal */
.modal-content .decor-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2B7FFF, transparent);
}
@media (max-width: 480px) {
    .chatbot-container { width: calc(100% - 40px); right: 20px; left: 20px; bottom: 160px; }
}