/* Nova Elite Bot Public Styles */
#nova-elite-bot-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #181a20;
    border-radius: 12px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.nova-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(252, 213, 53, 0.2);
}

.nova-header h2 {
    color: #fcd535;
    font-size: 28px;
    margin: 0;
    font-weight: 600;
}

.nova-balance {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(252, 213, 53, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(252, 213, 53, 0.3);
}

.balance-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.balance-amount {
    color: #fcd535;
    font-size: 20px;
    font-weight: 600;
}

.nova-no-signal {
    text-align: center;
    padding: 60px 20px;
    background: rgba(252, 213, 53, 0.05);
    border-radius: 12px;
    border: 1px dashed rgba(252, 213, 53, 0.3);
}

.nova-no-signal .nova-tabs {
    text-align: center;
    justify-content: center;
}

.nova-no-signal .nova-tab-content {
    text-align: left;
}

.nova-no-signal .nova-autopilot-panel {
    background: rgba(255, 255, 255, 0.03);
    margin-top: 20px;
}

.no-signal-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.nova-timer {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(252, 213, 53, 0.1), rgba(252, 213, 53, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(252, 213, 53, 0.2);
}

.timer-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-display {
    font-size: 48px;
    font-weight: 700;
    color: #fcd535;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 20px rgba(252, 213, 53, 0.5);
}

.nova-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(252, 213, 53, 0.2);
}

.tab-button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button:hover {
    color: rgba(255, 255, 255, 0.9);
}

.tab-button.active {
    color: #fcd535;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #fcd535;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

.nova-trading-panel,
.nova-autopilot-panel {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(252, 213, 53, 0.1);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(252, 213, 53, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #fcd535;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(252, 213, 53, 0.1);
}

.nova-btn-primary {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #fcd535, #f4c430);
    color: #181a20;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nova-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 213, 53, 0.3);
}

.nova-btn-secondary {
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: #fcd535;
    border: 2px solid #fcd535;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nova-btn-secondary:hover {
    background: rgba(252, 213, 53, 0.1);
}

.trade-status {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.status-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(252, 213, 53, 0.1);
}

.status-card h4 {
    color: #fcd535;
    margin: 0 0 15px 0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.prediction-number {
    display: inline-block;
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #fcd535;
    color: #181a20;
    border-radius: 50%;
    font-weight: 700;
}

.profit-tracker {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(252, 213, 53, 0.1);
}

.profit-tracker h4 {
    color: #fcd535;
    margin: 0 0 15px 0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fcd535, #f4c430);
    border-radius: 15px;
    transition: width 0.5s ease;
    box-shadow: 0 0 20px rgba(252, 213, 53, 0.5);
}

.profit-info {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

#profit-percentage {
    color: #fcd535;
    font-weight: 600;
}

.trade-stats {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(252, 213, 53, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

#trade-count {
    color: #fcd535;
    font-weight: 600;
}

.autopilot-status {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(252, 213, 53, 0.1), rgba(252, 213, 53, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(252, 213, 53, 0.2);
    text-align: center;
}

.status-icon {
    font-size: 48px;
    margin-bottom: 10px;
    animation: rotate 3s linear infinite;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    #nova-elite-bot-container {
        padding: 15px;
    }
    
    .nova-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .trade-status {
        grid-template-columns: 1fr;
    }
    
    .timer-display {
        font-size: 36px;
    }
}