/* Shared styles — MoetIkBitcoinKopen.nl */

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

:root {
    --bg: #0a0e17;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text: #e8eaed;
    --text-muted: rgba(255, 255, 255, 0.5);
    --green: #00c853;
    --light-green: #69f0ae;
    --yellow: #ffd740;
    --orange: #ff9100;
    --red: #ff1744;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.7;
}

/* Gauge */
.gauge-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 0.5rem;
}

.gauge-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.gauge-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 10;
}

.gauge-fill {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease, stroke 0.4s ease;
}

.gauge-score {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gauge-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.gauge-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gauge-sentiment {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.2rem;
}
