/* Heimdall Trading App - Main Stylesheet */

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

body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 3rem;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: lowercase;
    color: #ffffff;
}

header .accent {
    color: #3b82f6;
}

header .tagline {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 0.15em;
    text-transform: lowercase;
}

/* Status Grid */
.status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.status-card {
    background-color: #111111;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 1.25rem;
    position: relative;
}

.status-card:hover {
    border-color: #333;
    transition: border-color 0.3s ease;
}

.status-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.status-value {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 400;
}

.status-indicator {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.online {
    background-color: #22c55e;
    box-shadow: 0 0 6px #22c55e;
}

.status-indicator.standby {
    background-color: #eab308;
    box-shadow: 0 0 6px #eab308;
}

.status-indicator.offline {
    background-color: #555;
}

/* Info Section */
.info-section {
    text-align: center;
    color: #333;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 600px) {
    .status-grid {
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: 1.8rem;
    }
}
