/* Simplified Bot Dashboard - Under Construction */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    color: #2d3436;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.construction-wrapper {
    text-align: center;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Status Row */
.status-row {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px 30px;
    background: #f8f9fa;
    border-radius: 50px;
    border: 1px solid #e9ecef;
}

.status-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #adb5bd;
    transition: all 0.3s ease;
}

.status-dot.active-running {
    background-color: #34a853;  /* TD-style green */
    box-shadow: 0 0 8px rgba(52, 168, 83, 0.4);
    animation: pulse 2s infinite;
}

.status-dot.active-paused {
    background-color: #fbbc04;  /* Amber/yellow */
    box-shadow: 0 0 8px rgba(251, 188, 4, 0.4);
    animation: pulse 2s infinite;
}

.status-dot.active-stopped {
    background-color: #ea4335;  /* Red */
    box-shadow: 0 0 8px rgba(234, 67, 53, 0.4);
}

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

#token-symbol {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2d3436;
}

/* Main Content */
h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #2d3436;
}

.subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
}

/* Links - REMOVED */

/* Loading animation */
.loading::after {
    content: '...';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Responsive */
@media (max-width: 600px) {
    .construction-wrapper {
        padding: 40px 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}
