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

body {
    background: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    color: #A31C00;
    font-size: 2em;
    margin-bottom: 10px;
    line-height: 1.2;
}

.subtitle {
    color: #8a9607;
    font-style: italic;
    margin-bottom: 40px;
}

.streak-box {
    background: #1a1a1a;
    border: 2px solid #B3C509;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 4px;
}

.streak-box h2 {
    color: #8a9607;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.streak-number {
    font-size: 4em;
    font-weight: bold;
    color: #B3C509;
}

.streak-label {
    color: #888;
    margin-top: 5px;
}

.big-button {
    width: 100%;
    padding: 20px;
    background: #A31C00;
    color: #fff;
    border: none;
    font-size: 1.2em;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    margin-bottom: 30px;
    border-radius: 4px;
    transition: background 0.2s;
}

.big-button:hover {
    background: #C13101;
}

.big-button:active {
    background: #7a1500;
}

.discipline-section {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.discipline-section h3 {
    color: #A31C00;
    margin-bottom: 15px;
}

.discipline-button {
    width: 100%;
    padding: 15px;
    background: #0a0a0a;
    color: #B3C509;
    border: 2px solid #B3C509;
    font-family: 'Courier New', monospace;
    font-size: 1em;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.discipline-button:hover {
    background: #B3C509;
    color: #0a0a0a;
}

.stats {
    color: #888;
    font-size: 0.9em;
    line-height: 1.8;
}

.stats span {
    color: #C13101;
}