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

body {
    background: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.button-container {
    text-align: center;
}

.danny-button {
    background: red;
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
}

.danny-button:hover {
    background: darkred;
}

.danny-button:active {
    transform: scale(0.98);
}

.danny-button.counter-mode {
    cursor: default;
    background: red;
}

.danny-button.counter-mode:hover {
    background: red;
}

.danny-button.rate-limited {
    background: #ff6b6b;
    cursor: not-allowed;
}

.danny-button.rate-limited:hover {
    background: #ff6b6b;
}