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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    min-height: 100vh;
    padding: 20px;
    color: #ffffff;
}

.container {
    max-width: 550px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

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

h1 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: bold;
}

.subtitle {
    color: #B0B0B0;
    font-size: 16px;
    margin-bottom: 20px;
}

.ai-status {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    color: #ffffff;
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4); }
}

.input-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
}

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

.refresh-btn {
    background: transparent;
    border: 2px solid #00FF88;
    color: #00FF88;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    background: #00FF88;
    color: #0d0d0d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

select, input {
    width: 100%;
    padding: 15px;
    border: 2px solid #FF6B35;
    border-radius: 12px;
    font-size: 16px;
    background: transparent;
    color: #ffffff;
    transition: all 0.3s ease;
}

select:focus, input:focus {
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: #FF6B35;
    color: #ffffff;
}

select:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #FF8E53 0%, #FFB071 100%);
}

select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

.profit-display {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    color: #ffffff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.profit-display:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #FF8E53 0%, #FFB071 100%);
}

.profit-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.profit-label {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.9;
    font-weight: 600;
}

.profit-amount {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: bounceAmount 1s ease-out;
}

.profit-amount::before {
    content: '$';
    font-size: 0.8em;
    opacity: 0.8;
}

@keyframes bounceAmount {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.profit-details {
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
}

.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.asset-btn {
    padding: 18px 12px;
    border: 2px solid #FF6B35;
    background: transparent;
    color: #FF6B35;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.asset-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #FF6B35;
    transition: all 0.3s ease;
    z-index: -1;
}

.asset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #FF8E53 0%, #FFB071 100%);
    color: #ffffff;
}

.asset-btn:hover::before {
    left: 0;
}

.asset-btn.active {
    background: #FF6B35;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.asset-name {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    animation: iconBounce 2s infinite;
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-1px); }
}

.win-rate {
    font-size: 11px;
    opacity: 0.9;
}

.cta {
    background: linear-gradient(135deg, #00FF88 0%, #00CC6A 100%);
    color: #0d0d0d;
    padding: 22px 30px;
    border-radius: 15px;
    text-align: center;
    margin: 30px auto;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    border: none;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-icon {
    font-size: 22px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-4px); }
    60% { transform: translateY(-2px); }
}

.cta-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cta-highlight {
    background: rgba(0,0,0,0.15);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.cta::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: all 0.5s;
}

.cta:hover::before {
    left: 100%;
}

.cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.5);
    background: linear-gradient(135deg, #00CC6A 0%, #00AA55 100%);
    text-decoration: none;
}

.cta:hover .cta-highlight {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.cta:hover .cta-icon {
    transform: scale(1.1);
    animation: none;
}

.cta:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.cta:visited {
    color: #0d0d0d;
    text-decoration: none;
}

.cta-header {
    margin: 20px auto 0 auto;
    max-width: 300px;
    font-size: 16px;
    padding: 18px 25px;
}

.cta-header .cta-text {
    font-size: 14px;
}

.cta-header .cta-icon {
    font-size: 18px;
}

.footer {
    background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    margin-top: 50px;
    padding: 30px 20px;
    width: 100%;
}

.footer-container {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}

.footer-content {
    margin-bottom: 15px;
}

.footer-brand {
    margin-bottom: 15px;
}

.footer-brand h3 {
    color: #00FF88;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    display: inline;
    margin-right: 10px;
}

.footer-brand p {
    color: #B0B0B0;
    font-size: 12px;
    margin: 0;
    display: inline;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links a {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.footer-links a:hover {
    background: linear-gradient(135deg, #00FF88 0%, #00CC6A 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    padding-top: 15px;
}

.footer-bottom p {
    color: #666;
    font-size: 11px;
    margin: 0;
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .container {
        padding: 25px;
        margin: 0;
    }
    
    h1 {
        font-size: 26px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    .asset-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .asset-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .asset-btn {
        padding: 15px 10px;
        font-size: 12px;
    }
    
    .asset-name {
        font-size: 13px;
    }
    
    .profit-amount {
        font-size: 36px;
    }
    
    .profit-display {
        padding: 25px;
    }
    
    .stats-row {
        padding: 15px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .cta {
        font-size: 16px;
        padding: 18px;
    }
    
    select {
        padding: 12px;
        font-size: 14px;
    }
}

.stats-row {
    display: flex;
    justify-content: space-around;
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #00FF88;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #B0B0B0;
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    .asset-grid {
        grid-template-columns: 1fr;
    }
    
    .profit-amount {
        font-size: 32px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer {
        padding: 25px 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}