:root {
    --bg: #0a0a0a;
    --panel: #161616;
    --accent: #3b82f6;
    --text: #e5e5e5;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#morel-app {
    background: var(--panel);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
    width: 380px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.version { font-size: 0.5em; opacity: 0.5; vertical-align: middle; }

#stats { font-size: 12px; color: var(--accent); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }

button {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    margin: 10px;
    transition: all 0.2s;
}

.btn-primary { background: var(--accent); color: white; width: 100%; }
.btn-si { background: #10b981; color: white; width: 80px; }
.btn-no { background: #ef4444; color: white; width: 80px; }
.btn-reload { background: transparent; border: 1px solid #444; color: #888; margin-top: 20px; }

button:hover { opacity: 0.8; transform: translateY(-1px); }