:root {
    --primary: #ef4444; /* Red */
    --bg-gradient: linear-gradient(135deg, #fee2e2, #fecaca, #fca5a5);
}

.randomizer-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.settings {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.input-group input {
    width: 80px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1.2rem;
    text-align: center;
}

.result-box {
    font-size: 6rem;
    font-weight: bold;
    color: var(--primary);
    background: #fff;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: inset 0 4px 6px rgba(0,0,0,0.1), 0 10px 15px rgba(0,0,0,0.1);
    font-family: 'Outfit', sans-serif;
    transition: transform 0.1s;
}

.result-box.animating {
    transform: scale(1.1);
    color: #f87171;
}
